39010 lines
2.0 MiB
39010 lines
2.0 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 T1, typename T2, typename T3>
|
|
struct VirtualActionInvoker3
|
|
{
|
|
typedef void (*Action)(void*, T1, T2, T3, const RuntimeMethod*);
|
|
|
|
static inline void Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3)
|
|
{
|
|
const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj);
|
|
((Action)invokeData.methodPtr)(obj, p1, p2, p3, 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, 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);
|
|
}
|
|
};
|
|
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<UnityEngine.UIElements.BaseVisualElementPanel>
|
|
struct Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53;
|
|
// System.Action`1<UnityEngine.UIElements.EventBase>
|
|
struct Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43;
|
|
// 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.TimerState>
|
|
struct Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB;
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99;
|
|
// UnityEngine.UIElements.UIR.BasicNode`1<UnityEngine.UIElements.UIR.TextureEntry>
|
|
struct BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB;
|
|
// UnityEngine.UIElements.ChangeEvent`1<System.String>
|
|
struct ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F;
|
|
// UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3;
|
|
// System.Collections.Generic.Comparer`1<System.Int32>
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80;
|
|
// System.Collections.Generic.Comparer`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB;
|
|
// System.Comparison`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Comparison_1_tE94B5C4AE59DE10B7A54AD7C3291462A05D5CD49;
|
|
// System.Comparison`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
struct Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.Panel>
|
|
struct Dictionary_2_tB87BEC840CF876F5CE38D31A5FD1BFD7BDCCCD75;
|
|
// 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<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
struct Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7;
|
|
// 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;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32>
|
|
struct Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
struct EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseDownEvent>
|
|
struct EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
struct EventCallback_1_t074F374661507958319B62431E9384D959AA1B09;
|
|
// 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.PointerCancelEvent>
|
|
struct EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
struct EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA;
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913;
|
|
// UnityEngine.UIElements.EventCallback`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct EventCallback_1_t22AD2A21FA6E90AFC97D4E5717205808F3111FE6;
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
struct FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A;
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
struct FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8;
|
|
// System.Func`1<System.Boolean>
|
|
struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457;
|
|
// System.Func`1<UnityEngine.UIElements.IGenericMenu>
|
|
struct Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B;
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431;
|
|
// System.Func`2<System.Single,System.Single>
|
|
struct Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2;
|
|
// System.Func`3<UnityEngine.UIElements.Background,UnityEngine.UIElements.Background,System.Boolean>
|
|
struct Func_3_tE3C94684D6DF31A003FECCCBC631507046C81ECE;
|
|
// System.Func`3<UnityEngine.Color,UnityEngine.Color,System.Boolean>
|
|
struct Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E;
|
|
// System.Func`3<UnityEngine.Font,UnityEngine.Font,System.Boolean>
|
|
struct Func_3_t79BD8B3734A7771622ADCD860FFC589C81C058FA;
|
|
// System.Func`3<UnityEngine.UIElements.FontDefinition,UnityEngine.UIElements.FontDefinition,System.Boolean>
|
|
struct Func_3_tAD7EE8FC165028B732FB7B83E71870F0B8E791E0;
|
|
// System.Func`3<System.Int32,System.Int32,System.Boolean>
|
|
struct Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69;
|
|
// System.Func`3<UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Boolean>
|
|
struct Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10;
|
|
// System.Func`3<UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Boolean>
|
|
struct Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D;
|
|
// System.Func`3<UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Boolean>
|
|
struct Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC;
|
|
// System.Func`3<System.Single,System.Single,System.Boolean>
|
|
struct Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E;
|
|
// System.Func`3<UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Boolean>
|
|
struct Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502;
|
|
// System.Func`3<UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Boolean>
|
|
struct Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F;
|
|
// System.Func`3<UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Boolean>
|
|
struct Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6;
|
|
// System.Func`3<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4;
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE;
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>
|
|
struct HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45;
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>
|
|
struct HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB;
|
|
// System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
struct IEnumerable_1_t46F270317FFCE1D43BD739E09DC0144D63F39E0A;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct IEnumerable_1_tFBAB9009349DC2FC4CC42F96D81C9D0B29E160FE;
|
|
// System.Collections.Generic.IEnumerable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct IEnumerable_1_t29E7244AE33B71FA0981E50D5BC73B7938F35C66;
|
|
// System.Collections.Generic.IEnumerable`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>
|
|
struct IEnumerable_1_tCC160952E834BABD4C3A6BDA971ED4DD97B3B01D;
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct IEqualityComparer_1_t2CBC1E01F8DDF83EBED512F498266114532DD927;
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UIElements.ScheduledItem>
|
|
struct IEqualityComparer_1_tBD364C1DB31C64C63C088168803F265894B8D896;
|
|
// System.Collections.Generic.IEqualityComparer`1<System.String>
|
|
struct IEqualityComparer_1_tAE94C8F24AD5B94D4EE85CA9FC59E3409D41CAF7;
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UIElements.StyleSheets.StylePropertyId>
|
|
struct IEqualityComparer_1_t341DBC625B94A179D2F2C3E3CF45C76E281F4612;
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UIElements.VisualElement>
|
|
struct IEqualityComparer_1_t28C95BC84663336FDD24A851DFF64782876EA734;
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair>
|
|
struct IEqualityComparer_1_tF175EE4608832085A0EE2A97DAE545B83F097888;
|
|
// System.Collections.Generic.IList`1<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
struct IList_1_tF62DE4FB23A982EBB71A50124BFC5C73483C17FC;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<System.String,UnityEngine.UIElements.VisualElement>
|
|
struct KeyCollection_tC5B239E49B6B3F63B394F906A069240465B098DF;
|
|
// System.Collections.Generic.Dictionary`2/KeyCollection<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
struct KeyCollection_tAE1CD1CE327D07F072532A89E6854F2C33EB014A;
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA;
|
|
// 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.GUILayoutEntry>
|
|
struct List_1_tA5BCD116CC751A5F35C7D3D7B96DC3A5D22B9C82;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventHandler>
|
|
struct List_1_t6FBD33EFCD307A54E0E8F62AAA0677E2ADAE58D3;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption>
|
|
struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>
|
|
struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Panel>
|
|
struct List_1_t9FF902E193613BD654FD1CF8DBDEF7B872504919;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.RenderChainTextEntry>
|
|
struct List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>
|
|
struct List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E;
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyId>
|
|
struct List_1_t365205E6BE687FCF41975C16741DD9C303C1C269;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet>
|
|
struct List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset>
|
|
struct List_1_t63B31A07921C5E19BCA9E85447E2260F37E3E777;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElement>
|
|
struct List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementAsset>
|
|
struct List_1_tA2DA9358299C5C3E2E66D546D9B0E9089C3D7DBE;
|
|
// System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ClickDetector/ButtonClickStatus>
|
|
struct List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement>
|
|
struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.GenericDropdownMenu/MenuItem>
|
|
struct List_1_t61096569E456190C1D695A123917128C0E1FB932;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
struct List_1_t491E344573B9D6F61E36AF56132B7412453928C9;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>
|
|
struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
struct List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualTreeAsset/SlotDefinition>
|
|
struct List_1_t70BBA01AC05569034FEB9847D92E5F046528FBAF;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualTreeAsset/SlotUsageEntry>
|
|
struct List_1_t10D8EC0B84DD3EDB54DA9AE6AF65B5AB50BA9D5A;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualTreeAsset/UsingEntry>
|
|
struct List_1_t3A511618E31C01BE3D1EA788ABB9AD6F354E8485;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
struct MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
struct MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067;
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83;
|
|
// UnityEngine.UIElements.MouseEventBase`1<System.Object>
|
|
struct MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.ChangeEvent`1<System.String>>
|
|
struct ObjectPool_1_t4B6FA9735BC5BF40624419B712D9493C7EF11802;
|
|
// UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>
|
|
struct ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct ObjectPool_1_t7FDDBA964772905A89719355C6E4F07922AA0C78;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.BlurEvent>
|
|
struct ObjectPool_1_t2BAC247346D1A30E6F98C5C633CA4A8A94FC170A;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct ObjectPool_1_t30C8F70D98C7F0227113800C031CF8E316BD7608;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.FocusEvent>
|
|
struct ObjectPool_1_t10DF1D7B915FABBA839F55B1C8F8A53EF636E395;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.FocusInEvent>
|
|
struct ObjectPool_1_t6EA833FFCBB94CBB4B4ECF190C617D0010F43887;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.FocusOutEvent>
|
|
struct ObjectPool_1_t11916664A294D85084603B0F15FA2E810B2BC5FF;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct ObjectPool_1_tC6626AC387E62EDBD0EA56924280D44E6476EC67;
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct ObjectPool_1_t37080504ECCFF986BCF1E7D4C1D26BB929DEC7E9;
|
|
// 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.MouseMoveEvent>
|
|
struct ObjectPool_1_tD78AE6F54B951DDB2D0439009049A8F2422D78BA;
|
|
// 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.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.VisualElementFocusChangeTarget>
|
|
struct ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E;
|
|
// UnityEngine.UIElements.ObjectPool`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9;
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<System.Object>
|
|
struct PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC;
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
struct PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F;
|
|
// 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.PointerMoveEvent>
|
|
struct PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B;
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496;
|
|
// System.Collections.Generic.Queue`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41;
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
|
|
struct Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.InheritedData>
|
|
struct RefCounted_t6B975CD3D06E8D955346FC0D66E8F6E449D49A44;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.LayoutData>
|
|
struct RefCounted_t0E133AD36715877AE1CE72539A0199B4D3AA8CD1;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.RareData>
|
|
struct RefCounted_t81BCBAE57D930C934CF7A439452D65303AC6A8CD;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.TransformData>
|
|
struct RefCounted_t78303B1CD3D08C664ABB15EBD7C882DA3E06CF7D;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.TransitionData>
|
|
struct RefCounted_tA9FB4D63A1064BD322AFDFCD70319CB384C057D9;
|
|
// UnityEngine.UIElements.StyleDataRef`1/RefCounted<UnityEngine.UIElements.VisualData>
|
|
struct RefCounted_t812D790A2C787F18230F9234F6C9B84D4AC1A85A;
|
|
// System.Collections.Generic.Stack`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>
|
|
struct Stack_1_t03CF116DF66BF3696E395233D45D668169D2D655;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.IMGUIContainer>
|
|
struct Stack_1_t9978CB0119EA70B0C3101996FB3D675B2D59025A;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.VisualElementFocusChangeTarget>
|
|
struct Stack_1_tED2C2A36F6C3F66D1AE3ECC4B99177D661C08F11;
|
|
// System.Collections.Generic.Stack`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Stack_1_tF3E5E7101E929741300A1CF7C159A6ED9B61621A;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>
|
|
struct Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.Background>
|
|
struct TransitionEventsFrameState_tE3B03C5A4D3A9B62395A67012747638ADE7B8D2D;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.Color>
|
|
struct TransitionEventsFrameState_tC1DACCA9274641DD267223338E7C026D4CF520AC;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.Font>
|
|
struct TransitionEventsFrameState_t31FA216B798ED8FA3490C3CA515528DCA4F26A2C;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.FontDefinition>
|
|
struct TransitionEventsFrameState_t2B8264420B693D76C74F99F305197870C62C10F4;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<System.Int32>
|
|
struct TransitionEventsFrameState_tC8FEB488506DC99B874A454BED371793598879E9;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.Length>
|
|
struct TransitionEventsFrameState_tFBFEC4A6BE1900A8D6115CD438F3CCC15A0DBCE9;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.Rotate>
|
|
struct TransitionEventsFrameState_t9DC16C7535A4271EA0FD763A64CD7CF84670EC64;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.Scale>
|
|
struct TransitionEventsFrameState_t25D5D3420391A40A0B978B0D5CA13F775283274E;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<System.Single>
|
|
struct TransitionEventsFrameState_t864A52D0F7726A4F4C2C667BCB56E8A745F7340C;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.TextShadow>
|
|
struct TransitionEventsFrameState_t896507B4A758D8F131A06984765BA0F57C8939A2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.TransformOrigin>
|
|
struct TransitionEventsFrameState_t7FB3FD474018D429F5F1EE705EF9ADA6F197EDEF;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<UnityEngine.UIElements.Translate>
|
|
struct TransitionEventsFrameState_t3F9A8EB2B33780D3F2037BFEED0A3C6A03B03FEC;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Boolean>
|
|
struct TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>
|
|
struct TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03;
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct TypedUxmlAttributeDescription_1_t9EDCA7A1D2A3784B3A190D0D1E6CACA78EE18E3D;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.PickingMode>
|
|
struct UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.UsageHints>
|
|
struct UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4;
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.BindableElement,UnityEngine.UIElements.BindableElement/UxmlTraits>
|
|
struct UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A;
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.IMGUIContainer,UnityEngine.UIElements.IMGUIContainer/UxmlTraits>
|
|
struct UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF;
|
|
// UnityEngine.UIElements.UxmlFactory`2<System.Object,System.Object>
|
|
struct UxmlFactory_2_tA5B21BD283B57202633CBFD2ABB84CE9AD987DF2;
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TemplateContainer,UnityEngine.UIElements.TemplateContainer/UxmlTraits>
|
|
struct UxmlFactory_2_t8EB039498EE25D0F0B57B0E86AFC4B4F1F0C5933;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<System.String,UnityEngine.UIElements.VisualElement>
|
|
struct ValueCollection_t06CDA99DB645BD0BA87E9F06322972BF06B8B0B1;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
struct ValueCollection_t04D5F77EBC72D81BB7FE7199D6C9DC65DEB60064;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.Background>
|
|
struct ValuesDiscrete_1_t63B8F92F4DAABF488DAEF85235D684338A5BF983;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.Font>
|
|
struct ValuesDiscrete_1_t3FE71D851C5B6AD9E518846FD0AE377C4FD977C8;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.FontDefinition>
|
|
struct ValuesDiscrete_1_tEEAF52293B68D5800CAC73A14E2C3B3B02E6C2B1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Background>
|
|
struct Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Color>
|
|
struct Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Font>
|
|
struct Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.FontDefinition>
|
|
struct Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Int32>
|
|
struct Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Length>
|
|
struct Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Rotate>
|
|
struct Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Scale>
|
|
struct Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Single>
|
|
struct Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TextShadow>
|
|
struct Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TransformOrigin>
|
|
struct Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Translate>
|
|
struct Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Values_1_tD44BBEC769B1388DCA51C01019802B242F987014;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Background>[]
|
|
struct EmptyDataU5BU5D_t4FC6419C796BBADFEC77D9CB97A3FB7B1C6D5CB8;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.Color>[]
|
|
struct EmptyDataU5BU5D_tDFE3104887D7AEB406BC646123D7C8AA698EB58A;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.Font>[]
|
|
struct EmptyDataU5BU5D_t024015F2FF2FC69854D9FD05CE50190B4B1F3A64;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.FontDefinition>[]
|
|
struct EmptyDataU5BU5D_t568C72D6625FA05F854FF86F02910C531D98B72E;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<System.Int32>[]
|
|
struct EmptyDataU5BU5D_t920355EC41DECEE4E1D5688CEA971923802FC9A3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Length>[]
|
|
struct EmptyDataU5BU5D_tE2C14BF5968870FDDD993014F93FDE3FC5572837;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Rotate>[]
|
|
struct EmptyDataU5BU5D_t4EA7859B72A26B20006E0BD02EC63611C4C71485;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Scale>[]
|
|
struct EmptyDataU5BU5D_tF2D26ADE6FCC1E97FB2FFC1DC56D63F08E711A3C;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<System.Single>[]
|
|
struct EmptyDataU5BU5D_t60D6EDC5438323017497721F3A8E4A0376F2B741;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.TextShadow>[]
|
|
struct EmptyDataU5BU5D_t8EE2FFAAC9B7C301CF4690109183A2EFDFC5A20F;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.TransformOrigin>[]
|
|
struct EmptyDataU5BU5D_tB3A736D4DE7E747B7C1B6CA7B36EB41FA6207653;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Translate>[]
|
|
struct EmptyDataU5BU5D_tFD0240910F0FF75CC94A141EDE346043BD9C179C;
|
|
// System.Collections.Generic.Dictionary`2/Entry<System.String,UnityEngine.UIElements.VisualElement>[]
|
|
struct EntryU5BU5D_tF9A333B05D89C80863205975D040FE0EF8B5D19B;
|
|
// System.Collections.Generic.Dictionary`2/Entry<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>[]
|
|
struct EntryU5BU5D_t524C33EA8D08013B8734724ABCA925485CF3B799;
|
|
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>[]
|
|
struct SlotU5BU5D_t056AB4465CFC0A3D07F7C0975B7EE25ED67AB270;
|
|
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.UIElements.ScheduledItem>[]
|
|
struct SlotU5BU5D_t023D2811E7684382723AD8745EA50FCD32EF8357;
|
|
// System.Collections.Generic.HashSet`1/Slot<UnityEngine.UIElements.VisualElement>[]
|
|
struct SlotU5BU5D_t94CA178993B9FC71F63E131258D20773C4BC2048;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>[]
|
|
struct StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>[]
|
|
struct StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>[]
|
|
struct StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>[]
|
|
struct StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>[]
|
|
struct StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>[]
|
|
struct StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>[]
|
|
struct StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>[]
|
|
struct StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>[]
|
|
struct StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>[]
|
|
struct StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>[]
|
|
struct StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>[]
|
|
struct StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Background>[]
|
|
struct TimingDataU5BU5D_t0DDECCB612303E94B577E5978AB4B36B5192AFB1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>[]
|
|
struct TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Font>[]
|
|
struct TimingDataU5BU5D_t7D21FA13314B030338650732321EC6B9E93FF0F6;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.FontDefinition>[]
|
|
struct TimingDataU5BU5D_t45DAD27FEA03547B7581715461816FA37E7EC651;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>[]
|
|
struct TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>[]
|
|
struct TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>[]
|
|
struct TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>[]
|
|
struct TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>[]
|
|
struct TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>[]
|
|
struct TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>[]
|
|
struct TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>[]
|
|
struct TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3;
|
|
// UnityEngine.UIElements.Background[]
|
|
struct BackgroundU5BU5D_t29762095DD694E79A85A59135735FF02E54C4B46;
|
|
// System.Boolean[]
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
// 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.Font[]
|
|
struct FontU5BU5D_t418554EC037A82050D1E53593D5B2A8C395054F3;
|
|
// UnityEngine.UIElements.FontDefinition[]
|
|
struct FontDefinitionU5BU5D_t31BDC3E2D72918B36F815F95F7CBA1F057E3DA39;
|
|
// UnityEngine.UIElements.IEventDispatchingStrategy[]
|
|
struct IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97;
|
|
// UnityEngine.UIElements.IEventHandler[]
|
|
struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D;
|
|
// UnityEngine.UIElements.IGroupBoxOption[]
|
|
struct IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC;
|
|
// UnityEngine.UIElements.Experimental.IValueAnimationUpdate[]
|
|
struct IValueAnimationUpdateU5BU5D_t250909B263EE1BB62A80F2449EAD3709E83C5C78;
|
|
// UnityEngine.UIElements.IVisualTreeUpdater[]
|
|
struct IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8;
|
|
// System.Int32[]
|
|
struct Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C;
|
|
// System.IntPtr[]
|
|
struct IntPtrU5BU5D_tFD177F8C806A6921AD7150264CCC62FA00CAD832;
|
|
// UnityEngine.UIElements.Length[]
|
|
struct LengthU5BU5D_t6E92E14664BA86924824C32A0BBE10AEC53C7FAE;
|
|
// UnityEngine.UIElements.ManipulatorActivationFilter[]
|
|
struct ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7;
|
|
// System.Object[]
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
// UnityEngine.UIElements.Rotate[]
|
|
struct RotateU5BU5D_tD482C518713DEC5763C34C827A9B6DB565776772;
|
|
// UnityEngine.UIElements.Scale[]
|
|
struct ScaleU5BU5D_tE608175710457D7343DD849244BF59B58157F0EF;
|
|
// UnityEngine.UIElements.ScheduledItem[]
|
|
struct ScheduledItemU5BU5D_tF7CABE4BF771C4BD25E771C75FC8C2739F0FB41A;
|
|
// System.Single[]
|
|
struct SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C;
|
|
// System.Diagnostics.StackTrace[]
|
|
struct StackTraceU5BU5D_t32FBCB20930EAF5BAE3F450FF75228E5450DA0DF;
|
|
// System.String[]
|
|
struct StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[]
|
|
struct StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359;
|
|
// UnityEngine.UIElements.TextShadow[]
|
|
struct TextShadowU5BU5D_tF37C87EBD3D8745BEDABCE2EA499DE16C15B5D8C;
|
|
// UnityEngine.UIElements.TransformOrigin[]
|
|
struct TransformOriginU5BU5D_t0BDBC9C8F1888009152284DC2903B3C289F826DA;
|
|
// UnityEngine.UIElements.Translate[]
|
|
struct TranslateU5BU5D_t9199DFD72A8EC5FA4C33D75E5F85242F9F97E358;
|
|
// System.Type[]
|
|
struct TypeU5BU5D_t97234E1129B564EB38B8D85CAC2AD8B5B9522FFB;
|
|
// System.UInt16[]
|
|
struct UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83;
|
|
// UnityEngine.UIElements.VisualElement[]
|
|
struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF;
|
|
// Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType[]
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
// UnityEngine.UIElements.EventDispatcher/DispatchContext[]
|
|
struct DispatchContextU5BU5D_t23932F8BEADFC827A9CA5636867F6721AD971757;
|
|
// UnityEngine.UIElements.EventDispatcher/EventRecord[]
|
|
struct EventRecordU5BU5D_tB7CC04280192D9B2B4980F107F93ABBBE4E4DCA8;
|
|
// UnityEngine.UIElements.FocusController/FocusedElement[]
|
|
struct FocusedElementU5BU5D_tE2EC8928994D7E368EC55BC3876976AAED693E58;
|
|
// UnityEngine.UIElements.UIR.MeshBuilder/VertexClipEdge[]
|
|
struct VertexClipEdgeU5BU5D_t996146320A0ACC313D3EF0F5791237A90C2E34AA;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values[]
|
|
struct ValuesU5BU5D_t5332999C48416329B2A447FCD8C71113DDB459EA;
|
|
// UnityEngine.UIElements.TemplateAsset/AttributeOverride[]
|
|
struct AttributeOverrideU5BU5D_t4D2E0B93EF3A1A1EB58AC1F48E6CFE20A0EA27E8;
|
|
// UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord[]
|
|
struct FocusRingRecordU5BU5D_tEF4D674D6630E0BABDC146E3DA39D58EEE0056F6;
|
|
// System.Action
|
|
struct Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07;
|
|
// System.ArgumentException
|
|
struct ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263;
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129;
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
struct AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28;
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
struct BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303;
|
|
// UnityEngine.UIElements.BaseVisualTreeUpdater
|
|
struct BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41;
|
|
// UnityEngine.UIElements.BindableElement
|
|
struct BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C;
|
|
// System.Reflection.Binder
|
|
struct Binder_t91BFCE95A7057FADF4D8A1A342AFE52872246235;
|
|
// UnityEngine.UIElements.BlurEvent
|
|
struct BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302;
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4;
|
|
// UnityEngine.UIElements.ClickDetector
|
|
struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31;
|
|
// UnityEngine.UIElements.Clickable
|
|
struct Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834;
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
struct CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520;
|
|
// UnityEngine.UIElements.ContextualMenuManager
|
|
struct ContextualMenuManager_tEE3B1F33FFFD180705467CA625AEBA0F5D63154B;
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
struct DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A;
|
|
// UnityEngine.UIElements.DefaultGroupManager
|
|
struct DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157;
|
|
// System.Delegate
|
|
struct Delegate_t;
|
|
// System.DelegateData
|
|
struct DelegateData_t9B286B493293CD2D23A5B2B5EF0E5B1324C2B77E;
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
struct DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496;
|
|
// UnityEngine.UIElements.ElementUnderPointer
|
|
struct ElementUnderPointer_tB43AD64F79C6F06829D8B90318AF1A6BBE9C1904;
|
|
// UnityEngine.Event
|
|
struct Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB;
|
|
// UnityEngine.UIElements.EventBase
|
|
struct EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C;
|
|
// UnityEngine.UIElements.EventCallbackRegistry
|
|
struct EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85;
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398;
|
|
// System.Exception
|
|
struct Exception_t;
|
|
// UnityEngine.UIElements.FocusChangeDirection
|
|
struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF;
|
|
// UnityEngine.UIElements.FocusController
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A;
|
|
// UnityEngine.UIElements.FocusEvent
|
|
struct FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F;
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
struct FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE;
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
struct FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C;
|
|
// UnityEngine.UIElements.Focusable
|
|
struct Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0;
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6;
|
|
// UnityEngine.TextCore.Text.FontAsset
|
|
struct FontAsset_t61A6446D934E582651044E33D250EA8D306AB958;
|
|
// UnityEngine.GUILayoutEntry
|
|
struct GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F;
|
|
// UnityEngine.GUILayoutGroup
|
|
struct GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D;
|
|
// UnityEngine.GUIStyle
|
|
struct GUIStyle_t20BA2F9F3FE9D13AAA607EEEBE5547835A6F6580;
|
|
// UnityEngine.UIElements.GenericDropdownMenu
|
|
struct GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1;
|
|
// UnityEngineInternal.GenericStack
|
|
struct GenericStack_t1FB49AB7D847C97ABAA97AB232CA416CABD24C49;
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
struct GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A;
|
|
// UnityEngine.UIElements.HierarchyEvent
|
|
struct HierarchyEvent_tB23E4347BC47656A014CA104A5B1DDC172A2A705;
|
|
// UnityEngine.UIElements.IBinding
|
|
struct IBinding_t02FD99E9C9F2072B28E110F16C157666F5B2DBC7;
|
|
// UnityEngine.UIElements.ICursorManager
|
|
struct ICursorManager_t78B026DED2559C62810B21C54C5F882457073A8B;
|
|
// System.Collections.IDictionary
|
|
struct IDictionary_t6D03155AF1FA9083817AA5B6AD7DEEACC26AB220;
|
|
// System.IDisposable
|
|
struct IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5;
|
|
// UnityEngine.UIElements.IEventDispatchingStrategy
|
|
struct IEventDispatchingStrategy_t0D91FED4877152CF1089B374AE7BF2C4374E8545;
|
|
// UnityEngine.UIElements.IEventHandler
|
|
struct IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3;
|
|
// UnityEngine.UIElements.IFocusRing
|
|
struct IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78;
|
|
// UnityEngine.UIElements.IGenericMenu
|
|
struct IGenericMenu_t8C71DC6E11979C75E95C24AFBADE19E47D53770B;
|
|
// UnityEngine.UIElements.IGroupBoxOption
|
|
struct IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7;
|
|
// UnityEngine.UIElements.IMGUIContainer
|
|
struct IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26;
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
struct IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0;
|
|
// UnityEngine.UIElements.IManipulator
|
|
struct IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708;
|
|
// UnityEngine.UIElements.IMouseEvent
|
|
struct IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E;
|
|
// UnityEngine.UIElements.IPanel
|
|
struct IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5;
|
|
// UnityEngine.UIElements.IPointerEvent
|
|
struct IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7;
|
|
// UnityEngine.UIElements.IResolvedStyle
|
|
struct IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89;
|
|
// UnityEngine.UIElements.IStylePainter
|
|
struct IStylePainter_t0B2A07F3DA2AD05641C95841817F32B352E464E6;
|
|
// UnityEngine.UIElements.IStylePropertyAnimations
|
|
struct IStylePropertyAnimations_tB90A36DDFC6923EE285E54A51D9B78316CE06764;
|
|
// UnityEngine.UIElements.ITextHandle
|
|
struct ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4;
|
|
// UnityEngine.UIElements.IUxmlAttributes
|
|
struct IUxmlAttributes_t9B6679F04874117C59014DE49C35B1841F9A1DDE;
|
|
// UnityEngine.UIElements.Experimental.IValueAnimationUpdate
|
|
struct IValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B;
|
|
// UnityEngine.UIElements.IVisualElementPanelActivatable
|
|
struct IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0;
|
|
// UnityEngine.UIElements.IVisualElementScheduledItem
|
|
struct IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F;
|
|
// UnityEngine.UIElements.IVisualElementScheduler
|
|
struct IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8;
|
|
// UnityEngine.UIElements.IVisualTreeUpdater
|
|
struct IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06;
|
|
// UnityEngine.UIElements.ImmediateModeException
|
|
struct ImmediateModeException_t7A6F44A9035C26E64FF8BCD4964F7189506F063D;
|
|
// UnityEngine.UIElements.InlineStyleAccess
|
|
struct InlineStyleAccess_t5CA7877999C9442491A220AE50D605C84D09A165;
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB;
|
|
// UnityEngine.UIElements.KeyDownEvent
|
|
struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C;
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
struct KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB;
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator
|
|
struct KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3;
|
|
// UnityEngine.UIElements.Label
|
|
struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70;
|
|
// UnityEngine.UIElements.Manipulator
|
|
struct Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE;
|
|
// UnityEngine.Material
|
|
struct Material_t18053F08F347D0DCA5E1140EC7EC4533DD8A14E3;
|
|
// System.Reflection.MemberFilter
|
|
struct MemberFilter_tF644F1AE82F611B677CE1964D5A3277DDA21D553;
|
|
// UnityEngine.UIElements.MeshGenerationContext
|
|
struct MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62;
|
|
// UnityEngine.UIElements.UIR.MeshHandle
|
|
struct MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E;
|
|
// System.Reflection.MethodInfo
|
|
struct MethodInfo_t;
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
struct MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439;
|
|
// UnityEngine.UIElements.MouseCaptureEvent
|
|
struct MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014;
|
|
// UnityEngine.UIElements.MouseCaptureOutEvent
|
|
struct MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5;
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
struct MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD;
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
struct MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460;
|
|
// UnityEngine.UIElements.MouseManipulator
|
|
struct MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D;
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
struct MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5;
|
|
// UnityEngine.UIElements.MouseUpEvent
|
|
struct MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811;
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A;
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C;
|
|
// UnityEngine.ObjectGUIState
|
|
struct ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15;
|
|
// UnityEngine.UIElements.PointerCancelEvent
|
|
struct PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51;
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
struct PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE;
|
|
// UnityEngine.UIElements.PointerCaptureEvent
|
|
struct PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB;
|
|
// UnityEngine.UIElements.PointerCaptureOutEvent
|
|
struct PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5;
|
|
// UnityEngine.UIElements.PointerDispatchState
|
|
struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A;
|
|
// UnityEngine.UIElements.PointerDownEvent
|
|
struct PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51;
|
|
// UnityEngine.UIElements.PointerEventDispatchingStrategy
|
|
struct PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F;
|
|
// UnityEngine.UIElements.PointerManipulator
|
|
struct PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72;
|
|
// UnityEngine.UIElements.PointerMoveEvent
|
|
struct PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3;
|
|
// 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;
|
|
// System.Runtime.Serialization.SafeSerializationManager
|
|
struct SafeSerializationManager_tCBB85B95DFD1634237140CD892E82D06ECB3F5E6;
|
|
// UnityEngine.UIElements.ScheduledItem
|
|
struct ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0;
|
|
// UnityEngine.UIElements.ScrollView
|
|
struct ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9;
|
|
// System.Runtime.Serialization.SerializationInfo
|
|
struct SerializationInfo_t3C47F63E24BEB9FCE2DC6309E027F238DC5C5E37;
|
|
// UnityEngine.Sprite
|
|
struct Sprite_tAFF74BC83CD68037494CB0B4F28CBDF8971CAB99;
|
|
// System.String
|
|
struct String_t;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem
|
|
struct StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718;
|
|
// UnityEngine.UIElements.StyleSheet
|
|
struct StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428;
|
|
// UnityEngine.UIElements.StyleValueCollection
|
|
struct StyleValueCollection_t5ADC08D23E648FBE78F2C161494786E6C83E1377;
|
|
// UnityEngine.UIElements.StyleVariableContext
|
|
struct StyleVariableContext_tF74F2787CE1F6BEBBFBFF0771CF493AC9E403527;
|
|
// UnityEngine.UIElements.TemplateAsset
|
|
struct TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807;
|
|
// UnityEngine.UIElements.TemplateContainer
|
|
struct TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2;
|
|
// UnityEngine.UIElements.TextElement
|
|
struct TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0;
|
|
// UnityEngine.Texture2D
|
|
struct Texture2D_tE6505BC111DD8A424A9DBE8E05D7D09E11FFFCF4;
|
|
// UnityEngine.UIElements.TimerEventScheduler
|
|
struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862;
|
|
// UnityEngine.UIElements.Toggle
|
|
struct Toggle_t27BE43456B97DD7A793D272D3318F9FE682B844C;
|
|
// 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.VectorImage
|
|
struct VectorImage_t7BD8CE948377FFE95FCA0C48014ACDFC13B8F8FC;
|
|
// UnityEngine.UIElements.VisualElement
|
|
struct VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115;
|
|
// UnityEngine.UIElements.VisualElementAnimationSystem
|
|
struct VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7;
|
|
// UnityEngine.UIElements.VisualElementFocusChangeDirection
|
|
struct VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C;
|
|
// UnityEngine.UIElements.VisualElementFocusChangeTarget
|
|
struct VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD;
|
|
// UnityEngine.UIElements.VisualElementFocusRing
|
|
struct VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3;
|
|
// UnityEngine.UIElements.VisualElementPanelActivator
|
|
struct VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB;
|
|
// UnityEngine.UIElements.VisualTreeAsset
|
|
struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB;
|
|
// UnityEngine.UIElements.VisualTreeUpdater
|
|
struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9;
|
|
// UnityEngine.UIElements.VisualTreeViewDataUpdater
|
|
struct VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986;
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915;
|
|
// UnityEngine.Yoga.YogaConfig
|
|
struct YogaConfig_tE8B56F99460C291C1F7F46DBD8BAC9F0B653A345;
|
|
// UnityEngine.Yoga.YogaNode
|
|
struct YogaNode_t4B5B593220CCB315B5A60CB48BA4795636F04DDA;
|
|
// UnityEngine.UIElements.BindableElement/UxmlFactory
|
|
struct UxmlFactory_t1DB561BFFA7E2E3836F7AB008BCE7B6119542F33;
|
|
// UnityEngine.UIElements.BindableElement/UxmlTraits
|
|
struct UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172;
|
|
// UnityEngine.Font/FontTextureRebuildCallback
|
|
struct FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1;
|
|
// UnityEngine.GUILayoutUtility/LayoutCache
|
|
struct LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60;
|
|
// UnityEngine.UIElements.IMGUIContainer/UxmlFactory
|
|
struct UxmlFactory_tF9683EC71E4F687E36692AD4C22A0F0A79BA5557;
|
|
// UnityEngine.UIElements.IMGUIContainer/UxmlTraits
|
|
struct UxmlTraits_tC22B794B5E43920F0989281BB88F1F4115575065;
|
|
// UnityEngine.UIElements.ScheduledItem/<>c
|
|
struct U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values
|
|
struct Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground
|
|
struct ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor
|
|
struct ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat
|
|
struct ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont
|
|
struct ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition
|
|
struct ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt
|
|
struct ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength
|
|
struct ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate
|
|
struct ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale
|
|
struct ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow
|
|
struct ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin
|
|
struct ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate
|
|
struct ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B;
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlFactory
|
|
struct UxmlFactory_t5721E550FC36B9FB25920C8A1BF3ED0690EAD095;
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlTraits
|
|
struct UxmlTraits_t0D8AB59C52341D77460AC5A03B477ED2C6A05AB6;
|
|
// UnityEngine.UIElements.VisualElement/<>c__DisplayClass111_0
|
|
struct U3CU3Ec__DisplayClass111_0_t76B458C53303EA1CC0E04AC8296A1FD8BA59D9F4;
|
|
// UnityEngine.UIElements.VisualElement/CustomStyleAccess
|
|
struct CustomStyleAccess_t170C852102B4D09FB478B620A75B14D096F9F2B1;
|
|
// UnityEngine.UIElements.VisualElement/TypeData
|
|
struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A;
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
struct UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B;
|
|
// UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord
|
|
struct FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D;
|
|
// UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray
|
|
struct UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer
|
|
struct EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A;
|
|
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t074F374661507958319B62431E9384D959AA1B09_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D_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_t2BE7F58348C9CC544A8973B3A9E55541DE43C457_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GC_t920F9CF6EBB7C787E5010A4352E1B587F356DC58_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IBindable_tC033D86A91EFC1DB9A0DD25E218A1D6E0C4D306A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEventDispatchingStrategy_t0D91FED4877152CF1089B374AE7BF2C4374E8545_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IStylePainter_t0B2A07F3DA2AD05641C95841817F32B352E464E6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IStylePropertyAnimations_tB90A36DDFC6923EE285E54A51D9B78316CE06764_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t491E344573B9D6F61E36AF56132B7412453928C9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t70EE7982F45810D4B024CF720D910E67974A3094_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_t96E9133B70FB6765E6B138E810D33E18901715DA_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E_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* PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* String_t_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElementUtils_t40D4F58B1AA48524658BD0DC09E4CCD7DAAF722C_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C RuntimeClass* VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral037C461B7701AD27801066F5D62BDC1991EF46AE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral17CD413977AD843771733C48B6EA198129F49690;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral209554CD387B18A1A4B25A7C3A6CF49F7B3B59C7;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral27F4E38F96E25FC6A303C61D7E1304CAF64B7541;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral29784256C60A93E08D09354C1B895C1F5D2C22EF;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral35BFF0C070809528BCAE19C360FEF7D619AE8EF3;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral36282FAC116D9FD6B37CC425310E1A8510F08A53;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral3648F9FE5F907A9AE1C04209772C137A134D2939;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral38696CB98344D3E251D7C2136292CA1104CF1134;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral42A4AE30C0BBF599A8EA85A9DB39E3F2EE8F852C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral461F9F39B44884AD0FB62320475F3B244EF6E29B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral508FC97525146E8F2964FF05AC4A7C131CB1D259;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral5A8F45F1C79E40889C90528CFD4D921EE9507784;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral6F98B6CA9694ECBEB1966B29924748589F905C16;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral7E862305548C4DDFD57B29415597CBDB61D1574B;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8172BAC95C9A5BE9FAE6423959034DB348689962;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral8D361F5B71C5628C159C3A28A7E85708847EFFE9;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral90634457536C756A403B8BE954B00F2A226E6010;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteral9981E7534F608A8FB12450BB6935B0079C0F8431;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA01E7667E3AD57BE432A894D11E8333E4CDAD6D5;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA520348FB133A5E1587448A220CADEA2B6584782;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralA9E0268649535EDEE2FE85B30622276BD85E302C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralB04E6A757168B91383DCF5A72C81738955D0E6DA;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralBACE2276995AF12FD78DD720806340BC0BFF5296;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralC00C92E779AF7F150507676512B2BC5D20A14BDE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralCA4C37D993E9DE9D6A9ACD0A4394D625D239626D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralD81452C86BFC4304CE462191543453B5531C824C;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDAFA6CFE9B8762A09883928241534F54757CBDAE;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDB32B0D9CD7F4F3E58406468986C4538F5B0ED33;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDF044C7EBE7E45C9572204BF0DEA5DFD05D06253;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralDF80B2579612A29666520F2763654F929C34D90F;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralEEB55BE0525DCACC1B1C0AF0229E231F141718EC;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFE3CDBE9D3C244138D4F64C1BEB914490F7E7BBD;
|
|
IL2CPP_EXTERN_C String_t* _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_m81C10E53CAC3EFE4C8A66ACC3CF4D2BA06A01A04_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_m973B21C3368658DD783507954107DBB7A0D4BA7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_mF457ADEA74CE4B568350D53896F186F482F473C0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8269D1AF3457E7474A8EB8A380D6F2DBCDA2E649_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4261C8B7CCD0487DCB444E9F1D99595D3F0417EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m1436561BBA8BC9BFF0E0F4374906B6D7F67D2265_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m31B47377B2600C76864A89BB9F281B73D042B4F7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mE3153A790D51A1FBD515EBF3FE36AF9D4DCD1BD7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_mF32CB6B5935957C0761E707801C9062199B61786_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_m70ECAB60D095EDB2BB60D44BC1ABBF8FB4853918_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mBB7D7B6A24C2AB04A9347FD693F502B54BDA3D9D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_mEB2BBAD218BC5F310A502DB49C1487C9DBCCCDE7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_mC9D851A09DE940C7F3D8C12F74FFB775C9483948_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_m2596702F982363AAE007826D14FFF28641A8AEBB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8D4200FB7F0D6DD78D774B7384306E96798C184B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m96B8A002675366436500646208EB3C2FBAE3502A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ChangeEvent_1_GetPooled_mF8F78E2DFC01AE418EFCD2AC9A74536DADCC1D83_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_OnTimer_m0DB36FB7BE7DEED6ABCEF027453E7DB5A5F1679C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Clickable_U3CSimulateSingleClickU3Eb__43_0_mFA30E64FB9FEE2B9A509FD6FDC0641DCCEA28C04_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Dictionary_2__ctor_mC6AD8982CA3D110E6245DB0643FACB0CD5029E5B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerable_ToList_TisIValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_m7BE88426837502AF975B5CBB79C61817A2AF7179_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m1E775D22EE18AAD3D98BA01D0A2AA668048CBF9C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m35BF428398BECACE374D67EA6896DA08F567FE03_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m43C9EF170B762DE400946F0C2FFB8CC03202C627_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m4A64BFA5057E379EF80557690A9F84DB8C0DC380_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m54D61812DE105E7F4C24E076AB25CEF9584EA380_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mB17C0140040E808247FED5A6BCD003F4E06CE36D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m12D53D4879F9DA63D7E9E6762C8980DD625D6D36_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m3D3EF5A0D29EF3803BF56A7CEA227F429DF6B908_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m519472CA4F5205C9F74A0085F727AD1DACDE4578_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m84E3A02B742FD4888E2BDFDA489A60F49727DC28_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m8DCF64B4B5AF3403887135F92831A8AA2860B581_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_mF80A41EE7AFB7FF3EA9D9AB3E2F23CF08C4D51A0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m432F18887566E32D2652596B6FC1FED2EFE41F2A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m52EEE738BA2DBEE07AF31967D59E0AE58696DCB8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_m89012095DFDAB8BAC33FE93CBBDB6F85789C17D2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB55E91F468F3CE1ECF040DA3CA7F8A6550C7A62B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mD31BCDA731E2A35E1C9757A14592933829BAE8D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mD71C654327EF0D36B08754E1B2E88D98B0C072FB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m25C01AA905EAAC1005CF0AAA2F717632787B18E9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mA77A33D9F77CA0784C4A5CD3C6E8400AC11AEB2C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* EventDispatcher_ProcessEventQueue_mDC6EAC056EA04D165F93E7D7991FDC7C5B1722D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_m1491986D8FE3645AE114CF93C9AE4081DCEC0800_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_m3C0CABA913DD3E15FDA3C1951C2F65599F18043E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_m5654D51DC26AF329A7B9DB01E3896B6083E2F9F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_GetPooled_m913643F802F0AF90046419D95ECBC0121D4AE8BF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_get_IsFocusDelegated_m592E9CB880F68069E1D2C7E1AEB1229ACB0CEFA1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* FocusEventBase_1_get_direction_m895C80142080B880EA2AC1FD7F0CA16ACA75866F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Focusable_set_delegatesFocus_mC691C4199C88BEF0C55A7F7FD2C6ADDD00402D6F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Focusable_set_excludeFromFocusRing_m965E9967283F246BBFC2839769018AB77B0F90F7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_m7FC3F8A1831827111D11EB02AC38E3DB5280677D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_m2963B07B3D68EEA4D267108D921637EC41B42B96_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_GetEnumerator_mC9887C2B33596BD62FB04E853D795AEDE819C672_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_m22275ED32609374C998026A0B28E261404A6E7D1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1_Remove_m640BE80A54F96962CAD5B81EBAF63B12C41EA97A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m1EF60485B3C694B2264B65E4532B9AA823C9294A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_m9471E480C842C124702570CB5444B1979B042FFF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IMGUIContainer_DoIMGUIRepaint_m0BAA4611CEBEA76DDA64F0202943CE283BC6CB24_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IMGUIContainer_OnGenerateVisualContent_m7FC27DE2A87FBAF5D7B20B246829C9789042CC49_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* IMGUIContainer_U3CDoOnGUIU3Eb__56_0_mC0F063A87D4918330ECE340E3D170D023520F2F9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_GetPooled_m2A3CDA8BEAE1A4DD06BD2B6FDF65F77F27369F45_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_AddRange_mFC7123F04B580CC7464967C465FE4719E2FFE647_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m9989CB26C4A11F3FBC18A300F9CC329897595091_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m9A43CF05514E0E3F5B93090A1F743AAF336B4CB2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mEC4AFB1C1B47B80C8CE673FC608034E0E1EE11FA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m2AAF9E701399D94DF3735A99591C29E5099EF150_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m6E8418F8671E7413DAF4337D72A04C4713AD4E99_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m83A3BAFC08E530A73E82934C7B1633B5FC197D4C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Contains_m79D8EB0D7DDAC8DBBB1AB267B3A968D575204315_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m09AAEEC73B4C29BEAD0F8154EC63CA7349128AF4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m5E55416AB4F1C7A5BA700264BBB8692D4DE3C674_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mB81904DD9F8BBAD002BD6BDFC99AB65DD09C64D5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mC4AB20120E7F41BCC6005AF74C96E92B288FFCEB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE50C8692EDBD4CE82AF40ABF900B32D16CE06747_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_IndexOf_mEEED9CE5A949BA065D4454468E58ED19A29FD6BA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m3CCFCE437A854F170CFAC8127E60DFBA99CCF94D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Remove_mC512258925EB9D29B979DDA7BAFFFB9841276117_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_Sort_mD3B66520B2F25989200A0CED9AA786045DED2201_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m020E56BAD0BB49CFE3FCE3DB934D337DF2A9BDE8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1692B25CB352586E654D02A6E4D5AA8AE6A361B4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m4F0233457AF4EB4A3440E7DF64AEB37FA4FB8BCA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m73786708BB5BF136266E56407D245B8241A7F24C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m738CDEA3CD6005CFD260118E692A8B3B5FB9AE88_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m856D83183F6F5CDDE65CD7A3B8DBF24E3630CC2F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m90D257D81F60744827FBC0735C4BA1038EA92B1E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mEF41BCB48F34C2EF8A206F7BB1A9F32AFD1FFB84_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m455005DED01B6E5D536CA667069173BC5464E2F2_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mCC7B17EE4F66C7A70008E775F489B5B8BA375190_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_m546789C7848B16FD8AA7B617CCD288E4330A8482_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF5AD649DC34CEE11565F944D25226AA88D945D43_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_m7E2B067F4C1294AAA0B5AB391297BCF04C990ED4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_mDE94950434E8550D10DCF82EBDDFAD9FA6999DF1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* MouseEventBase_1_get_localMousePosition_mE5C3F1309BEB0619604BFA1B5039816FE73A10E5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Get_m667463FE9900F821038BDF505AD5CCE63CE76B8B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Release_m58FA19A999DA19110F7DEA824BD62A4CE8159F5C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1_Release_m971AD50C887D09F9A60E99CD7637A47F61160146_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_m3CDA6D988A544733ED1D31C3C4CC68413D1A33C6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ObjectPool_1__ctor_mA1E177120AF12CEE3415C46BD3A1D03A1BD10034_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_m9A374DF0D549BE03C87F43801FF49F06B3B62CF9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mA34D7C18EF23C20D4EEF6ECBA1D244E450FE1269_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mB59248109D193F686FEB4522CACAAE4D07362B0C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_GetPooled_mECADB036D8A3E61FEE56F40360A9E073056CDB15_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m38DF70FA116B536F7D26200F9947A0F04105F6BF_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m3941BBAAC0355C583681F3A5ECBA8FCAB5F1DACC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* PointerEventBase_1_get_localPosition_m9E543CA223482A9514B0F78D60360D65EC8E3FD4_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_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_Dequeue_m90F123DA1976DFBC4D8B331B07B1EB833A2E4509_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_Enqueue_mBF44A4060F486104A2FC16D28D0BDBD08BC83491_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Queue_1_get_Count_m08F50B5D83CD07085F9B86C829170F37FE7EF037_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Stack_1__ctor_m07307D2825486BBEAEBDCA3BF1FA677FF12C4DAA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34_m3AA63687C84FE888B431AC60F7EDE46679F9C363_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904_mDB2355711EE15D844723B2B521C5178F4902A6BA_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2_m69BD3101A74B41321546E2751DF646D4EB610CB0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7_m980E27E4E6C02926D25BFFDEF0DF7B86D2C4B566_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4_m2DB4B8CDC30AEA7F69E9AF175DEEEADF256997EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367_m46F0FADDB445430FB28DA5D1A5E4F6884D9A0D3A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915_m1D6B301065FC8678565A1A179ED187E6D7DBAF0B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63_m4D2646D45B81A1B5C91B8B7E7080F6E36A570778_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A_m5D936E7D89B0490962316F11C3199C376E575A7D_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C_m2DD45E28E05067361C23AF6459FC26220732E34C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F_m02C7F5437BD38F23BD0D7959FB0A6737F7F5E07C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_GetOrCreate_TisValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B_m9D347157570FF4DC0BC1A96EB5DC3A57DEA15B16_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisBackground_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_m4681675678ACD0B638F1DE5B61E1FB551007A685_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mA6698B8B343450BE774AAFACE5329339B620513C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisFontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_m8E4D16083B78CFD9ACB4C401F281E9677C1BE232_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m22AF562422138D87A2E30829811FEA3C1A62595F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mB97CADACE8C091B57839011BE99CE92EC7A16744_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisLength_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256_m35F10294C0F650E36D89179C9EBDD14F1BED06F6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisRotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_mF48ED781CBE6F243450F08A3CA66A160BA853FF1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisScale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_mCA0F0ADA23085C05A6E20E52FAC0B7FE37E5F40F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7DA7B0363D2265A7C217459845364E86F6D093AB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisTextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_mAF55C9EB61C8081E34D6DA31BB0B7749F7120DB4_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisTransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502_m6DA3A36592C69F444EC66E150A00D1E9D0D2E74F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* StylePropertyAnimationSystem_StartTransition_TisTranslate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_m0BCC34376C9BBAEB7315E9F98CF2FF0578E354B7_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TextElement_OnGenerateVisualContent_mB4B04A8CEE610D66401684E7F293C0C41481A9A3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TextElement_OnGeometryChanged_m315369635F1BD57A1E1A1B7E0C64B020B1C68B81_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TimerEventScheduler_Schedule_m7A310D89229BAB8E97372681B0EE2747757081CB_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* TimerEventScheduler_Unschedule_m705469B9ADF6E66EE4303F3F52E02E3AD27B0E26_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* U3CU3Ec_U3C_cctorU3Eb__25_0_mE6370DE8D3164D5D959A299573C2AAEAE997BB6E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* U3CU3Ec_U3C_cctorU3Eb__25_1_mB79A7ABB41B38ECB10084BAE6620F824F36C75F1_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m12F479F7C12F413DC7A6B818E3102EE3F725DD7C_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m1EAD5B8148AC5467CF2774840E258D93AF49C9BC_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* UxmlFactory_2__ctor_m654F9F18593CC65382457296A874E76F08800729_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesColor_IsSame_m0F902ACD681D6809CEAD28F560A481689CC82E9E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesDiscrete_1__ctor_m0E4BD2599AB0377656A8065339C19DB6E099FC27_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesDiscrete_1__ctor_mA5E3A335CD04AB1496F9C42E7BDA9D6E1551BB66_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesDiscrete_1__ctor_mFDAFF02FCBE6E8293FD5C7BE340D296D32DF674F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesFloat_IsSame_m13A1F5F28A1BC71D2BEA07DB4F1BC27F7BC24809_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesInt_IsSame_m0BA28D0C5011480BE691A04C6717979B59FD5778_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesLength_IsSame_m1CE2286D0CFDD28167E40403F45C40958964EFF6_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesRotate_IsSame_m68450D57ACE7A544B50126120BABB410658B8887_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesScale_IsSame_m2ABB12E9EB1701498D672B9DC5D2E24375818242_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesTextShadow_IsSame_m12A6EF005AB770EFA394D733C10782D0CD147CB8_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesTransformOrigin_IsSame_m09C19414464EE548C1E6A6EC5562670AAFE4AAA0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* ValuesTranslate_IsSame_m2B3B9BE0D5E39F9BD9AB5EC22DAE697A71F30C3B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m14E59C062E826E30FCDC4DEF3E693F23E4929089_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m516D4E8920F3D100B223855A347BD87B06985666_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m5CE5F1D9F61E3AF72965AA1A75B51EED016BD774_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m6C0823FA2DEF3358FC7605F415298C25AB5A0792_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m93E0C4785A19CAE7F9E6AF562B3AC151F93C467E_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_m94B69C26ECEB0D2B15FE237DDF63030D0BC0B910_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_mDBBD3320F73277C566561C33397418535A8371EE_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_mF2E3EEC44174E391276F9E3F4906DF800C856EA9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* Values_1__ctor_mFFEF26A8BD0E03F73FCD1306CBAD763A96908EC3_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualElementExtensions_LocalToWorld_mDDE4378293C3CC8A99E8EA2AA0984BBF30C8FDCD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualElementExtensions_WorldToLocal_m6F92CEAE8BF73F6729262B535191AD1437DC1A9F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualElementExtensions_WorldToLocal_m9AB4674D3198B2C87E9D53DB56077BA769059EF9_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualElementFocusRing_FocusRingSort_m3B38EE0A757FFC2CADAEE6FAC7CBD90B02E91B40_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualElementFocusRing_GetFocusChangeDirection_m040BA490720263A6F4D9C8666F77F0AF4F30D587_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualElementPanelActivator_OnEnter_m35F19B55A036E75B7197F971C546F8B162CFBB00_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualElementPanelActivator_OnLeave_m9B458D27DC27A0338690FE4986DDED7450B8F39A_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeUpdater_SetUpdater_TisUIRLayoutUpdater_t90228F3698DB774BA11D4FBD7DCE8D08BE8DB5B3_m4620EBE804BE7EA33A438FD806F27A59B88EF94F_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeUpdater_SetUpdater_TisUIRRepaintUpdater_tA4093F3857EA96D9E5E9EFD7C18785C787E1408E_mE6D0EBAE20CF2F3FEDBC5F057D1B227A75EE0E8B_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeUpdater_SetUpdater_TisVisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_m0E425144C205AA20A3AE7C9A67DEA05D012F5EBD_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeUpdater_SetUpdater_TisVisualTreeBindingsUpdater_t6EF5299259D0A81E931840287AE6C7E43093A637_m0A357ED36B8D958B4F3102F39439BA475F390CE0_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeUpdater_SetUpdater_TisVisualTreeStyleUpdater_t5F2622AC7562F7647C21B9C3CB4D2B7E98C50D68_mAE1E73D29AB563BEC9FB6BAC26003F185B2D3446_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeUpdater_SetUpdater_TisVisualTreeTransformClipUpdater_t3DFB28E52D60790DE253FA5746D1E3CA20B33C67_mDB8ED3E891DCE40059863E94397200807BEB9597_RuntimeMethod_var;
|
|
IL2CPP_EXTERN_C const RuntimeMethod* VisualTreeUpdater_SetUpdater_TisVisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_mB436EFFA13D99D35730E3F4C93C08C8CD422A709_RuntimeMethod_var;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_com;
|
|
struct ComputedTransitionProperty_tD8E4D8EB5DD69E063944F27A48D9263F4F1354E1_marshaled_pinvoke;
|
|
struct Delegate_t_marshaled_com;
|
|
struct Delegate_t_marshaled_pinvoke;
|
|
struct Exception_t_marshaled_com;
|
|
struct Exception_t_marshaled_pinvoke;
|
|
|
|
struct StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0;
|
|
struct StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB;
|
|
struct StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389;
|
|
struct StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043;
|
|
struct StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9;
|
|
struct StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876;
|
|
struct StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386;
|
|
struct StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F;
|
|
struct StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E;
|
|
struct StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263;
|
|
struct StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC;
|
|
struct StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822;
|
|
struct TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994;
|
|
struct TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077;
|
|
struct TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9;
|
|
struct TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A;
|
|
struct TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269;
|
|
struct TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0;
|
|
struct TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14;
|
|
struct TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E;
|
|
struct TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3;
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4;
|
|
struct IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97;
|
|
struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D;
|
|
struct IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8;
|
|
struct ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918;
|
|
struct StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359;
|
|
struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF;
|
|
struct __Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC;
|
|
|
|
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.Comparer`1<System.Int32>
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement>
|
|
struct Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF : 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_tF9A333B05D89C80863205975D040FE0EF8B5D19B* ____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_tC5B239E49B6B3F63B394F906A069240465B098DF* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t06CDA99DB645BD0BA87E9F06322972BF06B8B0B1* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
struct Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7 : 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_t524C33EA8D08013B8734724ABCA925485CF3B799* ____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_tAE1CD1CE327D07F072532A89E6854F2C33EB014A* ____keys_7;
|
|
// System.Collections.Generic.Dictionary`2/ValueCollection<TKey,TValue> System.Collections.Generic.Dictionary`2::_values
|
|
ValueCollection_t04D5F77EBC72D81BB7FE7199D6C9DC65DEB60064* ____values_8;
|
|
// System.Object System.Collections.Generic.Dictionary`2::_syncRoot
|
|
RuntimeObject* ____syncRoot_9;
|
|
};
|
|
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE : 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_t056AB4465CFC0A3D07F7C0975B7EE25ED67AB270* ____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.HashSet`1<UnityEngine.UIElements.ScheduledItem>
|
|
struct HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45 : 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_t023D2811E7684382723AD8745EA50FCD32EF8357* ____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.HashSet`1<UnityEngine.UIElements.VisualElement>
|
|
struct HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB : 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_t94CA178993B9FC71F63E131258D20773C4BC2048* ____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.IEventDispatchingStrategy>
|
|
struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* ____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.IGroupBoxOption>
|
|
struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC* ____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.Experimental.IValueAnimationUpdate>
|
|
struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
IValueAnimationUpdateU5BU5D_t250909B263EE1BB62A80F2449EAD3709E83C5C78* ____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.ManipulatorActivationFilter>
|
|
struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7* ____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.ScheduledItem>
|
|
struct List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ScheduledItemU5BU5D_tF7CABE4BF771C4BD25E771C75FC8C2739F0FB41A* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ____items_1;
|
|
// System.Int32 System.Collections.Generic.List`1::_size
|
|
int32_t ____size_2;
|
|
// System.Int32 System.Collections.Generic.List`1::_version
|
|
int32_t ____version_3;
|
|
// System.Object System.Collections.Generic.List`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_4;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyId>
|
|
struct List_1_t365205E6BE687FCF41975C16741DD9C303C1C269 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ____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.FocusController/FocusedElement>
|
|
struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
FocusedElementU5BU5D_tE2EC8928994D7E368EC55BC3876976AAED693E58* ____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.StylePropertyAnimationSystem/Values>
|
|
struct List_1_t491E344573B9D6F61E36AF56132B7412453928C9 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
ValuesU5BU5D_t5332999C48416329B2A447FCD8C71113DDB459EA* ____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.TemplateAsset/AttributeOverride>
|
|
struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
AttributeOverrideU5BU5D_t4D2E0B93EF3A1A1EB58AC1F48E6CFE20A0EA27E8* ____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.VisualElementFocusRing/FocusRingRecord>
|
|
struct List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.List`1::_items
|
|
FocusRingRecordU5BU5D_tEF4D674D6630E0BABDC146E3DA39D58EEE0056F6* ____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<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>
|
|
struct ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.Stack`1<T> UnityEngine.UIElements.ObjectPool`1::m_Stack
|
|
Stack_1_t03CF116DF66BF3696E395233D45D668169D2D655* ___m_Stack_0;
|
|
// System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize
|
|
int32_t ___m_MaxSize_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.VisualElementFocusChangeTarget>
|
|
struct ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.Stack`1<T> UnityEngine.UIElements.ObjectPool`1::m_Stack
|
|
Stack_1_tED2C2A36F6C3F66D1AE3ECC4B99177D661C08F11* ___m_Stack_0;
|
|
// System.Int32 UnityEngine.UIElements.ObjectPool`1::m_MaxSize
|
|
int32_t ___m_MaxSize_1;
|
|
};
|
|
|
|
// System.Collections.Generic.Queue`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Queue`1::_array
|
|
__Il2CppFullySharedGenericTypeU5BU5D_tCAB6D060972DD49223A834B7EEFEB9FE2D003BEC* ____array_0;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_head
|
|
int32_t ____head_1;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_tail
|
|
int32_t ____tail_2;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_size
|
|
int32_t ____size_3;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_version
|
|
int32_t ____version_4;
|
|
// System.Object System.Collections.Generic.Queue`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_5;
|
|
};
|
|
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
|
|
struct Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68 : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Queue`1::_array
|
|
EventRecordU5BU5D_tB7CC04280192D9B2B4980F107F93ABBBE4E4DCA8* ____array_0;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_head
|
|
int32_t ____head_1;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_tail
|
|
int32_t ____tail_2;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_size
|
|
int32_t ____size_3;
|
|
// System.Int32 System.Collections.Generic.Queue`1::_version
|
|
int32_t ____version_4;
|
|
// System.Object System.Collections.Generic.Queue`1::_syncRoot
|
|
RuntimeObject* ____syncRoot_5;
|
|
};
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>
|
|
struct Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C : public RuntimeObject
|
|
{
|
|
// T[] System.Collections.Generic.Stack`1::_array
|
|
DispatchContextU5BU5D_t23932F8BEADFC827A9CA5636867F6721AD971757* ____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.BindableElement,UnityEngine.UIElements.BindableElement/UxmlTraits>
|
|
struct UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A : public RuntimeObject
|
|
{
|
|
// TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits
|
|
UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172* ___m_Traits_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.IMGUIContainer,UnityEngine.UIElements.IMGUIContainer/UxmlTraits>
|
|
struct UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF : public RuntimeObject
|
|
{
|
|
// TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits
|
|
UxmlTraits_tC22B794B5E43920F0989281BB88F1F4115575065* ___m_Traits_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TemplateContainer,UnityEngine.UIElements.TemplateContainer/UxmlTraits>
|
|
struct UxmlFactory_2_t8EB039498EE25D0F0B57B0E86AFC4B4F1F0C5933 : public RuntimeObject
|
|
{
|
|
// TTraits UnityEngine.UIElements.UxmlFactory`2::m_Traits
|
|
UxmlTraits_t0D8AB59C52341D77460AC5A03B477ED2C6A05AB6* ___m_Traits_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.BaseVisualTreeUpdater
|
|
struct BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41 : public RuntimeObject
|
|
{
|
|
// System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel> UnityEngine.UIElements.BaseVisualTreeUpdater::panelChanged
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___panelChanged_0;
|
|
// UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.BaseVisualTreeUpdater::m_Panel
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___m_Panel_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
struct CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.EventCallbackRegistry UnityEngine.UIElements.CallbackEventHandler::m_CallbackRegistry
|
|
EventCallbackRegistry_tE18297C3F7E535BD82EDA83EC6D6DAA386226B85* ___m_CallbackRegistry_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ClickDetector
|
|
struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ClickDetector/ButtonClickStatus> UnityEngine.UIElements.ClickDetector::m_ClickStatus
|
|
List_1_tBDD12EAD3C5C46706730C230F223EE020C6822D6* ___m_ClickStatus_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
struct CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
struct DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.DefaultGroupManager
|
|
struct DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption> UnityEngine.UIElements.DefaultGroupManager::m_GroupOptions
|
|
List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* ___m_GroupOptions_0;
|
|
// UnityEngine.UIElements.IGroupBoxOption UnityEngine.UIElements.DefaultGroupManager::m_SelectedOption
|
|
RuntimeObject* ___m_SelectedOption_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.DisposeHelper
|
|
struct DisposeHelper_t1CE13FCB89031DE17CE206D1286AEB8A93ED43E4 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.DropdownUtility
|
|
struct DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.ClickDetector UnityEngine.UIElements.EventDispatcher::m_ClickDetector
|
|
ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* ___m_ClickDetector_0;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventDispatchingStrategy> UnityEngine.UIElements.EventDispatcher::m_DispatchingStrategies
|
|
List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* ___m_DispatchingStrategies_1;
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord> UnityEngine.UIElements.EventDispatcher::m_Queue
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_3;
|
|
// UnityEngine.UIElements.PointerDispatchState UnityEngine.UIElements.EventDispatcher::<pointerState>k__BackingField
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* ___U3CpointerStateU3Ek__BackingField_4;
|
|
// System.UInt32 UnityEngine.UIElements.EventDispatcher::m_GateCount
|
|
uint32_t ___m_GateCount_5;
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext> UnityEngine.UIElements.EventDispatcher::m_DispatchContexts
|
|
Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C* ___m_DispatchContexts_6;
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcher::m_Immediate
|
|
bool ___m_Immediate_8;
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcher::<processingEvents>k__BackingField
|
|
bool ___U3CprocessingEventsU3Ek__BackingField_9;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusChangeDirection
|
|
struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF : public RuntimeObject
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.FocusChangeDirection::m_Value
|
|
int32_t ___m_Value_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
struct FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.IFocusRing UnityEngine.UIElements.FocusController::<focusRing>k__BackingField
|
|
RuntimeObject* ___U3CfocusRingU3Ek__BackingField_0;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement> UnityEngine.UIElements.FocusController::m_FocusedElements
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ___m_FocusedElements_1;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastFocusedElement
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastFocusedElement_2;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::m_LastPendingFocusedElement
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_LastPendingFocusedElement_3;
|
|
// System.Int32 UnityEngine.UIElements.FocusController::m_PendingFocusCount
|
|
int32_t ___m_PendingFocusCount_4;
|
|
// System.Int32 UnityEngine.UIElements.FocusController::<imguiKeyboardControl>k__BackingField
|
|
int32_t ___U3CimguiKeyboardControlU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
struct IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
struct KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.Manipulator
|
|
struct Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Manipulator::m_Target
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Target_0;
|
|
};
|
|
|
|
// System.Reflection.MemberInfo
|
|
struct MemberInfo_t : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.MeshBuilder
|
|
struct MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContext
|
|
struct MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.IStylePainter UnityEngine.UIElements.MeshGenerationContext::painter
|
|
RuntimeObject* ___painter_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
struct MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
struct MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
struct PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerCaptureHelper
|
|
struct PointerCaptureHelper_tFF289BA2021DBFF9F7AC6E1B043C876DDFAE233B : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerDispatchState
|
|
struct PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.IEventHandler[] UnityEngine.UIElements.PointerDispatchState::m_PendingPointerCapture
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PendingPointerCapture_0;
|
|
// UnityEngine.UIElements.IEventHandler[] UnityEngine.UIElements.PointerDispatchState::m_PointerCapture
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* ___m_PointerCapture_1;
|
|
// System.Boolean[] UnityEngine.UIElements.PointerDispatchState::m_ShouldSendCompatibilityMouseEvents
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* ___m_ShouldSendCompatibilityMouseEvents_2;
|
|
};
|
|
|
|
// 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.ScheduledItem
|
|
struct ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0 : public RuntimeObject
|
|
{
|
|
// System.Func`1<System.Boolean> UnityEngine.UIElements.ScheduledItem::timerUpdateStopCondition
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___timerUpdateStopCondition_0;
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::<startMs>k__BackingField
|
|
int64_t ___U3CstartMsU3Ek__BackingField_3;
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::<delayMs>k__BackingField
|
|
int64_t ___U3CdelayMsU3Ek__BackingField_4;
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::<intervalMs>k__BackingField
|
|
int64_t ___U3CintervalMsU3Ek__BackingField_5;
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::<endTimeMs>k__BackingField
|
|
int64_t ___U3CendTimeMsU3Ek__BackingField_6;
|
|
};
|
|
|
|
// System.String
|
|
struct String_t : public RuntimeObject
|
|
{
|
|
// System.Int32 System.String::_stringLength
|
|
int32_t ____stringLength_4;
|
|
// System.Char System.String::_firstChar
|
|
Il2CppChar ____firstChar_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem
|
|
struct StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718 : public RuntimeObject
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat UnityEngine.UIElements.StylePropertyAnimationSystem::m_Floats
|
|
ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* ___m_Floats_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt UnityEngine.UIElements.StylePropertyAnimationSystem::m_Ints
|
|
ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* ___m_Ints_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength UnityEngine.UIElements.StylePropertyAnimationSystem::m_Lengths
|
|
ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* ___m_Lengths_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor UnityEngine.UIElements.StylePropertyAnimationSystem::m_Colors
|
|
ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* ___m_Colors_4;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground UnityEngine.UIElements.StylePropertyAnimationSystem::m_Backgrounds
|
|
ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* ___m_Backgrounds_5;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition UnityEngine.UIElements.StylePropertyAnimationSystem::m_FontDefinitions
|
|
ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* ___m_FontDefinitions_6;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont UnityEngine.UIElements.StylePropertyAnimationSystem::m_Fonts
|
|
ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* ___m_Fonts_7;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow UnityEngine.UIElements.StylePropertyAnimationSystem::m_TextShadows
|
|
ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* ___m_TextShadows_8;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale UnityEngine.UIElements.StylePropertyAnimationSystem::m_Scale
|
|
ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* ___m_Scale_9;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate UnityEngine.UIElements.StylePropertyAnimationSystem::m_Rotate
|
|
ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* ___m_Rotate_10;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate UnityEngine.UIElements.StylePropertyAnimationSystem::m_Translate
|
|
ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* ___m_Translate_11;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin UnityEngine.UIElements.StylePropertyAnimationSystem::m_TransformOrigin
|
|
ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* ___m_TransformOrigin_12;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyAnimationSystem/Values> UnityEngine.UIElements.StylePropertyAnimationSystem::m_AllValues
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* ___m_AllValues_13;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values> UnityEngine.UIElements.StylePropertyAnimationSystem::m_PropertyToValues
|
|
Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* ___m_PropertyToValues_14;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TimerEventScheduler
|
|
struct TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem> UnityEngine.UIElements.TimerEventScheduler::m_ScheduledItems
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* ___m_ScheduledItems_0;
|
|
// System.Boolean UnityEngine.UIElements.TimerEventScheduler::m_TransactionMode
|
|
bool ___m_TransactionMode_1;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem> UnityEngine.UIElements.TimerEventScheduler::m_ScheduleTransactions
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* ___m_ScheduleTransactions_2;
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem> UnityEngine.UIElements.TimerEventScheduler::m_UnscheduleTransactions
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* ___m_UnscheduleTransactions_3;
|
|
// System.Boolean UnityEngine.UIElements.TimerEventScheduler::disableThrottling
|
|
bool ___disableThrottling_4;
|
|
// System.Int32 UnityEngine.UIElements.TimerEventScheduler::m_LastUpdatedIndex
|
|
int32_t ___m_LastUpdatedIndex_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIElementsPackageUtility
|
|
struct UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIElementsUtility
|
|
struct UIElementsUtility_t03323144D50362C6BF96652D3355728749769293 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// 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.VisualElementExtensions
|
|
struct VisualElementExtensions_t5F9CD76F92E7BD4E3F3B6FEF246057D6FEAF9A61 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementPanelActivator
|
|
struct VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.IVisualElementPanelActivatable UnityEngine.UIElements.VisualElementPanelActivator::m_Activatable
|
|
RuntimeObject* ___m_Activatable_0;
|
|
// System.Boolean UnityEngine.UIElements.VisualElementPanelActivator::<isActive>k__BackingField
|
|
bool ___U3CisActiveU3Ek__BackingField_1;
|
|
// System.Boolean UnityEngine.UIElements.VisualElementPanelActivator::<isDetaching>k__BackingField
|
|
bool ___U3CisDetachingU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdater
|
|
struct VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.VisualTreeUpdater::m_Panel
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___m_Panel_0;
|
|
// UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray UnityEngine.UIElements.VisualTreeUpdater::m_UpdaterArray
|
|
UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* ___m_UpdaterArray_1;
|
|
};
|
|
|
|
// UnityEngine.GUILayoutUtility/LayoutCache
|
|
struct LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60 : public RuntimeObject
|
|
{
|
|
// System.Int32 UnityEngine.GUILayoutUtility/LayoutCache::<id>k__BackingField
|
|
int32_t ___U3CidU3Ek__BackingField_0;
|
|
// UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility/LayoutCache::topLevel
|
|
GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D* ___topLevel_1;
|
|
// UnityEngineInternal.GenericStack UnityEngine.GUILayoutUtility/LayoutCache::layoutGroups
|
|
GenericStack_t1FB49AB7D847C97ABAA97AB232CA416CABD24C49* ___layoutGroups_2;
|
|
// UnityEngine.GUILayoutGroup UnityEngine.GUILayoutUtility/LayoutCache::windows
|
|
GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D* ___windows_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScheduledItem/<>c
|
|
struct U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values
|
|
struct Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24 : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/TypeData
|
|
struct TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A : public RuntimeObject
|
|
{
|
|
// System.Type UnityEngine.UIElements.VisualElement/TypeData::<type>k__BackingField
|
|
Type_t* ___U3CtypeU3Ek__BackingField_0;
|
|
// System.String UnityEngine.UIElements.VisualElement/TypeData::m_FullTypeName
|
|
String_t* ___m_FullTypeName_1;
|
|
// System.String UnityEngine.UIElements.VisualElement/TypeData::m_TypeName
|
|
String_t* ___m_TypeName_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord
|
|
struct FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D : public RuntimeObject
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_AutoIndex
|
|
int32_t ___m_AutoIndex_0;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_Focusable
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_Focusable_1;
|
|
// System.Boolean UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_IsSlot
|
|
bool ___m_IsSlot_2;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord> UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord::m_ScopeNavigationOrder
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___m_ScopeNavigationOrder_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray
|
|
struct UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.IVisualTreeUpdater[] UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray::m_VisualTreeUpdaters
|
|
IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8* ___m_VisualTreeUpdaters_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer
|
|
struct EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A : public RuntimeObject
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Background>,UnityEngine.UIElements.Background>
|
|
struct AnimationDataSet_2_t07C050B2EAC67E726A0EDE08E5279AEDE10CD2E1
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_t4FC6419C796BBADFEC77D9CB97A3FB7B1C6D5CB8* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
BackgroundU5BU5D_t29762095DD694E79A85A59135735FF02E54C4B46* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.Color>,UnityEngine.Color>
|
|
struct AnimationDataSet_2_t5C2C52995428480EE498ED27BBDAFCCE55045703
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_tDFE3104887D7AEB406BC646123D7C8AA698EB58A* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
ColorU5BU5D_t612261CF293F6FFC3D80AB52259FF0DC2B2CC389* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.Font>,UnityEngine.Font>
|
|
struct AnimationDataSet_2_t92FCAA6D89846E7F4BBF5F806D25FD218AD2DF9D
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_t024015F2FF2FC69854D9FD05CE50190B4B1F3A64* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
FontU5BU5D_t418554EC037A82050D1E53593D5B2A8C395054F3* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.FontDefinition>,UnityEngine.UIElements.FontDefinition>
|
|
struct AnimationDataSet_2_t484294514C51AC5E0E440CDA5AF2A1043C53E0FC
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_t568C72D6625FA05F854FF86F02910C531D98B72E* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
FontDefinitionU5BU5D_t31BDC3E2D72918B36F815F95F7CBA1F057E3DA39* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<System.Int32>,System.Int32>
|
|
struct AnimationDataSet_2_t4DB9D41C1AF8039FC6D44B76F29446F2BEC85A14
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_t920355EC41DECEE4E1D5688CEA971923802FC9A3* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
Int32U5BU5D_t19C97395396A72ECAF310612F0760F165060314C* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Length>,UnityEngine.UIElements.Length>
|
|
struct AnimationDataSet_2_tC6CE5153E3EAA98BB106BC6F00B2A9DE6FD23D69
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_tE2C14BF5968870FDDD993014F93FDE3FC5572837* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
LengthU5BU5D_t6E92E14664BA86924824C32A0BBE10AEC53C7FAE* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Rotate>,UnityEngine.UIElements.Rotate>
|
|
struct AnimationDataSet_2_tC89D9008D3FFA8DFDC3145842EFEC11F9D8EBEAC
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_t4EA7859B72A26B20006E0BD02EC63611C4C71485* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
RotateU5BU5D_tD482C518713DEC5763C34C827A9B6DB565776772* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Scale>,UnityEngine.UIElements.Scale>
|
|
struct AnimationDataSet_2_tF4CF89DB617BD2ACE24400B864B2FB32EADB9D04
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_tF2D26ADE6FCC1E97FB2FFC1DC56D63F08E711A3C* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
ScaleU5BU5D_tE608175710457D7343DD849244BF59B58157F0EF* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<System.Single>,System.Single>
|
|
struct AnimationDataSet_2_t37FCD741F1DDE73FBF7D33FB969BB39D5F0EB530
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_t60D6EDC5438323017497721F3A8E4A0376F2B741* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.TextShadow>,UnityEngine.UIElements.TextShadow>
|
|
struct AnimationDataSet_2_t41E105586D98932D715A57A47A3E21B5C3A7B340
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_t8EE2FFAAC9B7C301CF4690109183A2EFDFC5A20F* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
TextShadowU5BU5D_tF37C87EBD3D8745BEDABCE2EA499DE16C15B5D8C* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.TransformOrigin>,UnityEngine.UIElements.TransformOrigin>
|
|
struct AnimationDataSet_2_t4532152E7A78B3E14F61FA9CA7C80BC1C3269D33
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_tB3A736D4DE7E747B7C1B6CA7B36EB41FA6207653* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
TransformOriginU5BU5D_t0BDBC9C8F1888009152284DC2903B3C289F826DA* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<UnityEngine.UIElements.Translate>,UnityEngine.UIElements.Translate>
|
|
struct AnimationDataSet_2_t9D395E96FBE02DA4D17B2E175F9B5C297C1BBAA8
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
EmptyDataU5BU5D_tFD0240910F0FF75CC94A141EDE346043BD9C179C* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
TranslateU5BU5D_t9199DFD72A8EC5FA4C33D75E5F85242F9F97E358* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Background>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>>
|
|
struct AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t0DDECCB612303E94B577E5978AB4B36B5192AFB1* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>>
|
|
struct AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Font>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>>
|
|
struct AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t7D21FA13314B030338650732321EC6B9E93FF0F6* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.FontDefinition>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>>
|
|
struct AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t45DAD27FEA03547B7581715461816FA37E7EC651* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>>
|
|
struct AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>>
|
|
struct AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>>
|
|
struct AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>>
|
|
struct AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>>
|
|
struct AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>>
|
|
struct AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>>
|
|
struct AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>>
|
|
struct AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880
|
|
{
|
|
// UnityEngine.UIElements.VisualElement[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::elements
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* ___elements_0;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::properties
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___properties_1;
|
|
// TTimingData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::timing
|
|
TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3* ___timing_2;
|
|
// TStyleData[] UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::style
|
|
StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822* ___style_3;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::count
|
|
int32_t ___count_4;
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,System.Int32> UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2::indices
|
|
Dictionary_2_tF099D849028F7351B6B99091102D4A3417711574* ___indices_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
struct Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* ____list_0;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.List`1/Enumerator::_current
|
|
RuntimeObject* ____current_3;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.IGroupBoxOption>
|
|
struct Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* ____list_0;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.List`1/Enumerator::_current
|
|
RuntimeObject* ____current_3;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ____list_0;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.List`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.List`1/Enumerator::_current
|
|
RuntimeObject* ____current_3;
|
|
};
|
|
|
|
// System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UIElements.ScheduledItem>
|
|
struct Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393
|
|
{
|
|
// System.Collections.Generic.HashSet`1<T> System.Collections.Generic.HashSet`1/Enumerator::_set
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* ____set_0;
|
|
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_index
|
|
int32_t ____index_1;
|
|
// System.Int32 System.Collections.Generic.HashSet`1/Enumerator::_version
|
|
int32_t ____version_2;
|
|
// T System.Collections.Generic.HashSet`1/Enumerator::_current
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ____current_3;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.ScheduledItem>
|
|
struct Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* ____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
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ____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.HashSet`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
typedef Il2CppFullySharedGenericStruct Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB;
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
typedef Il2CppFullySharedGenericStruct Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF;
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
struct Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* ____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
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* ____current_3;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
struct Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ____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
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ____current_3;
|
|
};
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
struct Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01
|
|
{
|
|
// System.Boolean System.Nullable`1::hasValue
|
|
bool ___hasValue_0;
|
|
// T System.Nullable`1::value
|
|
bool ___value_1;
|
|
};
|
|
|
|
// System.Nullable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>
|
|
typedef Il2CppFullySharedGenericStruct Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339;
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>
|
|
struct StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>
|
|
struct StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
int32_t ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
int32_t ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
int32_t ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
int32_t ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>
|
|
struct StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
float ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
float ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
float ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
float ___currentValue_3;
|
|
};
|
|
|
|
// 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.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>
|
|
struct TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>
|
|
struct TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>
|
|
struct TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>
|
|
struct TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>
|
|
struct TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>
|
|
struct TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>
|
|
struct TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>
|
|
struct TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>
|
|
struct TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::startTimeMs
|
|
int64_t ___startTimeMs_0;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::durationMs
|
|
int32_t ___durationMs_1;
|
|
// System.Func`2<System.Single,System.Single> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easingCurve
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___easingCurve_2;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::easedProgress
|
|
float ___easedProgress_3;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::reversingShorteningFactor
|
|
float ___reversingShorteningFactor_4;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::isStarted
|
|
bool ___isStarted_5;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData::delayMs
|
|
int32_t ___delayMs_6;
|
|
};
|
|
|
|
// 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.Double
|
|
struct Double_tE150EF3D1D43DEE85D533810AB4C742307EEDE5F
|
|
{
|
|
// System.Double System.Double::m_value
|
|
double ___m_value_0;
|
|
};
|
|
|
|
// 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.EventDebuggerLogIMGUICall
|
|
struct EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcherGate
|
|
struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097
|
|
{
|
|
// UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.EventDispatcherGate::m_Dispatcher
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcherGate
|
|
struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_pinvoke
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcherGate
|
|
struct EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_com
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___m_Dispatcher_0;
|
|
};
|
|
|
|
// UnityEngine.EventInterests
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8
|
|
{
|
|
// System.Boolean UnityEngine.EventInterests::<wantsMouseMove>k__BackingField
|
|
bool ___U3CwantsMouseMoveU3Ek__BackingField_0;
|
|
// System.Boolean UnityEngine.EventInterests::<wantsMouseEnterLeaveWindow>k__BackingField
|
|
bool ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1;
|
|
// System.Boolean UnityEngine.EventInterests::<wantsLessLayoutEvents>k__BackingField
|
|
bool ___U3CwantsLessLayoutEventsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.EventInterests
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_pinvoke
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.EventInterests
|
|
struct EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8_marshaled_com
|
|
{
|
|
int32_t ___U3CwantsMouseMoveU3Ek__BackingField_0;
|
|
int32_t ___U3CwantsMouseEnterLeaveWindowU3Ek__BackingField_1;
|
|
int32_t ___U3CwantsLessLayoutEventsU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.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.Mathf
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.Matrix4x4
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6
|
|
{
|
|
// System.Single UnityEngine.Matrix4x4::m00
|
|
float ___m00_0;
|
|
// System.Single UnityEngine.Matrix4x4::m10
|
|
float ___m10_1;
|
|
// System.Single UnityEngine.Matrix4x4::m20
|
|
float ___m20_2;
|
|
// System.Single UnityEngine.Matrix4x4::m30
|
|
float ___m30_3;
|
|
// System.Single UnityEngine.Matrix4x4::m01
|
|
float ___m01_4;
|
|
// System.Single UnityEngine.Matrix4x4::m11
|
|
float ___m11_5;
|
|
// System.Single UnityEngine.Matrix4x4::m21
|
|
float ___m21_6;
|
|
// System.Single UnityEngine.Matrix4x4::m31
|
|
float ___m31_7;
|
|
// System.Single UnityEngine.Matrix4x4::m02
|
|
float ___m02_8;
|
|
// System.Single UnityEngine.Matrix4x4::m12
|
|
float ___m12_9;
|
|
// System.Single UnityEngine.Matrix4x4::m22
|
|
float ___m22_10;
|
|
// System.Single UnityEngine.Matrix4x4::m32
|
|
float ___m32_11;
|
|
// System.Single UnityEngine.Matrix4x4::m03
|
|
float ___m03_12;
|
|
// System.Single UnityEngine.Matrix4x4::m13
|
|
float ___m13_13;
|
|
// System.Single UnityEngine.Matrix4x4::m23
|
|
float ___m23_14;
|
|
// System.Single UnityEngine.Matrix4x4::m33
|
|
float ___m33_15;
|
|
};
|
|
|
|
// UnityEngine.PropertyName
|
|
struct PropertyName_tE4B4AAA58AF3BF2C0CD95509EB7B786F096901C2
|
|
{
|
|
// System.Int32 UnityEngine.PropertyName::id
|
|
int32_t ___id_0;
|
|
};
|
|
|
|
// UnityEngine.Rect
|
|
struct Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D
|
|
{
|
|
// System.Single UnityEngine.Rect::m_XMin
|
|
float ___m_XMin_0;
|
|
// System.Single UnityEngine.Rect::m_YMin
|
|
float ___m_YMin_1;
|
|
// System.Single UnityEngine.Rect::m_Width
|
|
float ___m_Width_2;
|
|
// System.Single UnityEngine.Rect::m_Height
|
|
float ___m_Height_3;
|
|
};
|
|
|
|
// System.Single
|
|
struct Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C
|
|
{
|
|
// System.Single System.Single::m_value
|
|
float ___m_value_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Spacing
|
|
struct Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E
|
|
{
|
|
// System.Single UnityEngine.UIElements.Spacing::left
|
|
float ___left_0;
|
|
// System.Single UnityEngine.UIElements.Spacing::top
|
|
float ___top_1;
|
|
// System.Single UnityEngine.UIElements.Spacing::right
|
|
float ___right_2;
|
|
// System.Single UnityEngine.UIElements.Spacing::bottom
|
|
float ___bottom_3;
|
|
};
|
|
|
|
// 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.TimerState
|
|
struct TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.TimerState::<start>k__BackingField
|
|
int64_t ___U3CstartU3Ek__BackingField_0;
|
|
// System.Int64 UnityEngine.UIElements.TimerState::<now>k__BackingField
|
|
int64_t ___U3CnowU3Ek__BackingField_1;
|
|
};
|
|
|
|
// System.UInt16
|
|
struct UInt16_tF4C148C876015C212FD72652D0B6ED8CC247A455
|
|
{
|
|
// System.UInt16 System.UInt16::m_value
|
|
uint16_t ___m_value_0;
|
|
};
|
|
|
|
// System.UInt32
|
|
struct UInt32_t1833D51FFA667B18A5AA4B8D34DE284F8495D29B
|
|
{
|
|
// System.UInt32 System.UInt32::m_value
|
|
uint32_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.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;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementAnimationSystem
|
|
struct VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7 : public BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41
|
|
{
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate> UnityEngine.UIElements.VisualElementAnimationSystem::m_Animations
|
|
HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* ___m_Animations_2;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate> UnityEngine.UIElements.VisualElementAnimationSystem::m_IterationList
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ___m_IterationList_3;
|
|
// System.Boolean UnityEngine.UIElements.VisualElementAnimationSystem::m_HasNewAnimations
|
|
bool ___m_HasNewAnimations_4;
|
|
// System.Boolean UnityEngine.UIElements.VisualElementAnimationSystem::m_IterationListDirty
|
|
bool ___m_IterationListDirty_5;
|
|
// System.Int64 UnityEngine.UIElements.VisualElementAnimationSystem::lastUpdate
|
|
int64_t ___lastUpdate_10;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusChangeDirection
|
|
struct VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C : public FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusChangeTarget
|
|
struct VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD : public FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusChangeTarget::<target>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CtargetU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualTreeViewDataUpdater
|
|
struct VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986 : public BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41
|
|
{
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.VisualTreeViewDataUpdater::m_UpdateList
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* ___m_UpdateList_2;
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.VisualTreeViewDataUpdater::m_ParentList
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* ___m_ParentList_3;
|
|
// System.UInt32 UnityEngine.UIElements.VisualTreeViewDataUpdater::m_Version
|
|
uint32_t ___m_Version_4;
|
|
// System.UInt32 UnityEngine.UIElements.VisualTreeViewDataUpdater::m_LastVersion
|
|
uint32_t ___m_LastVersion_5;
|
|
};
|
|
|
|
// System.Void
|
|
struct Void_t4861ACF8F4594C3437BB48B6E56783494B843915
|
|
{
|
|
union
|
|
{
|
|
struct
|
|
{
|
|
};
|
|
uint8_t Void_t4861ACF8F4594C3437BB48B6E56783494B843915__padding[1];
|
|
};
|
|
};
|
|
|
|
// UnityEngine.UIElements.BindableElement/UxmlFactory
|
|
struct UxmlFactory_t1DB561BFFA7E2E3836F7AB008BCE7B6119542F33 : public UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
struct DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455
|
|
{
|
|
// System.UInt32 UnityEngine.UIElements.EventDispatcher/DispatchContext::m_GateCount
|
|
uint32_t ___m_GateCount_0;
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord> UnityEngine.UIElements.EventDispatcher/DispatchContext::m_Queue
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
struct DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_pinvoke
|
|
{
|
|
uint32_t ___m_GateCount_0;
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
struct DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_com
|
|
{
|
|
uint32_t ___m_GateCount_0;
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___m_Queue_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
struct EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2
|
|
{
|
|
// UnityEngine.UIElements.EventBase UnityEngine.UIElements.EventDispatcher/EventRecord::m_Event
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___m_Event_0;
|
|
// UnityEngine.UIElements.IPanel UnityEngine.UIElements.EventDispatcher/EventRecord::m_Panel
|
|
RuntimeObject* ___m_Panel_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
struct EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_pinvoke
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___m_Event_0;
|
|
RuntimeObject* ___m_Panel_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
struct EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_com
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___m_Event_0;
|
|
RuntimeObject* ___m_Panel_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusController/FocusedElement
|
|
struct FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.FocusController/FocusedElement::m_SubTreeRoot
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_SubTreeRoot_0;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController/FocusedElement::m_FocusedElement
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_FocusedElement_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.FocusController/FocusedElement
|
|
struct FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_SubTreeRoot_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_FocusedElement_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.FocusController/FocusedElement
|
|
struct FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_SubTreeRoot_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___m_FocusedElement_1;
|
|
};
|
|
|
|
// UnityEngine.GUIClip/ParentClipScope
|
|
struct ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52
|
|
{
|
|
// System.Boolean UnityEngine.GUIClip/ParentClipScope::m_Disposed
|
|
bool ___m_Disposed_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.GUIClip/ParentClipScope
|
|
struct ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52_marshaled_pinvoke
|
|
{
|
|
int32_t ___m_Disposed_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.GUIClip/ParentClipScope
|
|
struct ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52_marshaled_com
|
|
{
|
|
int32_t ___m_Disposed_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/UxmlFactory
|
|
struct UxmlFactory_tF9683EC71E4F687E36692AD4C22A0F0A79BA5557 : public UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlFactory
|
|
struct UxmlFactory_t5721E550FC36B9FB25920C8A1BF3ED0690EAD095 : public UxmlFactory_2_t8EB039498EE25D0F0B57B0E86AFC4B4F1F0C5933
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement/Hierarchy::m_Owner
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_1;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.VisualElement/Hierarchy
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_1;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.VisualElement/Hierarchy
|
|
struct Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_Owner_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
struct UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B : public UxmlTraits_t3311A2EDB0705584A614B5511216DAD5279C4160
|
|
{
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Name
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Name_1;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_ViewDataKey
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_ViewDataKey_2;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.PickingMode> UnityEngine.UIElements.VisualElement/UxmlTraits::m_PickingMode
|
|
UxmlEnumAttributeDescription_1_tC4ABA6DF74F58C15F2597C1640A58CC16D9551B3* ___m_PickingMode_3;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Tooltip
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Tooltip_4;
|
|
// UnityEngine.UIElements.UxmlEnumAttributeDescription`1<UnityEngine.UIElements.UsageHints> UnityEngine.UIElements.VisualElement/UxmlTraits::m_UsageHints
|
|
UxmlEnumAttributeDescription_1_tBBB2CDD127ABE7FAC6ED7B5CA5A3911FF0AF7CE4* ___m_UsageHints_5;
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::<focusIndex>k__BackingField
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___U3CfocusIndexU3Ek__BackingField_6;
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_TabIndex
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* ___m_TabIndex_7;
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::<focusable>k__BackingField
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* ___U3CfocusableU3Ek__BackingField_8;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Class
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Class_9;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_ContentContainer
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_ContentContainer_10;
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::m_Style
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Style_11;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.FocusController/FocusedElement>
|
|
struct Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* ____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
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF ____current_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>
|
|
struct StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>
|
|
struct StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>
|
|
struct StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Background>
|
|
struct Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_tE3B03C5A4D3A9B62395A67012747638ADE7B8D2D* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_tE3B03C5A4D3A9B62395A67012747638ADE7B8D2D* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50 ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t07C050B2EAC67E726A0EDE08E5279AEDE10CD2E1 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Color>
|
|
struct Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_tC1DACCA9274641DD267223338E7C026D4CF520AC* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_tC1DACCA9274641DD267223338E7C026D4CF520AC* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t5C2C52995428480EE498ED27BBDAFCCE55045703 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Font>
|
|
struct Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t31FA216B798ED8FA3490C3CA515528DCA4F26A2C* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t31FA216B798ED8FA3490C3CA515528DCA4F26A2C* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t92FCAA6D89846E7F4BBF5F806D25FD218AD2DF9D ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.FontDefinition>
|
|
struct Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t2B8264420B693D76C74F99F305197870C62C10F4* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t2B8264420B693D76C74F99F305197870C62C10F4* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t484294514C51AC5E0E440CDA5AF2A1043C53E0FC ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Int32>
|
|
struct Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_tC8FEB488506DC99B874A454BED371793598879E9* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_tC8FEB488506DC99B874A454BED371793598879E9* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t4DB9D41C1AF8039FC6D44B76F29446F2BEC85A14 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Length>
|
|
struct Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_tFBFEC4A6BE1900A8D6115CD438F3CCC15A0DBCE9* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_tFBFEC4A6BE1900A8D6115CD438F3CCC15A0DBCE9* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0 ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_tC6CE5153E3EAA98BB106BC6F00B2A9DE6FD23D69 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Rotate>
|
|
struct Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t9DC16C7535A4271EA0FD763A64CD7CF84670EC64* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t9DC16C7535A4271EA0FD763A64CD7CF84670EC64* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_tC89D9008D3FFA8DFDC3145842EFEC11F9D8EBEAC ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Scale>
|
|
struct Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t25D5D3420391A40A0B978B0D5CA13F775283274E* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t25D5D3420391A40A0B978B0D5CA13F775283274E* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_tF4CF89DB617BD2ACE24400B864B2FB32EADB9D04 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Single>
|
|
struct Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t864A52D0F7726A4F4C2C667BCB56E8A745F7340C* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t864A52D0F7726A4F4C2C667BCB56E8A745F7340C* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32 ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t37FCD741F1DDE73FBF7D33FB969BB39D5F0EB530 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TextShadow>
|
|
struct Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t896507B4A758D8F131A06984765BA0F57C8939A2* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t896507B4A758D8F131A06984765BA0F57C8939A2* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437 ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t41E105586D98932D715A57A47A3E21B5C3A7B340 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TransformOrigin>
|
|
struct Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t7FB3FD474018D429F5F1EE705EF9ADA6F197EDEF* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t7FB3FD474018D429F5F1EE705EF9ADA6F197EDEF* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513 ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t4532152E7A78B3E14F61FA9CA7C80BC1C3269D33 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Translate>
|
|
struct Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215 : public Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24
|
|
{
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentTimeMs
|
|
int64_t ___m_CurrentTimeMs_0;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_CurrentFrameEventsState
|
|
TransitionEventsFrameState_t3F9A8EB2B33780D3F2037BFEED0A3C6A03B03FEC* ___m_CurrentFrameEventsState_1;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TransitionEventsFrameState<T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::m_NextFrameEventsState
|
|
TransitionEventsFrameState_t3F9A8EB2B33780D3F2037BFEED0A3C6A03B03FEC* ___m_NextFrameEventsState_2;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<T>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<T>> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::running
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880 ___running_3;
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/EmptyData<T>,T> UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1::completed
|
|
AnimationDataSet_2_t9D395E96FBE02DA4D17B2E175F9B5C297C1BBAA8 ___completed_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.Align
|
|
struct Align_t293AAB5F8D4239F304F48DA84CAAB4071C78902C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.Align::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.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;
|
|
};
|
|
|
|
// 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.DispatchMode
|
|
struct DispatchMode_t19462FC6D47F5BF63B55FBDEB5C7D498D50DB3DC
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.DispatchMode::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// 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.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.GUILayoutEntry
|
|
struct GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F : public RuntimeObject
|
|
{
|
|
// System.Single UnityEngine.GUILayoutEntry::minWidth
|
|
float ___minWidth_0;
|
|
// System.Single UnityEngine.GUILayoutEntry::maxWidth
|
|
float ___maxWidth_1;
|
|
// System.Single UnityEngine.GUILayoutEntry::minHeight
|
|
float ___minHeight_2;
|
|
// System.Single UnityEngine.GUILayoutEntry::maxHeight
|
|
float ___maxHeight_3;
|
|
// UnityEngine.Rect UnityEngine.GUILayoutEntry::rect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_4;
|
|
// System.Int32 UnityEngine.GUILayoutEntry::stretchWidth
|
|
int32_t ___stretchWidth_5;
|
|
// System.Int32 UnityEngine.GUILayoutEntry::stretchHeight
|
|
int32_t ___stretchHeight_6;
|
|
// System.Boolean UnityEngine.GUILayoutEntry::consideredForMargin
|
|
bool ___consideredForMargin_7;
|
|
// UnityEngine.GUIStyle UnityEngine.GUILayoutEntry::m_Style
|
|
GUIStyle_t20BA2F9F3FE9D13AAA607EEEBE5547835A6F6580* ___m_Style_8;
|
|
};
|
|
|
|
// UnityEngine.UIElements.GenericDropdownMenu
|
|
struct GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1 : public RuntimeObject
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.GenericDropdownMenu/MenuItem> UnityEngine.UIElements.GenericDropdownMenu::m_Items
|
|
List_1_t61096569E456190C1D695A123917128C0E1FB932* ___m_Items_7;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_MenuContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_MenuContainer_8;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_OuterContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_OuterContainer_9;
|
|
// UnityEngine.UIElements.ScrollView UnityEngine.UIElements.GenericDropdownMenu::m_ScrollView
|
|
ScrollView_t7CE209084E084FAA0E8DF3CD8E3B8BB9EB27E8D9* ___m_ScrollView_10;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_PanelRootVisualContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_PanelRootVisualContainer_11;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.GenericDropdownMenu::m_TargetElement
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_TargetElement_12;
|
|
// UnityEngine.Rect UnityEngine.UIElements.GenericDropdownMenu::m_DesiredRect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___m_DesiredRect_13;
|
|
// UnityEngine.UIElements.KeyboardNavigationManipulator UnityEngine.UIElements.GenericDropdownMenu::m_NavigationManipulator
|
|
KeyboardNavigationManipulator_t7E9BA3568ADC1660C4E09B924ECD457E33B835B3* ___m_NavigationManipulator_14;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.GenericDropdownMenu::m_MousePosition
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___m_MousePosition_15;
|
|
};
|
|
|
|
// 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.LengthUnit
|
|
struct LengthUnit_t746199A94302055274F284E176E01D38EE8A669A
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.LengthUnit::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.MouseButton
|
|
struct MouseButton_tEF578B8F208D798E053BC320C29FCBB655E24454
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.MouseButton::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C : public RuntimeObject
|
|
{
|
|
// System.IntPtr UnityEngine.Object::m_CachedPtr
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
intptr_t ___m_CachedPtr_0;
|
|
};
|
|
|
|
// UnityEngine.ObjectGUIState
|
|
struct ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15 : public RuntimeObject
|
|
{
|
|
// System.IntPtr UnityEngine.ObjectGUIState::m_Ptr
|
|
intptr_t ___m_Ptr_0;
|
|
};
|
|
|
|
// 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;
|
|
};
|
|
|
|
// UnityEngine.UIElements.RepaintData
|
|
struct RepaintData_t90534752135661579EC254884F550545D001B5EA : public RuntimeObject
|
|
{
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.RepaintData::<currentOffset>k__BackingField
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___U3CcurrentOffsetU3Ek__BackingField_0;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.RepaintData::<mousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3CmousePositionU3Ek__BackingField_1;
|
|
// UnityEngine.Rect UnityEngine.UIElements.RepaintData::<currentWorldClip>k__BackingField
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___U3CcurrentWorldClipU3Ek__BackingField_2;
|
|
// UnityEngine.Event UnityEngine.UIElements.RepaintData::<repaintEvent>k__BackingField
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___U3CrepaintEventU3Ek__BackingField_3;
|
|
};
|
|
|
|
// 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.UIElements.StyleSheets.StylePropertyId
|
|
struct StylePropertyId_tA3B8A5213F5BA43F9C5443B27B165D744713BE69
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StyleSheets.StylePropertyId::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// 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.TransformOriginOffset
|
|
struct TransformOriginOffset_t026F521F682175D23489076487A5C3E088AE03DA
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.TransformOriginOffset::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TrickleDown
|
|
struct TrickleDown_t862EABE449B6C94F79F2B1D713990C35ABADDF38
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.TrickleDown::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VersionChangeType
|
|
struct VersionChangeType_t8D9A58D958CC211E9300168DC98D3F7DF67594C3
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VersionChangeType::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.VisualTreeUpdatePhase
|
|
struct VisualTreeUpdatePhase_t1EF45877A1796DC3991B9FF3A6AD762BE02DF67D
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VisualTreeUpdatePhase::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.BindableElement/UxmlTraits
|
|
struct UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172 : public UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B
|
|
{
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.BindableElement/UxmlTraits::m_PropertyPath
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_PropertyPath_12;
|
|
};
|
|
|
|
// 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.IMGUIContainer/UxmlTraits
|
|
struct UxmlTraits_tC22B794B5E43920F0989281BB88F1F4115575065 : public UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B
|
|
{
|
|
};
|
|
|
|
// 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.StylePropertyAnimationSystem/TransitionState
|
|
struct TransitionState_tA8D086878A2990914A87DC06EBFB2C25F1C65348
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/TransitionState::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription/Use
|
|
struct Use_tB32C57550EDF1A878B28A5BD90C918FFBD876670
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.UxmlAttributeDescription/Use::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/<>c__DisplayClass111_0
|
|
struct U3CU3Ec__DisplayClass111_0_t76B458C53303EA1CC0E04AC8296A1FD8BA59D9F4 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement/<>c__DisplayClass111_0::<>4__this
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___U3CU3E4__this_0;
|
|
// UnityEngine.UIElements.Experimental.StyleValues UnityEngine.UIElements.VisualElement/<>c__DisplayClass111_0::to
|
|
StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A ___to_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElement/MeasureMode
|
|
struct MeasureMode_t35F26AA967A10198AA0924BD26D23DA0D999BE53
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VisualElement/MeasureMode::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.VisualElementFocusRing/DefaultFocusOrder
|
|
struct DefaultFocusOrder_t9EEC8B5DF0685386B41519B150765DD4F7905090
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder::value__
|
|
int32_t ___value___2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>
|
|
struct StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>
|
|
struct StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.Background>
|
|
struct ValuesDiscrete_1_t63B8F92F4DAABF488DAEF85235D684338A5BF983 : public Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F
|
|
{
|
|
// System.Func`3<T,T,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1::<SameFunc>k__BackingField
|
|
Func_3_tE3C94684D6DF31A003FECCCBC631507046C81ECE* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.Font>
|
|
struct ValuesDiscrete_1_t3FE71D851C5B6AD9E518846FD0AE377C4FD977C8 : public Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E
|
|
{
|
|
// System.Func`3<T,T,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1::<SameFunc>k__BackingField
|
|
Func_3_t79BD8B3734A7771622ADCD860FFC589C81C058FA* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.FontDefinition>
|
|
struct ValuesDiscrete_1_tEEAF52293B68D5800CAC73A14E2C3B3B02E6C2B1 : public Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7
|
|
{
|
|
// System.Func`3<T,T,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1::<SameFunc>k__BackingField
|
|
Func_3_tAD7EE8FC165028B732FB7B83E71870F0B8E791E0* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// 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.CursorPositionStylePainterParameters
|
|
struct CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A
|
|
{
|
|
// UnityEngine.Rect UnityEngine.UIElements.CursorPositionStylePainterParameters::rect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
// System.String UnityEngine.UIElements.CursorPositionStylePainterParameters::text
|
|
String_t* ___text_1;
|
|
// UnityEngine.Font UnityEngine.UIElements.CursorPositionStylePainterParameters::font
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
// System.Int32 UnityEngine.UIElements.CursorPositionStylePainterParameters::fontSize
|
|
int32_t ___fontSize_3;
|
|
// UnityEngine.FontStyle UnityEngine.UIElements.CursorPositionStylePainterParameters::fontStyle
|
|
int32_t ___fontStyle_4;
|
|
// UnityEngine.TextAnchor UnityEngine.UIElements.CursorPositionStylePainterParameters::anchor
|
|
int32_t ___anchor_5;
|
|
// System.Single UnityEngine.UIElements.CursorPositionStylePainterParameters::wordWrapWidth
|
|
float ___wordWrapWidth_6;
|
|
// System.Boolean UnityEngine.UIElements.CursorPositionStylePainterParameters::richText
|
|
bool ___richText_7;
|
|
// System.Int32 UnityEngine.UIElements.CursorPositionStylePainterParameters::cursorIndex
|
|
int32_t ___cursorIndex_8;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
struct CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_pinvoke
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
char* ___text_1;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
int32_t ___fontSize_3;
|
|
int32_t ___fontStyle_4;
|
|
int32_t ___anchor_5;
|
|
float ___wordWrapWidth_6;
|
|
int32_t ___richText_7;
|
|
int32_t ___cursorIndex_8;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
struct CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_com
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___rect_0;
|
|
Il2CppChar* ___text_1;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_2;
|
|
int32_t ___fontSize_3;
|
|
int32_t ___fontStyle_4;
|
|
int32_t ___anchor_5;
|
|
float ___wordWrapWidth_6;
|
|
int32_t ___richText_7;
|
|
int32_t ___cursorIndex_8;
|
|
};
|
|
|
|
// 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.ExitGUIException
|
|
struct ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549 : public Exception_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6 : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
// UnityEngine.Font/FontTextureRebuildCallback UnityEngine.Font::m_FontTextureRebuildCallback
|
|
FontTextureRebuildCallback_t76D5E172DF8AA57E67763D453AAC40F0961D09B1* ___m_FontTextureRebuildCallback_5;
|
|
};
|
|
|
|
// UnityEngine.GUILayoutGroup
|
|
struct GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D : public GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.GUILayoutEntry> UnityEngine.GUILayoutGroup::entries
|
|
List_1_tA5BCD116CC751A5F35C7D3D7B96DC3A5D22B9C82* ___entries_11;
|
|
// System.Boolean UnityEngine.GUILayoutGroup::isVertical
|
|
bool ___isVertical_12;
|
|
// System.Boolean UnityEngine.GUILayoutGroup::resetCoords
|
|
bool ___resetCoords_13;
|
|
// System.Single UnityEngine.GUILayoutGroup::spacing
|
|
float ___spacing_14;
|
|
// System.Boolean UnityEngine.GUILayoutGroup::sameSize
|
|
bool ___sameSize_15;
|
|
// System.Boolean UnityEngine.GUILayoutGroup::isWindow
|
|
bool ___isWindow_16;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::windowID
|
|
int32_t ___windowID_17;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::m_Cursor
|
|
int32_t ___m_Cursor_18;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountX
|
|
int32_t ___m_StretchableCountX_19;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::m_StretchableCountY
|
|
int32_t ___m_StretchableCountY_20;
|
|
// System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedWidth
|
|
bool ___m_UserSpecifiedWidth_21;
|
|
// System.Boolean UnityEngine.GUILayoutGroup::m_UserSpecifiedHeight
|
|
bool ___m_UserSpecifiedHeight_22;
|
|
// System.Single UnityEngine.GUILayoutGroup::m_ChildMinWidth
|
|
float ___m_ChildMinWidth_23;
|
|
// System.Single UnityEngine.GUILayoutGroup::m_ChildMaxWidth
|
|
float ___m_ChildMaxWidth_24;
|
|
// System.Single UnityEngine.GUILayoutGroup::m_ChildMinHeight
|
|
float ___m_ChildMinHeight_25;
|
|
// System.Single UnityEngine.GUILayoutGroup::m_ChildMaxHeight
|
|
float ___m_ChildMaxHeight_26;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginLeft
|
|
int32_t ___m_MarginLeft_27;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginRight
|
|
int32_t ___m_MarginRight_28;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginTop
|
|
int32_t ___m_MarginTop_29;
|
|
// System.Int32 UnityEngine.GUILayoutGroup::m_MarginBottom
|
|
int32_t ___m_MarginBottom_30;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ImmediateModeException
|
|
struct ImmediateModeException_t7A6F44A9035C26E64FF8BCD4964F7189506F063D : public Exception_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.Length
|
|
struct Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256
|
|
{
|
|
// System.Single UnityEngine.UIElements.Length::m_Value
|
|
float ___m_Value_1;
|
|
// UnityEngine.UIElements.Length/Unit UnityEngine.UIElements.Length::m_Unit
|
|
int32_t ___m_Unit_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ManipulatorActivationFilter
|
|
struct ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81
|
|
{
|
|
// UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::<button>k__BackingField
|
|
int32_t ___U3CbuttonU3Ek__BackingField_0;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.ManipulatorActivationFilter::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_1;
|
|
// System.Int32 UnityEngine.UIElements.ManipulatorActivationFilter::<clickCount>k__BackingField
|
|
int32_t ___U3CclickCountU3Ek__BackingField_2;
|
|
};
|
|
|
|
// 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.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C
|
|
{
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_pinvoke : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_pinvoke
|
|
{
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.ScriptableObject
|
|
struct ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A_marshaled_com : public Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_marshaled_com
|
|
{
|
|
};
|
|
|
|
// System.SystemException
|
|
struct SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295 : public Exception_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.TextNativeSettings
|
|
struct TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062
|
|
{
|
|
// System.String UnityEngine.UIElements.TextNativeSettings::text
|
|
String_t* ___text_0;
|
|
// UnityEngine.Font UnityEngine.UIElements.TextNativeSettings::font
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_1;
|
|
// System.Int32 UnityEngine.UIElements.TextNativeSettings::size
|
|
int32_t ___size_2;
|
|
// System.Single UnityEngine.UIElements.TextNativeSettings::scaling
|
|
float ___scaling_3;
|
|
// UnityEngine.FontStyle UnityEngine.UIElements.TextNativeSettings::style
|
|
int32_t ___style_4;
|
|
// UnityEngine.Color UnityEngine.UIElements.TextNativeSettings::color
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_5;
|
|
// UnityEngine.TextAnchor UnityEngine.UIElements.TextNativeSettings::anchor
|
|
int32_t ___anchor_6;
|
|
// System.Boolean UnityEngine.UIElements.TextNativeSettings::wordWrap
|
|
bool ___wordWrap_7;
|
|
// System.Single UnityEngine.UIElements.TextNativeSettings::wordWrapWidth
|
|
float ___wordWrapWidth_8;
|
|
// System.Boolean UnityEngine.UIElements.TextNativeSettings::richText
|
|
bool ___richText_9;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.TextNativeSettings
|
|
struct TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062_marshaled_pinvoke
|
|
{
|
|
char* ___text_0;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_1;
|
|
int32_t ___size_2;
|
|
float ___scaling_3;
|
|
int32_t ___style_4;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_5;
|
|
int32_t ___anchor_6;
|
|
int32_t ___wordWrap_7;
|
|
float ___wordWrapWidth_8;
|
|
int32_t ___richText_9;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.TextNativeSettings
|
|
struct TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062_marshaled_com
|
|
{
|
|
Il2CppChar* ___text_0;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___font_1;
|
|
int32_t ___size_2;
|
|
float ___scaling_3;
|
|
int32_t ___style_4;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___color_5;
|
|
int32_t ___anchor_6;
|
|
int32_t ___wordWrap_7;
|
|
float ___wordWrapWidth_8;
|
|
int32_t ___richText_9;
|
|
};
|
|
|
|
// 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.VisualElementAsset
|
|
struct VisualElementAsset_t558B207D551F8C727D1CD0F443F7211D095C3FA9 : public RuntimeObject
|
|
{
|
|
// System.String UnityEngine.UIElements.VisualElementAsset::m_Name
|
|
String_t* ___m_Name_0;
|
|
// System.Int32 UnityEngine.UIElements.VisualElementAsset::m_Id
|
|
int32_t ___m_Id_1;
|
|
// System.Int32 UnityEngine.UIElements.VisualElementAsset::m_OrderInDocument
|
|
int32_t ___m_OrderInDocument_2;
|
|
// System.Int32 UnityEngine.UIElements.VisualElementAsset::m_ParentId
|
|
int32_t ___m_ParentId_3;
|
|
// System.Int32 UnityEngine.UIElements.VisualElementAsset::m_RuleIndex
|
|
int32_t ___m_RuleIndex_4;
|
|
// System.String UnityEngine.UIElements.VisualElementAsset::m_Text
|
|
String_t* ___m_Text_5;
|
|
// UnityEngine.UIElements.PickingMode UnityEngine.UIElements.VisualElementAsset::m_PickingMode
|
|
int32_t ___m_PickingMode_6;
|
|
// System.String UnityEngine.UIElements.VisualElementAsset::m_FullTypeName
|
|
String_t* ___m_FullTypeName_7;
|
|
// System.String[] UnityEngine.UIElements.VisualElementAsset::m_Classes
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___m_Classes_8;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.VisualElementAsset::m_StylesheetPaths
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_StylesheetPaths_9;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheet> UnityEngine.UIElements.VisualElementAsset::m_Stylesheets
|
|
List_1_tEA16F82F7871418E28EB6F551D77A8AD9F2E337F* ___m_Stylesheets_10;
|
|
// System.Collections.Generic.List`1<System.String> UnityEngine.UIElements.VisualElementAsset::m_Properties
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* ___m_Properties_11;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusRing
|
|
struct VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3 : public RuntimeObject
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElementFocusRing::root
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___root_0;
|
|
// UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder UnityEngine.UIElements.VisualElementFocusRing::<defaultFocusOrder>k__BackingField
|
|
int32_t ___U3CdefaultFocusOrderU3Ek__BackingField_1;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord> UnityEngine.UIElements.VisualElementFocusRing::m_FocusRing
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___m_FocusRing_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
struct ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair::element
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___element_1;
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair::property
|
|
int32_t ___property_2;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
struct ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___element_1;
|
|
int32_t ___property_2;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
struct ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___element_1;
|
|
int32_t ___property_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor
|
|
struct ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904 : public Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0
|
|
{
|
|
// System.Func`3<UnityEngine.Color,UnityEngine.Color,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::<SameFunc>k__BackingField
|
|
Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat
|
|
struct ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2 : public Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1
|
|
{
|
|
// System.Func`3<System.Single,System.Single,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::<SameFunc>k__BackingField
|
|
Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt
|
|
struct ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367 : public Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5
|
|
{
|
|
// System.Func`3<System.Int32,System.Int32,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::<SameFunc>k__BackingField
|
|
Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength
|
|
struct ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915 : public Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6
|
|
{
|
|
// System.Func`3<UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::<SameFunc>k__BackingField
|
|
Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate
|
|
struct ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63 : public Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F
|
|
{
|
|
// System.Func`3<UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::<SameFunc>k__BackingField
|
|
Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale
|
|
struct ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A : public Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714
|
|
{
|
|
// System.Func`3<UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::<SameFunc>k__BackingField
|
|
Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow
|
|
struct ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C : public Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C
|
|
{
|
|
// System.Func`3<UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::<SameFunc>k__BackingField
|
|
Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin
|
|
struct ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F : public Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5
|
|
{
|
|
// System.Func`3<UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::<SameFunc>k__BackingField
|
|
Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate
|
|
struct ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B : public Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215
|
|
{
|
|
// System.Func`3<UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::<SameFunc>k__BackingField
|
|
Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6* ___U3CSameFuncU3Ek__BackingField_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlTraits
|
|
struct UxmlTraits_t0D8AB59C52341D77460AC5A03B477ED2C6A05AB6 : public UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172
|
|
{
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription UnityEngine.UIElements.TemplateContainer/UxmlTraits::m_Template
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* ___m_Template_13;
|
|
};
|
|
|
|
// System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel>
|
|
struct Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<UnityEngine.UIElements.EventBase>
|
|
struct Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<UnityEngine.UIElements.MeshGenerationContext>
|
|
struct Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<UnityEngine.UIElements.TimerState>
|
|
struct Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Action_1_t923A20D1D4F6B55B2ED5AE21B90F1A0CE0450D99 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Comparison`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
struct Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.ManipulatorActivationFilter>
|
|
struct Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F
|
|
{
|
|
// System.Collections.Generic.List`1<T> System.Collections.Generic.List`1/Enumerator::_list
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* ____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
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 ____current_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.ChangeEvent`1<System.String>>
|
|
struct EventBase_1_t33D6716E83BF17EA5138727C96B99E25AAC8C67D : 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.BlurEvent>
|
|
struct EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.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.FocusEvent>
|
|
struct EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.FocusInEvent>
|
|
struct EventBase_1_t01A865DB5F1B17F837A1670705B7579323F76216 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.FocusOutEvent>
|
|
struct EventBase_1_tB1ABC1F6948DC48F8C711F9C36E4D0DC9F158F05 : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventBase_1_tCDEFDAD598AAC8D3B106EB41834C9619E903374E : public EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.EventBase`1::m_RefCount
|
|
int32_t ___m_RefCount_17;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.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.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.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.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.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.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
struct EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
struct EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
struct EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
struct EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseDownEvent>
|
|
struct EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
struct EventCallback_1_t074F374661507958319B62431E9384D959AA1B09 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>
|
|
struct EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
struct EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
struct EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
struct EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
struct EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
struct EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<System.Boolean>
|
|
struct Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<UnityEngine.UIElements.IGenericMenu>
|
|
struct Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
struct Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`2<System.Single,System.Single>
|
|
struct Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<UnityEngine.Color,UnityEngine.Color,System.Boolean>
|
|
struct Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<System.Int32,System.Int32,System.Boolean>
|
|
struct Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Boolean>
|
|
struct Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Boolean>
|
|
struct Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<System.Single,System.Single,System.Boolean>
|
|
struct Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Boolean>
|
|
struct Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>
|
|
struct StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___currentValue_3;
|
|
};
|
|
|
|
// 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<System.String>
|
|
struct TypedUxmlAttributeDescription_1_tD8728D2AC8F9232D2E6A83B327DC0258F2CEEFA2 : public UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2
|
|
{
|
|
// T UnityEngine.UIElements.TypedUxmlAttributeDescription`1::<defaultValue>k__BackingField
|
|
String_t* ___U3CdefaultValueU3Ek__BackingField_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<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;
|
|
};
|
|
|
|
// System.InvalidOperationException
|
|
struct InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseManipulator
|
|
struct MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D : public Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE
|
|
{
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter> UnityEngine.UIElements.MouseManipulator::<activators>k__BackingField
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* ___U3CactivatorsU3Ek__BackingField_1;
|
|
// UnityEngine.UIElements.ManipulatorActivationFilter UnityEngine.UIElements.MouseManipulator::m_currentActivator
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 ___m_currentActivator_2;
|
|
};
|
|
|
|
// System.NotSupportedException
|
|
struct NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A : public SystemException_tCC48D868298F4C0705279823E34B00F4FBDB7295
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.RenderChainVEData
|
|
struct RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847
|
|
{
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::prev
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prev_0;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::next
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___next_1;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::groupTransformAncestor
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___groupTransformAncestor_2;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::boneTransformAncestor
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___boneTransformAncestor_3;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::prevDirty
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevDirty_4;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::nextDirty
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextDirty_5;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::hierarchyDepth
|
|
int32_t ___hierarchyDepth_6;
|
|
// UnityEngine.UIElements.UIR.RenderDataDirtyTypes UnityEngine.UIElements.UIR.RenderChainVEData::dirtiedValues
|
|
int32_t ___dirtiedValues_7;
|
|
// System.UInt32 UnityEngine.UIElements.UIR.RenderChainVEData::dirtyID
|
|
uint32_t ___dirtyID_8;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::firstCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_9;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::lastCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastCommand_10;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::firstClosingCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstClosingCommand_11;
|
|
// UnityEngine.UIElements.UIR.RenderChainCommand UnityEngine.UIElements.UIR.RenderChainVEData::lastClosingCommand
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastClosingCommand_12;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::isInChain
|
|
bool ___isInChain_13;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::isHierarchyHidden
|
|
bool ___isHierarchyHidden_14;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::localFlipsWinding
|
|
bool ___localFlipsWinding_15;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::localTransformScaleZero
|
|
bool ___localTransformScaleZero_16;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::worldFlipsWinding
|
|
bool ___worldFlipsWinding_17;
|
|
// UnityEngine.UIElements.UIR.Implementation.ClipMethod UnityEngine.UIElements.UIR.RenderChainVEData::clipMethod
|
|
int32_t ___clipMethod_18;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::childrenStencilRef
|
|
int32_t ___childrenStencilRef_19;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::childrenMaskDepth
|
|
int32_t ___childrenMaskDepth_20;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::disableNudging
|
|
bool ___disableNudging_21;
|
|
// System.Boolean UnityEngine.UIElements.UIR.RenderChainVEData::usesLegacyText
|
|
bool ___usesLegacyText_22;
|
|
// UnityEngine.UIElements.UIR.MeshHandle UnityEngine.UIElements.UIR.RenderChainVEData::data
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___data_23;
|
|
// UnityEngine.UIElements.UIR.MeshHandle UnityEngine.UIElements.UIR.RenderChainVEData::closingData
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___closingData_24;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.UIR.RenderChainVEData::verticesSpace
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___verticesSpace_25;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::displacementUVStart
|
|
int32_t ___displacementUVStart_26;
|
|
// System.Int32 UnityEngine.UIElements.UIR.RenderChainVEData::displacementUVEnd
|
|
int32_t ___displacementUVEnd_27;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::transformID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___transformID_28;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::clipRectID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___clipRectID_29;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::opacityID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___opacityID_30;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::textCoreSettingsID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___textCoreSettingsID_31;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::backgroundColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___backgroundColorID_32;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderLeftColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderLeftColorID_33;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderTopColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderTopColorID_34;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderRightColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderRightColorID_35;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::borderBottomColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderBottomColorID_36;
|
|
// UnityEngine.UIElements.UIR.BMPAlloc UnityEngine.UIElements.UIR.RenderChainVEData::tintColorID
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___tintColorID_37;
|
|
// System.Single UnityEngine.UIElements.UIR.RenderChainVEData::compositeOpacity
|
|
float ___compositeOpacity_38;
|
|
// UnityEngine.Color UnityEngine.UIElements.UIR.RenderChainVEData::backgroundColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_39;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::prevText
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevText_40;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.UIR.RenderChainVEData::nextText
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextText_41;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.UIR.RenderChainTextEntry> UnityEngine.UIElements.UIR.RenderChainVEData::textEntries
|
|
List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC* ___textEntries_42;
|
|
// UnityEngine.UIElements.UIR.BasicNode`1<UnityEngine.UIElements.UIR.TextureEntry> UnityEngine.UIElements.UIR.RenderChainVEData::textures
|
|
BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB* ___textures_43;
|
|
};
|
|
// Native definition for P/Invoke marshalling of UnityEngine.UIElements.UIR.RenderChainVEData
|
|
struct RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847_marshaled_pinvoke
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prev_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___next_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___groupTransformAncestor_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___boneTransformAncestor_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevDirty_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextDirty_5;
|
|
int32_t ___hierarchyDepth_6;
|
|
int32_t ___dirtiedValues_7;
|
|
uint32_t ___dirtyID_8;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_9;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastCommand_10;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstClosingCommand_11;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastClosingCommand_12;
|
|
int32_t ___isInChain_13;
|
|
int32_t ___isHierarchyHidden_14;
|
|
int32_t ___localFlipsWinding_15;
|
|
int32_t ___localTransformScaleZero_16;
|
|
int32_t ___worldFlipsWinding_17;
|
|
int32_t ___clipMethod_18;
|
|
int32_t ___childrenStencilRef_19;
|
|
int32_t ___childrenMaskDepth_20;
|
|
int32_t ___disableNudging_21;
|
|
int32_t ___usesLegacyText_22;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___data_23;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___closingData_24;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___verticesSpace_25;
|
|
int32_t ___displacementUVStart_26;
|
|
int32_t ___displacementUVEnd_27;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___transformID_28;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___clipRectID_29;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___opacityID_30;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___textCoreSettingsID_31;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___backgroundColorID_32;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderLeftColorID_33;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderTopColorID_34;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderRightColorID_35;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderBottomColorID_36;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___tintColorID_37;
|
|
float ___compositeOpacity_38;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_39;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevText_40;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextText_41;
|
|
List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC* ___textEntries_42;
|
|
BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB* ___textures_43;
|
|
};
|
|
// Native definition for COM marshalling of UnityEngine.UIElements.UIR.RenderChainVEData
|
|
struct RenderChainVEData_t582DE9DA38C6B608A9A38286FCF6FA70398B5847_marshaled_com
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prev_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___next_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___groupTransformAncestor_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___boneTransformAncestor_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevDirty_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextDirty_5;
|
|
int32_t ___hierarchyDepth_6;
|
|
int32_t ___dirtiedValues_7;
|
|
uint32_t ___dirtyID_8;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstCommand_9;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastCommand_10;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___firstClosingCommand_11;
|
|
RenderChainCommand_t4F70E36AF4BC3645C8F9C822B7A3ACE9CB815727* ___lastClosingCommand_12;
|
|
int32_t ___isInChain_13;
|
|
int32_t ___isHierarchyHidden_14;
|
|
int32_t ___localFlipsWinding_15;
|
|
int32_t ___localTransformScaleZero_16;
|
|
int32_t ___worldFlipsWinding_17;
|
|
int32_t ___clipMethod_18;
|
|
int32_t ___childrenStencilRef_19;
|
|
int32_t ___childrenMaskDepth_20;
|
|
int32_t ___disableNudging_21;
|
|
int32_t ___usesLegacyText_22;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___data_23;
|
|
MeshHandle_tC1E9A7ECCFDAEFDE064B8D58B35B9CEE5A70A22E* ___closingData_24;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___verticesSpace_25;
|
|
int32_t ___displacementUVStart_26;
|
|
int32_t ___displacementUVEnd_27;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___transformID_28;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___clipRectID_29;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___opacityID_30;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___textCoreSettingsID_31;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___backgroundColorID_32;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderLeftColorID_33;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderTopColorID_34;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderRightColorID_35;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___borderBottomColorID_36;
|
|
BMPAlloc_t29DA9D09157B8BAD2D5643711A53A5F11D216D30 ___tintColorID_37;
|
|
float ___compositeOpacity_38;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___backgroundColor_39;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___prevText_40;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___nextText_41;
|
|
List_1_t3ADC2CEE608F7E0043EBE4FD425E6C9AE43E19CC* ___textEntries_42;
|
|
BasicNode_1_t7B4D545DCD6949B2E1C85D63DF038E44602F7DDB* ___textures_43;
|
|
};
|
|
|
|
// UnityEngine.UIElements.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.TemplateAsset
|
|
struct TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807 : public VisualElementAsset_t558B207D551F8C727D1CD0F443F7211D095C3FA9
|
|
{
|
|
// System.String UnityEngine.UIElements.TemplateAsset::m_TemplateAlias
|
|
String_t* ___m_TemplateAlias_12;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride> UnityEngine.UIElements.TemplateAsset::m_AttributeOverrides
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___m_AttributeOverrides_13;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualTreeAsset/SlotUsageEntry> UnityEngine.UIElements.TemplateAsset::m_SlotUsages
|
|
List_1_t10D8EC0B84DD3EDB54DA9AE6AF65B5AB50BA9D5A* ___m_SlotUsages_14;
|
|
};
|
|
|
|
// 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.VisualTreeAsset
|
|
struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB : public ScriptableObject_tB3BFDB921A1B1795B38A5417D3B97A89A140436A
|
|
{
|
|
// System.Boolean UnityEngine.UIElements.VisualTreeAsset::m_ImportedWithErrors
|
|
bool ___m_ImportedWithErrors_5;
|
|
// System.Boolean UnityEngine.UIElements.VisualTreeAsset::m_ImportedWithWarnings
|
|
bool ___m_ImportedWithWarnings_6;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualTreeAsset/UsingEntry> UnityEngine.UIElements.VisualTreeAsset::m_Usings
|
|
List_1_t3A511618E31C01BE3D1EA788ABB9AD6F354E8485* ___m_Usings_8;
|
|
// UnityEngine.UIElements.StyleSheet UnityEngine.UIElements.VisualTreeAsset::inlineSheet
|
|
StyleSheet_t6FAF43FCDB45BC6BED0522A222FD4C1A9BB10428* ___inlineSheet_9;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementAsset> UnityEngine.UIElements.VisualTreeAsset::m_VisualElementAssets
|
|
List_1_tA2DA9358299C5C3E2E66D546D9B0E9089C3D7DBE* ___m_VisualElementAssets_10;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset> UnityEngine.UIElements.VisualTreeAsset::m_TemplateAssets
|
|
List_1_t63B31A07921C5E19BCA9E85447E2260F37E3E777* ___m_TemplateAssets_11;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualTreeAsset/SlotDefinition> UnityEngine.UIElements.VisualTreeAsset::m_Slots
|
|
List_1_t70BBA01AC05569034FEB9847D92E5F046528FBAF* ___m_Slots_12;
|
|
// System.Int32 UnityEngine.UIElements.VisualTreeAsset::m_ContentContainerId
|
|
int32_t ___m_ContentContainerId_13;
|
|
// System.Int32 UnityEngine.UIElements.VisualTreeAsset::m_ContentHash
|
|
int32_t ___m_ContentHash_14;
|
|
};
|
|
|
|
// 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.StylePropertyAnimationSystem/ValuesBackground
|
|
struct ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34 : public ValuesDiscrete_1_t63B8F92F4DAABF488DAEF85235D684338A5BF983
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont
|
|
struct ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4 : public ValuesDiscrete_1_t3FE71D851C5B6AD9E518846FD0AE377C4FD977C8
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition
|
|
struct ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7 : public ValuesDiscrete_1_tEEAF52293B68D5800CAC73A14E2C3B3B02E6C2B1
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<System.String>
|
|
struct ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F : public EventBase_1_t33D6716E83BF17EA5138727C96B99E25AAC8C67D
|
|
{
|
|
// T UnityEngine.UIElements.ChangeEvent`1::<previousValue>k__BackingField
|
|
String_t* ___U3CpreviousValueU3Ek__BackingField_18;
|
|
// T UnityEngine.UIElements.ChangeEvent`1::<newValue>k__BackingField
|
|
String_t* ___U3CnewValueU3Ek__BackingField_19;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>
|
|
struct FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94 : public EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
struct FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A : public EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>
|
|
struct FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022 : public EventBase_1_t01A865DB5F1B17F837A1670705B7579323F76216
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>
|
|
struct FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2 : public EventBase_1_tB1ABC1F6948DC48F8C711F9C36E4D0DC9F158F05
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
struct FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8 : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusEventBase`1::<relatedTarget>k__BackingField
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___U3CrelatedTargetU3Ek__BackingField_18;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1::<direction>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CdirectionU3Ek__BackingField_19;
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.FocusEventBase`1::<focusController>k__BackingField
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___U3CfocusControllerU3Ek__BackingField_20;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1::<IsFocusDelegated>k__BackingField
|
|
bool ___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
};
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Boolean>
|
|
struct Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Boolean>
|
|
struct Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Boolean>
|
|
struct Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6 : public MulticastDelegate_t
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
struct KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA : public EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE
|
|
{
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.KeyboardEventBase`1::<modifiers>k__BackingField
|
|
int32_t ___U3CmodifiersU3Ek__BackingField_18;
|
|
// System.Char UnityEngine.UIElements.KeyboardEventBase`1::<character>k__BackingField
|
|
Il2CppChar ___U3CcharacterU3Ek__BackingField_19;
|
|
// UnityEngine.KeyCode UnityEngine.UIElements.KeyboardEventBase`1::<keyCode>k__BackingField
|
|
int32_t ___U3CkeyCodeU3Ek__BackingField_20;
|
|
};
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<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.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.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.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.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<System.Object>
|
|
struct PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC : public EventBase_1_t2B9B970022841F58172C0C783B7E1040BEF85AC1
|
|
{
|
|
// 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<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.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.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>
|
|
struct StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>
|
|
struct StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___currentValue_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>
|
|
struct StyleData_t516B303180A937637806C9C217FE06E3AACDEE23
|
|
{
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::startValue
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___startValue_0;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::endValue
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___endValue_1;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::reversingAdjustedStartValue
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___reversingAdjustedStartValue_2;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData::currentValue
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___currentValue_3;
|
|
};
|
|
|
|
// System.ArgumentNullException
|
|
struct ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129 : public ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263
|
|
{
|
|
};
|
|
|
|
// 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.PointerManipulator
|
|
struct PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72 : public MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.PointerManipulator::m_CurrentPointerId
|
|
int32_t ___m_CurrentPointerId_3;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription
|
|
struct UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE : public TypedUxmlAttributeDescription_1_t7ECE12D1C0C385835D77803906F54B792532FD39
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
struct UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4 : public TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription
|
|
struct UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF : public TypedUxmlAttributeDescription_1_tD8728D2AC8F9232D2E6A83B327DC0258F2CEEFA2
|
|
{
|
|
};
|
|
|
|
// 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.BlurEvent
|
|
struct BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302 : public FocusEventBase_1_t488824280225A29EEFE3596EDE88F3C1DBC90D94
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.Clickable
|
|
struct Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834 : public PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72
|
|
{
|
|
// System.Action`1<UnityEngine.UIElements.EventBase> UnityEngine.UIElements.Clickable::clickedWithEventInfo
|
|
Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* ___clickedWithEventInfo_4;
|
|
// System.Action UnityEngine.UIElements.Clickable::clicked
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___clicked_5;
|
|
// System.Int64 UnityEngine.UIElements.Clickable::m_Delay
|
|
int64_t ___m_Delay_6;
|
|
// System.Int64 UnityEngine.UIElements.Clickable::m_Interval
|
|
int64_t ___m_Interval_7;
|
|
// System.Boolean UnityEngine.UIElements.Clickable::<active>k__BackingField
|
|
bool ___U3CactiveU3Ek__BackingField_8;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.Clickable::<lastMousePosition>k__BackingField
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___U3ClastMousePositionU3Ek__BackingField_9;
|
|
// System.Int32 UnityEngine.UIElements.Clickable::m_ActivePointerId
|
|
int32_t ___m_ActivePointerId_10;
|
|
// System.Boolean UnityEngine.UIElements.Clickable::m_AcceptClicksIfDisabled
|
|
bool ___m_AcceptClicksIfDisabled_11;
|
|
// UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.Clickable::m_Repeater
|
|
RuntimeObject* ___m_Repeater_12;
|
|
};
|
|
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
struct DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496 : public PanelChangedEventBase_1_t2214183CD8DA6044ECE671FF1DA69DCB8DDC8C39
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusEvent
|
|
struct FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F : public FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
struct FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE : public FocusEventBase_1_t1F27FAA60011E82AD2DB0EA212CE4C0D7BF7B022
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
struct FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C : public FocusEventBase_1_t31D2BDBFCEFBA91BDD440E4380A0D10EFAA665C2
|
|
{
|
|
};
|
|
|
|
// UnityEngine.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.KeyDownEvent
|
|
struct KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C : public KeyboardEventBase_1_t8A33E6EBB804F18BFE49BE0C38C5D0B8E233B6FA
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
struct MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD : public MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
struct MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5 : public MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067
|
|
{
|
|
};
|
|
|
|
// 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.PointerStationaryEvent
|
|
struct PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A : public PointerEventBase_1_tFCFECC313C659D4E32E2FC6AD7803033B36F4D2A
|
|
{
|
|
};
|
|
|
|
// UnityEngine.UIElements.PointerUpEvent
|
|
struct PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9 : public PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496
|
|
{
|
|
};
|
|
|
|
// 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.TemplateContainer
|
|
struct TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2 : public BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C
|
|
{
|
|
// System.String UnityEngine.UIElements.TemplateContainer::<templateId>k__BackingField
|
|
String_t* ___U3CtemplateIdU3Ek__BackingField_67;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TemplateContainer::m_ContentContainer
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___m_ContentContainer_68;
|
|
// UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.TemplateContainer::m_TemplateSource
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___m_TemplateSource_69;
|
|
};
|
|
|
|
// 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.Label
|
|
struct Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70 : public TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0
|
|
{
|
|
};
|
|
|
|
// System.Collections.Generic.Comparer`1<System.Int32>
|
|
struct Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80_StaticFields
|
|
{
|
|
// System.Collections.Generic.Comparer`1<T> modreq(System.Runtime.CompilerServices.IsVolatile) System.Collections.Generic.Comparer`1::defaultComparer
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* ___defaultComparer_0;
|
|
};
|
|
|
|
// System.Collections.Generic.Comparer`1<System.Int32>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
|
|
// System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>
|
|
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>
|
|
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
struct List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption>
|
|
struct List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
IGroupBoxOptionU5BU5D_t19E3F4422566FEE1EBF7F4E74DF8FAD1491A1FAC* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
struct List_1_t96E9133B70FB6765E6B138E810D33E18901715DA_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
IValueAnimationUpdateU5BU5D_t250909B263EE1BB62A80F2449EAD3709E83C5C78* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>
|
|
struct List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ManipulatorActivationFilterU5BU5D_tE2A0BDE194B3B4600164AE8238C8CE2B20DBD4D7* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>
|
|
struct List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ScheduledItemU5BU5D_tF7CABE4BF771C4BD25E771C75FC8C2739F0FB41A* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
struct List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StringU5BU5D_t7674CD946EC0CE7B3AE0BE70E6EE85F2ECD9F248* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<System.String>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyId>
|
|
struct List_1_t365205E6BE687FCF41975C16741DD9C303C1C269_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyId>
|
|
|
|
// 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.FocusController/FocusedElement>
|
|
struct List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
FocusedElementU5BU5D_tE2EC8928994D7E368EC55BC3876976AAED693E58* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
struct List_1_t491E344573B9D6F61E36AF56132B7412453928C9_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
ValuesU5BU5D_t5332999C48416329B2A447FCD8C71113DDB459EA* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>
|
|
struct List_1_t70EE7982F45810D4B024CF720D910E67974A3094_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
AttributeOverrideU5BU5D_t4D2E0B93EF3A1A1EB58AC1F48E6CFE20A0EA27E8* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
struct List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_StaticFields
|
|
{
|
|
// T[] System.Collections.Generic.List`1::s_emptyArray
|
|
FocusRingRecordU5BU5D_tEF4D674D6630E0BABDC146E3DA39D58EEE0056F6* ___s_emptyArray_5;
|
|
};
|
|
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.VisualElementFocusChangeTarget>
|
|
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.VisualElementFocusChangeTarget>
|
|
|
|
// System.Collections.Generic.Queue`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.Queue`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
|
|
|
|
// System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>
|
|
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.BindableElement,UnityEngine.UIElements.BindableElement/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.BindableElement,UnityEngine.UIElements.BindableElement/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.IMGUIContainer,UnityEngine.UIElements.IMGUIContainer/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.IMGUIContainer,UnityEngine.UIElements.IMGUIContainer/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TemplateContainer,UnityEngine.UIElements.TemplateContainer/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TemplateContainer,UnityEngine.UIElements.TemplateContainer/UxmlTraits>
|
|
|
|
// UnityEngine.UIElements.BaseVisualTreeUpdater
|
|
|
|
// UnityEngine.UIElements.BaseVisualTreeUpdater
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
|
|
// UnityEngine.UIElements.CallbackEventHandler
|
|
|
|
// UnityEngine.UIElements.ClickDetector
|
|
struct ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_StaticFields
|
|
{
|
|
// System.Int32 UnityEngine.UIElements.ClickDetector::<s_DoubleClickTime>k__BackingField
|
|
int32_t ___U3Cs_DoubleClickTimeU3Ek__BackingField_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ClickDetector
|
|
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.CommandEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.DefaultDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.DefaultGroupManager
|
|
|
|
// UnityEngine.UIElements.DefaultGroupManager
|
|
|
|
// UnityEngine.UIElements.DisposeHelper
|
|
|
|
// UnityEngine.UIElements.DisposeHelper
|
|
|
|
// UnityEngine.UIElements.DropdownUtility
|
|
struct DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_StaticFields
|
|
{
|
|
// System.Func`1<UnityEngine.UIElements.IGenericMenu> UnityEngine.UIElements.DropdownUtility::MakeDropdownFunc
|
|
Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B* ___MakeDropdownFunc_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.DropdownUtility
|
|
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
struct EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>> UnityEngine.UIElements.EventDispatcher::k_EventQueuePool
|
|
ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* ___k_EventQueuePool_2;
|
|
// UnityEngine.UIElements.IEventDispatchingStrategy[] UnityEngine.UIElements.EventDispatcher::s_EditorStrategies
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* ___s_EditorStrategies_7;
|
|
};
|
|
|
|
// UnityEngine.UIElements.EventDispatcher
|
|
|
|
// UnityEngine.UIElements.FocusChangeDirection
|
|
struct FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::<unspecified>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CunspecifiedU3Ek__BackingField_0;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::<none>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3CnoneU3Ek__BackingField_1;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::<lastValue>k__BackingField
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___U3ClastValueU3Ek__BackingField_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.FocusChangeDirection
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
|
|
// UnityEngine.UIElements.FocusController
|
|
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.IMGUIEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.KeyboardEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.Manipulator
|
|
|
|
// UnityEngine.UIElements.Manipulator
|
|
|
|
// System.Reflection.MemberInfo
|
|
|
|
// System.Reflection.MemberInfo
|
|
|
|
// UnityEngine.UIElements.UIR.MeshBuilder
|
|
struct MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F_StaticFields
|
|
{
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIR.MeshBuilder::s_VectorGraphics9Slice
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_VectorGraphics9Slice_0;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIR.MeshBuilder::s_VectorGraphicsSplitTriangle
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_VectorGraphicsSplitTriangle_1;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIR.MeshBuilder::s_VectorGraphicsScaleTriangle
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_VectorGraphicsScaleTriangle_2;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIR.MeshBuilder::s_VectorGraphicsStretch
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_VectorGraphicsStretch_3;
|
|
// System.Int32 UnityEngine.UIElements.UIR.MeshBuilder::s_MaxTextMeshVertices
|
|
int32_t ___s_MaxTextMeshVertices_4;
|
|
// System.UInt16[] UnityEngine.UIElements.UIR.MeshBuilder::slicedQuadIndices
|
|
UInt16U5BU5D_tEB7C42D811D999D2AA815BADC3FCCDD9C67B3F83* ___slicedQuadIndices_5;
|
|
// System.Single[] UnityEngine.UIElements.UIR.MeshBuilder::k_TexCoordSlicesX
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___k_TexCoordSlicesX_6;
|
|
// System.Single[] UnityEngine.UIElements.UIR.MeshBuilder::k_TexCoordSlicesY
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___k_TexCoordSlicesY_7;
|
|
// System.Single[] UnityEngine.UIElements.UIR.MeshBuilder::k_PositionSlicesX
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___k_PositionSlicesX_8;
|
|
// System.Single[] UnityEngine.UIElements.UIR.MeshBuilder::k_PositionSlicesY
|
|
SingleU5BU5D_t89DEFE97BCEDB5857010E79ECE0F52CF6E93B87C* ___k_PositionSlicesY_9;
|
|
// UnityEngine.UIElements.UIR.MeshBuilder/VertexClipEdge[] UnityEngine.UIElements.UIR.MeshBuilder::s_AllClipEdges
|
|
VertexClipEdgeU5BU5D_t996146320A0ACC313D3EF0F5791237A90C2E34AA* ___s_AllClipEdges_10;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIR.MeshBuilder
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContext
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContext
|
|
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.MouseEventDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerCaptureDispatchingStrategy
|
|
|
|
// UnityEngine.UIElements.PointerCaptureHelper
|
|
|
|
// UnityEngine.UIElements.PointerCaptureHelper
|
|
|
|
// UnityEngine.UIElements.PointerDispatchState
|
|
|
|
// UnityEngine.UIElements.PointerDispatchState
|
|
|
|
// 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.ScheduledItem
|
|
struct ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_StaticFields
|
|
{
|
|
// System.Func`1<System.Boolean> UnityEngine.UIElements.ScheduledItem::OnceCondition
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___OnceCondition_1;
|
|
// System.Func`1<System.Boolean> UnityEngine.UIElements.ScheduledItem::ForeverCondition
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* ___ForeverCondition_2;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScheduledItem
|
|
|
|
// System.String
|
|
struct String_t_StaticFields
|
|
{
|
|
// System.String System.String::Empty
|
|
String_t* ___Empty_6;
|
|
};
|
|
|
|
// System.String
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem
|
|
|
|
// UnityEngine.UIElements.TimerEventScheduler
|
|
|
|
// UnityEngine.UIElements.TimerEventScheduler
|
|
|
|
// UnityEngine.UIElements.UIElementsPackageUtility
|
|
struct UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.UIElementsPackageUtility::EditorResourcesBasePath
|
|
String_t* ___EditorResourcesBasePath_0;
|
|
// System.Boolean UnityEngine.UIElements.UIElementsPackageUtility::IsUIEPackageLoaded
|
|
bool ___IsUIEPackageLoaded_1;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIElementsPackageUtility
|
|
|
|
// UnityEngine.UIElements.UIElementsUtility
|
|
struct UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_StaticFields
|
|
{
|
|
// System.Collections.Generic.Stack`1<UnityEngine.UIElements.IMGUIContainer> UnityEngine.UIElements.UIElementsUtility::s_ContainerStack
|
|
Stack_1_t9978CB0119EA70B0C3101996FB3D675B2D59025A* ___s_ContainerStack_0;
|
|
// System.Collections.Generic.Dictionary`2<System.Int32,UnityEngine.UIElements.Panel> UnityEngine.UIElements.UIElementsUtility::s_UIElementsCache
|
|
Dictionary_2_tB87BEC840CF876F5CE38D31A5FD1BFD7BDCCCD75* ___s_UIElementsCache_1;
|
|
// UnityEngine.Event UnityEngine.UIElements.UIElementsUtility::s_EventInstance
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___s_EventInstance_2;
|
|
// UnityEngine.Color UnityEngine.UIElements.UIElementsUtility::editorPlayModeTintColor
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___editorPlayModeTintColor_3;
|
|
// System.Single UnityEngine.UIElements.UIElementsUtility::singleLineHeight
|
|
float ___singleLineHeight_4;
|
|
// UnityEngine.UIElements.UIElementsUtility UnityEngine.UIElements.UIElementsUtility::s_Instance
|
|
UIElementsUtility_t03323144D50362C6BF96652D3355728749769293* ___s_Instance_5;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.Panel> UnityEngine.UIElements.UIElementsUtility::s_PanelsIterationList
|
|
List_1_t9FF902E193613BD654FD1CF8DBDEF7B872504919* ___s_PanelsIterationList_6;
|
|
// System.String UnityEngine.UIElements.UIElementsUtility::s_RepaintProfilerMarkerName
|
|
String_t* ___s_RepaintProfilerMarkerName_7;
|
|
// System.String UnityEngine.UIElements.UIElementsUtility::s_EventProfilerMarkerName
|
|
String_t* ___s_EventProfilerMarkerName_8;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIElementsUtility::s_RepaintProfilerMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_RepaintProfilerMarker_9;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.UIElementsUtility::s_EventProfilerMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_EventProfilerMarker_10;
|
|
};
|
|
|
|
// UnityEngine.UIElements.UIElementsUtility
|
|
|
|
// UnityEngine.UIElements.VisualElementExtensions
|
|
|
|
// UnityEngine.UIElements.VisualElementExtensions
|
|
|
|
// UnityEngine.UIElements.VisualElementPanelActivator
|
|
|
|
// UnityEngine.UIElements.VisualElementPanelActivator
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdater
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdater
|
|
|
|
// UnityEngine.GUILayoutUtility/LayoutCache
|
|
|
|
// UnityEngine.GUILayoutUtility/LayoutCache
|
|
|
|
// UnityEngine.UIElements.ScheduledItem/<>c
|
|
struct U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.ScheduledItem/<>c UnityEngine.UIElements.ScheduledItem/<>c::<>9
|
|
U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* ___U3CU3E9_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.ScheduledItem/<>c
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values
|
|
|
|
// UnityEngine.UIElements.VisualElement/TypeData
|
|
|
|
// UnityEngine.UIElements.VisualElement/TypeData
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Background>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Background>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Font>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Font>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.FontDefinition>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.FontDefinition>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/AnimationDataSet`2<UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.IEventDispatchingStrategy>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.IGroupBoxOption>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.IGroupBoxOption>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>
|
|
|
|
// System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UIElements.ScheduledItem>
|
|
|
|
// System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UIElements.ScheduledItem>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.ScheduledItem>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.ScheduledItem>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElement>
|
|
|
|
// System.Collections.Generic.HashSet`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.HashSet`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
|
|
// System.Nullable`1<System.Boolean>
|
|
|
|
// System.Nullable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>
|
|
|
|
// System.Nullable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>
|
|
|
|
// 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
|
|
|
|
// System.Double
|
|
|
|
// System.Double
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogIMGUICall
|
|
|
|
// UnityEngine.UIElements.EventDebuggerLogIMGUICall
|
|
|
|
// UnityEngine.UIElements.EventDispatcherGate
|
|
|
|
// UnityEngine.UIElements.EventDispatcherGate
|
|
|
|
// UnityEngine.EventInterests
|
|
|
|
// UnityEngine.EventInterests
|
|
|
|
// 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.Mathf
|
|
struct Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields
|
|
{
|
|
// System.Single UnityEngine.Mathf::Epsilon
|
|
float ___Epsilon_0;
|
|
};
|
|
|
|
// UnityEngine.Mathf
|
|
|
|
// UnityEngine.Matrix4x4
|
|
struct Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields
|
|
{
|
|
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___zeroMatrix_16;
|
|
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___identityMatrix_17;
|
|
};
|
|
|
|
// UnityEngine.Matrix4x4
|
|
|
|
// UnityEngine.Rect
|
|
|
|
// UnityEngine.Rect
|
|
|
|
// System.Single
|
|
|
|
// System.Single
|
|
|
|
// UnityEngine.UIElements.Spacing
|
|
|
|
// UnityEngine.UIElements.Spacing
|
|
|
|
// UnityEngine.UIElements.Experimental.StyleValues
|
|
|
|
// UnityEngine.UIElements.Experimental.StyleValues
|
|
|
|
// UnityEngine.UIElements.TimerState
|
|
|
|
// UnityEngine.UIElements.TimerState
|
|
|
|
// System.UInt16
|
|
|
|
// System.UInt16
|
|
|
|
// System.UInt32
|
|
|
|
// System.UInt32
|
|
|
|
// UnityEngine.Vector2
|
|
struct Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_StaticFields
|
|
{
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::zeroVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___zeroVector_2;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::oneVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___oneVector_3;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::upVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___upVector_4;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::downVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___downVector_5;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::leftVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___leftVector_6;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::rightVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___rightVector_7;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___positiveInfinityVector_8;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___negativeInfinityVector_9;
|
|
};
|
|
|
|
// UnityEngine.Vector2
|
|
|
|
// UnityEngine.Vector3
|
|
struct Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2_StaticFields
|
|
{
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::zeroVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___zeroVector_5;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::oneVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___oneVector_6;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::upVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___upVector_7;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::downVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___downVector_8;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::leftVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___leftVector_9;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::rightVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___rightVector_10;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::forwardVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___forwardVector_11;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::backVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___backVector_12;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___positiveInfinityVector_13;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___negativeInfinityVector_14;
|
|
};
|
|
|
|
// UnityEngine.Vector3
|
|
|
|
// 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
|
|
|
|
// UnityEngine.UIElements.VisualElementAnimationSystem
|
|
struct VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.VisualElementAnimationSystem::s_Description
|
|
String_t* ___s_Description_6;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualElementAnimationSystem::s_ProfilerMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_ProfilerMarker_7;
|
|
// System.String UnityEngine.UIElements.VisualElementAnimationSystem::s_StylePropertyAnimationDescription
|
|
String_t* ___s_StylePropertyAnimationDescription_8;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualElementAnimationSystem::s_StylePropertyAnimationProfilerMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_StylePropertyAnimationProfilerMarker_9;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementAnimationSystem
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusChangeDirection
|
|
struct VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.VisualElementFocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::s_Left
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* ___s_Left_4;
|
|
// UnityEngine.UIElements.VisualElementFocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::s_Right
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* ___s_Right_5;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusChangeDirection
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusChangeTarget
|
|
struct VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_StaticFields
|
|
{
|
|
// UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.VisualElementFocusChangeTarget> UnityEngine.UIElements.VisualElementFocusChangeTarget::Pool
|
|
ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E* ___Pool_4;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusChangeTarget
|
|
|
|
// UnityEngine.UIElements.VisualTreeViewDataUpdater
|
|
struct VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.VisualTreeViewDataUpdater::s_Description
|
|
String_t* ___s_Description_6;
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualTreeViewDataUpdater::s_ProfilerMarker
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD ___s_ProfilerMarker_7;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualTreeViewDataUpdater
|
|
|
|
// System.Void
|
|
|
|
// System.Void
|
|
|
|
// UnityEngine.UIElements.BindableElement/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.BindableElement/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
|
|
// UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
|
|
// UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
|
|
// UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
|
|
// UnityEngine.UIElements.FocusController/FocusedElement
|
|
|
|
// UnityEngine.UIElements.FocusController/FocusedElement
|
|
|
|
// UnityEngine.GUIClip/ParentClipScope
|
|
|
|
// UnityEngine.GUIClip/ParentClipScope
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlFactory
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
|
|
// UnityEngine.UIElements.VisualElement/Hierarchy
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.VisualElement/UxmlTraits
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.FocusController/FocusedElement>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.FocusController/FocusedElement>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Background>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Background>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Color>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Color>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Font>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Font>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.FontDefinition>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.FontDefinition>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Int32>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Int32>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Length>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Length>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Rotate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Rotate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Scale>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Scale>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Single>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Single>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TextShadow>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TextShadow>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TransformOrigin>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TransformOrigin>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Translate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Translate>
|
|
|
|
// UnityEngine.UIElements.Align
|
|
|
|
// UnityEngine.UIElements.Align
|
|
|
|
// UnityEngine.UIElements.ComputedStyle
|
|
|
|
// UnityEngine.UIElements.ComputedStyle
|
|
|
|
// UnityEngine.UIElements.ContextType
|
|
|
|
// UnityEngine.UIElements.ContextType
|
|
|
|
// System.Delegate
|
|
|
|
// System.Delegate
|
|
|
|
// UnityEngine.UIElements.DispatchMode
|
|
|
|
// UnityEngine.UIElements.DispatchMode
|
|
|
|
// 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
|
|
|
|
// System.Exception
|
|
struct Exception_t_StaticFields
|
|
{
|
|
// System.Object System.Exception::s_EDILock
|
|
RuntimeObject* ___s_EDILock_0;
|
|
};
|
|
|
|
// System.Exception
|
|
|
|
// UnityEngine.UIElements.FlexDirection
|
|
|
|
// UnityEngine.UIElements.FlexDirection
|
|
|
|
// UnityEngine.FontStyle
|
|
|
|
// UnityEngine.FontStyle
|
|
|
|
// UnityEngine.GUILayoutEntry
|
|
struct GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F_StaticFields
|
|
{
|
|
// UnityEngine.Rect UnityEngine.GUILayoutEntry::kDummyRect
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___kDummyRect_9;
|
|
// System.Int32 UnityEngine.GUILayoutEntry::indent
|
|
int32_t ___indent_10;
|
|
};
|
|
|
|
// UnityEngine.GUILayoutEntry
|
|
|
|
// UnityEngine.UIElements.GenericDropdownMenu
|
|
struct GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.GenericDropdownMenu::ussClassName
|
|
String_t* ___ussClassName_0;
|
|
// System.String UnityEngine.UIElements.GenericDropdownMenu::itemUssClassName
|
|
String_t* ___itemUssClassName_1;
|
|
// System.String UnityEngine.UIElements.GenericDropdownMenu::labelUssClassName
|
|
String_t* ___labelUssClassName_2;
|
|
// System.String UnityEngine.UIElements.GenericDropdownMenu::containerInnerUssClassName
|
|
String_t* ___containerInnerUssClassName_3;
|
|
// System.String UnityEngine.UIElements.GenericDropdownMenu::containerOuterUssClassName
|
|
String_t* ___containerOuterUssClassName_4;
|
|
// System.String UnityEngine.UIElements.GenericDropdownMenu::checkmarkUssClassName
|
|
String_t* ___checkmarkUssClassName_5;
|
|
// System.String UnityEngine.UIElements.GenericDropdownMenu::separatorUssClassName
|
|
String_t* ___separatorUssClassName_6;
|
|
};
|
|
|
|
// UnityEngine.UIElements.GenericDropdownMenu
|
|
|
|
// UnityEngine.UIElements.InvokePolicy
|
|
|
|
// UnityEngine.UIElements.InvokePolicy
|
|
|
|
// UnityEngine.UIElements.Justify
|
|
|
|
// UnityEngine.UIElements.Justify
|
|
|
|
// UnityEngine.KeyCode
|
|
|
|
// UnityEngine.KeyCode
|
|
|
|
// UnityEngine.UIElements.LengthUnit
|
|
|
|
// UnityEngine.UIElements.LengthUnit
|
|
|
|
// Unity.Profiling.LowLevel.MarkerFlags
|
|
|
|
// Unity.Profiling.LowLevel.MarkerFlags
|
|
|
|
// UnityEngine.UIElements.MouseButton
|
|
|
|
// UnityEngine.UIElements.MouseButton
|
|
|
|
// UnityEngine.Object
|
|
struct Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_StaticFields
|
|
{
|
|
// System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject
|
|
int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1;
|
|
};
|
|
|
|
// UnityEngine.Object
|
|
|
|
// UnityEngine.ObjectGUIState
|
|
|
|
// UnityEngine.ObjectGUIState
|
|
|
|
// 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
|
|
|
|
// UnityEngine.UIElements.RepaintData
|
|
|
|
// UnityEngine.UIElements.RepaintData
|
|
|
|
// UnityEngine.UIElements.Scale
|
|
|
|
// UnityEngine.UIElements.Scale
|
|
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId
|
|
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId
|
|
|
|
// UnityEngine.TextAnchor
|
|
|
|
// UnityEngine.TextAnchor
|
|
|
|
// UnityEngine.UIElements.TextOverflow
|
|
|
|
// UnityEngine.UIElements.TextOverflow
|
|
|
|
// UnityEngine.UIElements.TextOverflowPosition
|
|
|
|
// UnityEngine.UIElements.TextOverflowPosition
|
|
|
|
// UnityEngine.UIElements.TextShadow
|
|
|
|
// UnityEngine.UIElements.TextShadow
|
|
|
|
// UnityEngine.UIElements.TransformOriginOffset
|
|
|
|
// UnityEngine.UIElements.TransformOriginOffset
|
|
|
|
// UnityEngine.UIElements.TrickleDown
|
|
|
|
// UnityEngine.UIElements.TrickleDown
|
|
|
|
// UnityEngine.UIElements.VersionChangeType
|
|
|
|
// UnityEngine.UIElements.VersionChangeType
|
|
|
|
// UnityEngine.UIElements.Visibility
|
|
|
|
// UnityEngine.UIElements.Visibility
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdatePhase
|
|
|
|
// UnityEngine.UIElements.VisualTreeUpdatePhase
|
|
|
|
// UnityEngine.UIElements.WhiteSpace
|
|
|
|
// UnityEngine.UIElements.WhiteSpace
|
|
|
|
// UnityEngine.UIElements.Wrap
|
|
|
|
// UnityEngine.UIElements.Wrap
|
|
|
|
// UnityEngine.UIElements.BindableElement/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.BindableElement/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.IMGUIContainer/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.Length/Unit
|
|
|
|
// UnityEngine.UIElements.Length/Unit
|
|
|
|
// Unity.Profiling.ProfilerMarker/AutoScope
|
|
|
|
// Unity.Profiling.ProfilerMarker/AutoScope
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/TransitionState
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/TransitionState
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription/Use
|
|
|
|
// UnityEngine.UIElements.UxmlAttributeDescription/Use
|
|
|
|
// UnityEngine.UIElements.VisualElement/<>c__DisplayClass111_0
|
|
|
|
// UnityEngine.UIElements.VisualElement/<>c__DisplayClass111_0
|
|
|
|
// UnityEngine.UIElements.VisualElement/MeasureMode
|
|
|
|
// UnityEngine.UIElements.VisualElement/MeasureMode
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.Background>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.Background>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.Font>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.Font>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.FontDefinition>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.FontDefinition>
|
|
|
|
// UnityEngine.UIElements.Angle
|
|
|
|
// UnityEngine.UIElements.Angle
|
|
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
|
|
// UnityEngine.UIElements.BaseVisualElementPanel
|
|
|
|
// UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
|
|
// UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
|
|
// 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.ExitGUIException
|
|
|
|
// UnityEngine.ExitGUIException
|
|
|
|
// UnityEngine.Font
|
|
struct Font_tC95270EA3198038970422D78B74A7F2E218A96B6_StaticFields
|
|
{
|
|
// System.Action`1<UnityEngine.Font> UnityEngine.Font::textureRebuilt
|
|
Action_1_tD91E4D0ED3C2E385D3BDD4B3EA48B5F99D39F1DC* ___textureRebuilt_4;
|
|
};
|
|
|
|
// UnityEngine.Font
|
|
|
|
// UnityEngine.GUILayoutGroup
|
|
struct GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D_StaticFields
|
|
{
|
|
// UnityEngine.GUILayoutEntry UnityEngine.GUILayoutGroup::none
|
|
GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F* ___none_31;
|
|
};
|
|
|
|
// UnityEngine.GUILayoutGroup
|
|
|
|
// UnityEngine.UIElements.ImmediateModeException
|
|
|
|
// UnityEngine.UIElements.ImmediateModeException
|
|
|
|
// UnityEngine.UIElements.Length
|
|
|
|
// UnityEngine.UIElements.Length
|
|
|
|
// UnityEngine.UIElements.ManipulatorActivationFilter
|
|
|
|
// UnityEngine.UIElements.ManipulatorActivationFilter
|
|
|
|
// UnityEngine.UIElements.TextNativeSettings
|
|
|
|
// UnityEngine.UIElements.TextNativeSettings
|
|
|
|
// 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.VisualElementFocusRing
|
|
|
|
// UnityEngine.UIElements.VisualElementFocusRing
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
struct ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_StaticFields
|
|
{
|
|
// System.Collections.Generic.IEqualityComparer`1<UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair> UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair::Comparer
|
|
RuntimeObject* ___Comparer_0;
|
|
};
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate
|
|
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlTraits
|
|
|
|
// UnityEngine.UIElements.TemplateContainer/UxmlTraits
|
|
|
|
// System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.EventBase>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.EventBase>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.MeshGenerationContext>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.MeshGenerationContext>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.TimerState>
|
|
|
|
// System.Action`1<UnityEngine.UIElements.TimerState>
|
|
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Action`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Comparison`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
|
|
// System.Comparison`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.ManipulatorActivationFilter>
|
|
|
|
// System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.ManipulatorActivationFilter>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.GeometryChangedEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseUpEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// System.Func`1<System.Boolean>
|
|
|
|
// System.Func`1<System.Boolean>
|
|
|
|
// System.Func`1<UnityEngine.UIElements.IGenericMenu>
|
|
|
|
// System.Func`1<UnityEngine.UIElements.IGenericMenu>
|
|
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Func`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Func`2<System.Single,System.Single>
|
|
|
|
// System.Func`2<System.Single,System.Single>
|
|
|
|
// System.Func`3<UnityEngine.Color,UnityEngine.Color,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.Color,UnityEngine.Color,System.Boolean>
|
|
|
|
// System.Func`3<System.Int32,System.Int32,System.Boolean>
|
|
|
|
// System.Func`3<System.Int32,System.Int32,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Boolean>
|
|
|
|
// System.Func`3<System.Single,System.Single,System.Boolean>
|
|
|
|
// System.Func`3<System.Single,System.Single,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Boolean>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>
|
|
|
|
// 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<System.String>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.String>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// UnityEngine.UIElements.TypedUxmlAttributeDescription`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>
|
|
|
|
// System.Action
|
|
|
|
// System.Action
|
|
|
|
// System.ArgumentException
|
|
|
|
// System.ArgumentException
|
|
|
|
// System.InvalidOperationException
|
|
|
|
// System.InvalidOperationException
|
|
|
|
// UnityEngine.UIElements.MouseManipulator
|
|
|
|
// UnityEngine.UIElements.MouseManipulator
|
|
|
|
// System.NotSupportedException
|
|
|
|
// System.NotSupportedException
|
|
|
|
// UnityEngine.UIElements.Rotate
|
|
|
|
// UnityEngine.UIElements.Rotate
|
|
|
|
// UnityEngine.UIElements.TemplateAsset
|
|
|
|
// UnityEngine.UIElements.TemplateAsset
|
|
|
|
// UnityEngine.UIElements.TransformOrigin
|
|
|
|
// UnityEngine.UIElements.TransformOrigin
|
|
|
|
// UnityEngine.UIElements.Translate
|
|
|
|
// UnityEngine.UIElements.Translate
|
|
|
|
// UnityEngine.UIElements.VisualTreeAsset
|
|
struct VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB_StaticFields
|
|
{
|
|
// System.String UnityEngine.UIElements.VisualTreeAsset::LinkedVEAInTemplatePropertyName
|
|
String_t* ___LinkedVEAInTemplatePropertyName_4;
|
|
// System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.VisualTreeAsset::s_TemporarySlotInsertionPoints
|
|
Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___s_TemporarySlotInsertionPoints_7;
|
|
};
|
|
|
|
// UnityEngine.UIElements.VisualTreeAsset
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams
|
|
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<System.String>
|
|
|
|
// UnityEngine.UIElements.ChangeEvent`1<System.String>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.FocusEventBase`1<System.Object>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Boolean>
|
|
|
|
// System.Func`3<UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Boolean>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.KeyboardEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
|
|
// UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>
|
|
|
|
// 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.PointerCaptureEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<System.Object>
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
|
|
// UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>
|
|
|
|
// 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.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>
|
|
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>
|
|
|
|
// System.ArgumentNullException
|
|
|
|
// System.ArgumentNullException
|
|
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
|
|
// UnityEngine.UIElements.GeometryChangedEvent
|
|
|
|
// UnityEngine.UIElements.PointerManipulator
|
|
|
|
// UnityEngine.UIElements.PointerManipulator
|
|
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription
|
|
|
|
// UnityEngine.UIElements.UxmlStringAttributeDescription
|
|
|
|
// 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.AttachToPanelEvent
|
|
|
|
// UnityEngine.UIElements.AttachToPanelEvent
|
|
|
|
// UnityEngine.UIElements.BindableElement
|
|
|
|
// UnityEngine.UIElements.BindableElement
|
|
|
|
// UnityEngine.UIElements.BlurEvent
|
|
|
|
// UnityEngine.UIElements.BlurEvent
|
|
|
|
// UnityEngine.UIElements.Clickable
|
|
|
|
// UnityEngine.UIElements.Clickable
|
|
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
|
|
// UnityEngine.UIElements.DetachFromPanelEvent
|
|
|
|
// UnityEngine.UIElements.FocusEvent
|
|
|
|
// UnityEngine.UIElements.FocusEvent
|
|
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
|
|
// UnityEngine.UIElements.FocusInEvent
|
|
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
|
|
// UnityEngine.UIElements.FocusOutEvent
|
|
|
|
// 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.KeyDownEvent
|
|
|
|
// UnityEngine.UIElements.KeyDownEvent
|
|
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
|
|
// UnityEngine.UIElements.MouseDownEvent
|
|
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
|
|
// UnityEngine.UIElements.MouseMoveEvent
|
|
|
|
// 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.PointerStationaryEvent
|
|
|
|
// UnityEngine.UIElements.PointerStationaryEvent
|
|
|
|
// UnityEngine.UIElements.PointerUpEvent
|
|
|
|
// UnityEngine.UIElements.PointerUpEvent
|
|
|
|
// 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.TemplateContainer
|
|
|
|
// UnityEngine.UIElements.TemplateContainer
|
|
|
|
// 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
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
// UnityEngine.UIElements.IVisualTreeUpdater[]
|
|
struct IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8 : 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.StylePropertyAnimationSystem/Values`1/TimingData<System.Single>[]
|
|
struct TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A m_Items[1];
|
|
|
|
inline TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A* 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, TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Single>[]
|
|
struct StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976 m_Items[1];
|
|
|
|
inline StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976* 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, StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.VisualElement[]
|
|
struct VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* m_Items[1];
|
|
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StyleSheets.StylePropertyId[]
|
|
struct StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359 : 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.StylePropertyAnimationSystem/Values`1/TimingData<System.Int32>[]
|
|
struct TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263 m_Items[1];
|
|
|
|
inline TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263* 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, TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<System.Int32>[]
|
|
struct StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595 m_Items[1];
|
|
|
|
inline StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595* 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, StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Length>[]
|
|
struct TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288 m_Items[1];
|
|
|
|
inline TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288* 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, TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Length>[]
|
|
struct StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628 m_Items[1];
|
|
|
|
inline StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628* 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, StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.Color>[]
|
|
struct TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE m_Items[1];
|
|
|
|
inline TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE* 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, TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Color>[]
|
|
struct StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D m_Items[1];
|
|
|
|
inline StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D* 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, StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Background>[]
|
|
struct StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6 m_Items[1];
|
|
|
|
inline StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6* 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, StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_Texture_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_Texture_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_Texture_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_Texture_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t333EEFF82EBFC5313C5D5BD07C3E5258C87D2CC6 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_Texture_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_Texture_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_Texture_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_Texture_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_Sprite_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_RenderTexture_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_VectorImage_3), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.FontDefinition>[]
|
|
struct StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472 m_Items[1];
|
|
|
|
inline StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472* 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, StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_Font_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t7B881346F61A413495F318F9A8EF71C751EC6472 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_Font_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___startValue_0))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___endValue_1))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___reversingAdjustedStartValue_2))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&((m_Items + index)->___currentValue_3))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.Font>[]
|
|
struct StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385 m_Items[1];
|
|
|
|
inline StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385* 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, StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___startValue_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___endValue_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___reversingAdjustedStartValue_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___currentValue_3), (void*)NULL);
|
|
#endif
|
|
}
|
|
inline StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t3E4A29038DDBDCB28D9E44F7EE3218AA8169F385 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___startValue_0), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___endValue_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___reversingAdjustedStartValue_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___currentValue_3), (void*)NULL);
|
|
#endif
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TextShadow>[]
|
|
struct TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE m_Items[1];
|
|
|
|
inline TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE* 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, TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TextShadow>[]
|
|
struct StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8 m_Items[1];
|
|
|
|
inline StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8* 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, StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Scale>[]
|
|
struct StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1 m_Items[1];
|
|
|
|
inline StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1* 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, StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Scale>[]
|
|
struct TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49 m_Items[1];
|
|
|
|
inline TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49* 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, TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Rotate>[]
|
|
struct StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C m_Items[1];
|
|
|
|
inline StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C* 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, StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Rotate>[]
|
|
struct TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11 m_Items[1];
|
|
|
|
inline TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11* 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, TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.Translate>[]
|
|
struct StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_t516B303180A937637806C9C217FE06E3AACDEE23 m_Items[1];
|
|
|
|
inline StyleData_t516B303180A937637806C9C217FE06E3AACDEE23 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t516B303180A937637806C9C217FE06E3AACDEE23* 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, StyleData_t516B303180A937637806C9C217FE06E3AACDEE23 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_t516B303180A937637806C9C217FE06E3AACDEE23 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_t516B303180A937637806C9C217FE06E3AACDEE23* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_t516B303180A937637806C9C217FE06E3AACDEE23 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.Translate>[]
|
|
struct TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3 m_Items[1];
|
|
|
|
inline TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3* 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, TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/StyleData<UnityEngine.UIElements.TransformOrigin>[]
|
|
struct StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167 m_Items[1];
|
|
|
|
inline StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167* 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, StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167 value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1/TimingData<UnityEngine.UIElements.TransformOrigin>[]
|
|
struct TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92 m_Items[1];
|
|
|
|
inline TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92 GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92* 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, TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92 value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
inline TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92 GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92 value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)&((m_Items + index)->___easingCurve_2), (void*)NULL);
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.IEventHandler[]
|
|
struct IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.Boolean[]
|
|
struct BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) bool m_Items[1];
|
|
|
|
inline bool GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, bool value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
}
|
|
inline bool GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline bool* GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, bool value)
|
|
{
|
|
m_Items[index] = value;
|
|
}
|
|
};
|
|
// UnityEngine.UIElements.IEventDispatchingStrategy[]
|
|
struct IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97 : public RuntimeArray
|
|
{
|
|
ALIGN_FIELD (8) RuntimeObject* m_Items[1];
|
|
|
|
inline RuntimeObject* GetAt(il2cpp_array_size_t index) const
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAt(il2cpp_array_size_t index)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAt(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length);
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
inline RuntimeObject* GetAtUnchecked(il2cpp_array_size_t index) const
|
|
{
|
|
return m_Items[index];
|
|
}
|
|
inline RuntimeObject** GetAddressAtUnchecked(il2cpp_array_size_t index)
|
|
{
|
|
return m_Items + index;
|
|
}
|
|
inline void SetAtUnchecked(il2cpp_array_size_t index, RuntimeObject* value)
|
|
{
|
|
m_Items[index] = value;
|
|
Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value);
|
|
}
|
|
};
|
|
// System.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);
|
|
}
|
|
};
|
|
// 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);
|
|
}
|
|
};
|
|
|
|
|
|
// 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.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.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 UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<System.Object>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, 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) ;
|
|
// 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) ;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(T&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny* ___0_values, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___2_startValue, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014* ___7_values, 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.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.Void System.Func`3<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType,Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesDiscrete_1__ctor_m2353EB0AC80FBB5DDABE4205539DD8F4E86DF4E3_gshared (ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653* __this, 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.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<System.Object>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t15E400616AB56B841F72D09E503D6377E8366E07* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1<System.Object>::get_localMousePosition()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseEventBase_1_get_localMousePosition_m6FB2AFCA7C36A008619542851C365CAD9C3864C5_gshared_inline (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __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) ;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1<System.Object>::get_localPosition()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEventBase_1_get_localPosition_m2A8E02DBA7F7F7A8519822E757D084204BE7D90D_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerCaptureEventBase`1<System.Object>::get_pointerId()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerCaptureEventBase_1_get_pointerId_m4E4F2967D333957F5F474673769B7FFFC128A89A_gshared_inline (PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC* __this, 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.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>::.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.KeyboardEventBase`1<System.Object>::GetPooled(System.Char,UnityEngine.KeyCode,UnityEngine.EventModifiers)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* KeyboardEventBase_1_GetPooled_m8D5F7867C432E60172A3B43597E4CB0804A604B3_gshared (Il2CppChar ___0_c, int32_t ___1_keyCode, int32_t ___2_modifiers, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<System.Object>::TypeId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared (const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1<System.Object>::get_direction()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusEventBase_1_get_direction_mCCB2D3D34DDDE8B4356F24D58ED52CC0F008F7D3_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1<System.Object>::get_IsFocusDelegated()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FocusEventBase_1_get_IsFocusDelegated_m59F1CF51ACF3A0C6CC65B946635F1A5692443DAB_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, 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) ;
|
|
// 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.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) ;
|
|
// T UnityEngine.UIElements.FocusEventBase`1<System.Object>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.FocusController,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FocusEventBase_1_GetPooled_m6CE160C741018E6E1CC074A9A140F19536B2F8CF_gshared (RuntimeObject* ___0_target, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_relatedTarget, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___3_focusController, bool ___4_bIsFocusDelegated, const RuntimeMethod* method) ;
|
|
// System.Void System.Nullable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>::.ctor(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m4257D7FF23A495D1B204F20330FBDED58248E4CC_gshared (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType*/Il2CppFullySharedGenericStruct ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Nullable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>::get_HasValue()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m14F273FB376DF00D727434CDCD28AB4EDCC14C3C_gshared_inline (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* __this, const RuntimeMethod* method) ;
|
|
// T System.Nullable`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType>::GetValueOrDefault()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Nullable_1_GetValueOrDefault_mC057FBD944AF068B90EBDD0B496231A01B2A4228_gshared_inline (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* __this, Il2CppFullySharedGenericStruct* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.PointerCaptureEventBase`1<System.Object>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerCaptureEventBase_1_GetPooled_m2F21215B607890899A63B415C16FF5182A4AB3ED_gshared (RuntimeObject* ___0_target, RuntimeObject* ___1_relatedTarget, int32_t ___2_pointerId, 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>::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) ;
|
|
// 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.Queue`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Enqueue(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_Enqueue_m9159DC6A9BC5528A3444329C408F4101004CF652_gshared (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, 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) ;
|
|
// T System.Collections.Generic.Queue`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Dequeue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Queue_1_Dequeue_m80C152387A53656EC4AEF450BCBA9087DC51EEE3_gshared (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.Queue`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Count()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Queue_1_get_Count_mE6103188ACDEC07F90F2D2986554730D18029750_gshared_inline (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41* __this, 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.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Default()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB* Comparer_1_get_Default_m923F24BE1E2E8B01D8F2F9D26B8C0ED4B7CBA290_gshared (const RuntimeMethod* method) ;
|
|
// System.Void System.Comparison`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Comparison_1__ctor_m3B594919B20B90AF5727A416D5798BA4468358CC_gshared (Comparison_1_tE94B5C4AE59DE10B7A54AD7C3291462A05D5CD49* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Sort(System.Comparison`1<T>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Sort_mF939EF9300267AF108323ABAECB490A27894309B_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, Comparison_1_tE94B5C4AE59DE10B7A54AD7C3291462A05D5CD49* ___0_comparison, 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.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.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.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.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.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.Void System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1__ctor_m5E12B490550D90B0686D55F8F4E7B0506BD07120_gshared (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87* __this, 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.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.Int32 System.Collections.Generic.List`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::IndexOf(T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t List_1_IndexOf_m1FFA888B47CE3256B0AC301302FAD79AAAFC0818_gshared (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A* __this, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_item, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.HashSet`1/Enumerator<T> System.Collections.Generic.HashSet`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::GetEnumerator()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HashSet_1_GetEnumerator_m75DD344FE9A073CA9564DC6A425EC36883FB32A7_gshared (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87* __this, Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.HashSet`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_m915D35B9BB2A77C5396F4FE1A1C53F1C93B8E337_gshared (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.HashSet`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::get_Current()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Enumerator_get_Current_m51282E47C90E55BF2D96A0D329869ABC122A85A0_gshared_inline (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::MoveNext()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m1756F06B6BC460B8EEB4522B562E097F37D54C59_gshared (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB* __this, 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.ChangeEvent`1<T> UnityEngine.UIElements.ChangeEvent`1<Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType>::GetPooled(T,T)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3* ChangeEvent_1_GetPooled_mAE42CDB3455238CA5C981AE506F09F526FB29881_gshared (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___0_previousValue, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny ___1_newValue, const RuntimeMethod* method) ;
|
|
|
|
// System.Void System.Object::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::IsNullOrEmpty(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478 (String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Type UnityEngine.UIElements.VisualElement/TypeData::get_type()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TypeData_get_type_m19385722AD487765EADAE8F2DCAF294D8251D1DB_inline (TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 System.String::IndexOf(System.Char)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966 (String_t* __this, Il2CppChar ___0_value, const RuntimeMethod* method) ;
|
|
// System.String System.String::Remove(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Remove_m8266E0BF5D8565D4CDC850F21E9178AE254C3E85 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Experimental.StyleValues UnityEngine.UIElements.VisualElement::ReadCurrentValues(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.Experimental.StyleValues)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A VisualElement_ReadCurrentValues_mDFB8D3D41F844819B29ABF190B6AEF4351D313C2 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A ___1_targetValuesToRead, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::get_button()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ManipulatorActivationFilter::set_button(UnityEngine.UIElements.MouseButton)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ManipulatorActivationFilter_set_button_m7D270A0FB7BF8D63EE26483770D72A0676374769_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.ManipulatorActivationFilter::get_modifiers()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.ManipulatorActivationFilter::get_clickCount()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Equals(UnityEngine.UIElements.ManipulatorActivationFilter)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Equals_m6D9CDF042CE2808C90A212A43262ADD9BB9CAC41 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Equals_m5BE53154869F0B26619DB5EEE913398BE351483E (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Int32::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295 (int32_t* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.ManipulatorActivationFilter::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_GetHashCode_m46BCD43274FC9C9FB2515965F159FFEC3B7D2D57 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::HasModifiers(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_HasModifiers_m2A62DEA25160EBF869E4455E414623508CE270C6 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Matches(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Matches_mC249EAB7C24D269DDE2ED357A623BF938A7E9BC9 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::MatchModifiers(System.Boolean,System.Boolean,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_MatchModifiers_m088D92DBD2F0713AB0016039901CD0C403C5C344 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, bool ___0_alt, bool ___1_ctrl, bool ___2_shift, bool ___3_command, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::HasModifiers(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_HasModifiers_m23427BBDFF2FBD6BA0BF432EDA40B671F8DC8D98 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Matches(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Matches_m3734F38CEA969EA3253112A4CAAF63C99D7711B4 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Manipulator::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Manipulator__ctor_m9FA37A0BF987D14B713B1EA495D9DA50223EC597 (Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>::.ctor()
|
|
inline void List_1__ctor_m1692B25CB352586E654D02A6E4D5AA8AE6A361B4 (List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseManipulator::set_activators(System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseManipulator_set_activators_m8171261B8934A9481FA39098335919DC3A189A67_inline (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter> UnityEngine.UIElements.MouseManipulator::get_activators()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* MouseManipulator_get_activators_mAB6DB832B06575DF49E23F84AE0B79EACE0509C9_inline (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>::GetEnumerator()
|
|
inline Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F List_1_GetEnumerator_mC4AB20120E7F41BCC6005AF74C96E92B288FFCEB (List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F 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.ManipulatorActivationFilter>::Dispose()
|
|
inline void Enumerator_Dispose_m1E775D22EE18AAD3D98BA01D0A2AA668048CBF9C (Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F* __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.ManipulatorActivationFilter>::get_Current()
|
|
inline ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 Enumerator_get_Current_mB55E91F468F3CE1ECF040DA3CA7F8A6550C7A62B_inline (Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F* __this, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 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.ManipulatorActivationFilter>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m84E3A02B742FD4888E2BDFDA489A60F49727DC28 (Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.VisualElementPanelActivator::get_isActive()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool VisualElementPanelActivator_get_isActive_m6F081918AB91EABC70D5CD2B2D6948EC342637FE_inline (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::set_isActive(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementPanelActivator_set_isActive_m24D8DEA69844B06E802EA1FBEA607A9C0D2943A8_inline (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.AttachToPanelEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m929B5D5292DB931820A52428141FECB39016A6B7 (EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_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.AttachToPanelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.DetachFromPanelEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m0407B736C264F06C81E5CBB70EF40FBB975AC634 (EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_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.DetachFromPanelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B*, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m221D8BDDC2D60A7D22B11CBCC628C7990BE1C8F9_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::SendActivation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_SendActivation_m5CD4B9C71CA9AA83E14531E6A6EA4548E12C8350 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.AttachToPanelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_m70ECAB60D095EDB2BB60D44BC1ABBF8FB4853918 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.DetachFromPanelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mBB7D7B6A24C2AB04A9347FD693F502B54BDA3D9D (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::SendDeactivation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_SendDeactivation_m533376C3D489C7029083CA153336FE8CE9946807 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::set_isDetaching(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementPanelActivator_set_isDetaching_mCBE238B4B8C605C23C7B09853C0B095B537A1E23_inline (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdaterArray__ctor_mF33D908A0C339803B1442311DBF94FB7B5ACE3BF (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetDefaultUpdaters()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeUpdater_SetDefaultUpdaters_m6A6596852040EC7704881CD80BBC684F7FC65D56 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IVisualTreeUpdater UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UpdaterArray_get_Item_mCF3C06B0D09FE78D641E4AF53F5FEBCAED9FD10E (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IVisualTreeUpdater UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray::get_Item(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UpdaterArray_get_Item_m6DADA11557BD3FE2E6680F3C1F6F828DB4EE255C (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* __this, int32_t ___0_phase, 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.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<UnityEngine.UIElements.VisualTreeViewDataUpdater>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
inline void VisualTreeUpdater_SetUpdater_TisVisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_mB436EFFA13D99D35730E3F4C93C08C8CD422A709 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*, int32_t, const RuntimeMethod*))VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared)((VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*)__this, ___0_phase, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<UnityEngine.UIElements.VisualTreeBindingsUpdater>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
inline void VisualTreeUpdater_SetUpdater_TisVisualTreeBindingsUpdater_t6EF5299259D0A81E931840287AE6C7E43093A637_m0A357ED36B8D958B4F3102F39439BA475F390CE0 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*, int32_t, const RuntimeMethod*))VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared)((VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*)__this, ___0_phase, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<UnityEngine.UIElements.VisualElementAnimationSystem>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
inline void VisualTreeUpdater_SetUpdater_TisVisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_m0E425144C205AA20A3AE7C9A67DEA05D012F5EBD (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*, int32_t, const RuntimeMethod*))VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared)((VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*)__this, ___0_phase, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<UnityEngine.UIElements.VisualTreeStyleUpdater>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
inline void VisualTreeUpdater_SetUpdater_TisVisualTreeStyleUpdater_t5F2622AC7562F7647C21B9C3CB4D2B7E98C50D68_mAE1E73D29AB563BEC9FB6BAC26003F185B2D3446 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*, int32_t, const RuntimeMethod*))VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared)((VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*)__this, ___0_phase, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<UnityEngine.UIElements.UIRLayoutUpdater>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
inline void VisualTreeUpdater_SetUpdater_TisUIRLayoutUpdater_t90228F3698DB774BA11D4FBD7DCE8D08BE8DB5B3_m4620EBE804BE7EA33A438FD806F27A59B88EF94F (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*, int32_t, const RuntimeMethod*))VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared)((VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*)__this, ___0_phase, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<UnityEngine.UIElements.VisualTreeTransformClipUpdater>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
inline void VisualTreeUpdater_SetUpdater_TisVisualTreeTransformClipUpdater_t3DFB28E52D60790DE253FA5746D1E3CA20B33C67_mDB8ED3E891DCE40059863E94397200807BEB9597 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*, int32_t, const RuntimeMethod*))VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared)((VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*)__this, ___0_phase, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetUpdater<UnityEngine.UIElements.UIRRepaintUpdater>(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
inline void VisualTreeUpdater_SetUpdater_TisUIRRepaintUpdater_tA4093F3857EA96D9E5E9EFD7C18785C787E1408E_mE6D0EBAE20CF2F3FEDBC5F057D1B227A75EE0E8B (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*, int32_t, const RuntimeMethod*))VisualTreeUpdater_SetUpdater_TisIl2CppFullySharedGenericAny_m4EF351A8B23A4EE9E88C20E5398468F5AC304360_gshared)((VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9*)__this, ___0_phase, 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 System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel>::Invoke(T)
|
|
inline void Action_1_Invoke_m0790014ABCA2C117F049BB4CFCC730705B84C70A_inline (Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* __this, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___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.BaseVisualElementPanel UnityEngine.UIElements.BaseVisualTreeUpdater::get_panel()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* BaseVisualTreeUpdater_get_panel_mF6239BD11A1C6EDD79F9B012ABADCAFB1408FB22 (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, 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.Void System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>::.ctor()
|
|
inline void List_1__ctor_m90D257D81F60744827FBC0735C4BA1038EA92B1E (List_1_t491E344573B9D6F61E36AF56132B7412453928C9* __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.Dictionary`2<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>::.ctor()
|
|
inline void Dictionary_2__ctor_mC6AD8982CA3D110E6245DB0643FACB0CD5029E5B (Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*, const RuntimeMethod*))Dictionary_2__ctor_m7745B6ED71E47C95E1BFCE647C4F026A404C668F_gshared)((Dictionary_2_t5C32AF17A5801FB3109E5B0E622BA8402A04E08E*)__this, method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.Panel::TimeSinceStartupMs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B (const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat>(T&)
|
|
inline ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* StylePropertyAnimationSystem_GetOrCreate_TisValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2_m69BD3101A74B41321546E2751DF646D4EB610CB0 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<System.Single>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7DA7B0363D2265A7C217459845364E86F6D093AB (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, float ___2_startValue, float ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt>(T&)
|
|
inline ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* StylePropertyAnimationSystem_GetOrCreate_TisValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367_m46F0FADDB445430FB28DA5D1A5E4F6884D9A0D3A (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<System.Int32>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mB97CADACE8C091B57839011BE99CE92EC7A16744 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, int32_t ___2_startValue, int32_t ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength>(T&)
|
|
inline ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* StylePropertyAnimationSystem_GetOrCreate_TisValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915_m1D6B301065FC8678565A1A179ED187E6D7DBAF0B (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.Length>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisLength_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256_m35F10294C0F650E36D89179C9EBDD14F1BED06F6 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___2_startValue, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor>(T&)
|
|
inline ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* StylePropertyAnimationSystem_GetOrCreate_TisValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904_mDB2355711EE15D844723B2B521C5178F4902A6BA (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.Color>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mA6698B8B343450BE774AAFACE5329339B620513C (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___2_startValue, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground>(T&)
|
|
inline ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* StylePropertyAnimationSystem_GetOrCreate_TisValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34_m3AA63687C84FE888B431AC60F7EDE46679F9C363 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.Background>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisBackground_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_m4681675678ACD0B638F1DE5B61E1FB551007A685 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___2_startValue, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition>(T&)
|
|
inline ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* StylePropertyAnimationSystem_GetOrCreate_TisValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7_m980E27E4E6C02926D25BFFDEF0DF7B86D2C4B566 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.FontDefinition>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisFontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_m8E4D16083B78CFD9ACB4C401F281E9677C1BE232 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___2_startValue, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont>(T&)
|
|
inline ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* StylePropertyAnimationSystem_GetOrCreate_TisValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4_m2DB4B8CDC30AEA7F69E9AF175DEEEADF256997EE (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.Font>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m22AF562422138D87A2E30829811FEA3C1A62595F (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___2_startValue, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)___2_startValue, (Il2CppFullySharedGenericAny)___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow>(T&)
|
|
inline ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* StylePropertyAnimationSystem_GetOrCreate_TisValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C_m2DD45E28E05067361C23AF6459FC26220732E34C (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.TextShadow>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisTextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_mAF55C9EB61C8081E34D6DA31BB0B7749F7120DB4 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___2_startValue, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale>(T&)
|
|
inline ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* StylePropertyAnimationSystem_GetOrCreate_TisValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A_m5D936E7D89B0490962316F11C3199C376E575A7D (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.Scale>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisScale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_mCA0F0ADA23085C05A6E20E52FAC0B7FE37E5F40F (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___2_startValue, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate>(T&)
|
|
inline ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* StylePropertyAnimationSystem_GetOrCreate_TisValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63_m4D2646D45B81A1B5C91B8B7E7080F6E36A570778 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.Rotate>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisRotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_mF48ED781CBE6F243450F08A3CA66A160BA853FF1 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___2_startValue, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate>(T&)
|
|
inline ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* StylePropertyAnimationSystem_GetOrCreate_TisValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B_m9D347157570FF4DC0BC1A96EB5DC3A57DEA15B16 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.Translate>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisTranslate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_m0BCC34376C9BBAEB7315E9F98CF2FF0578E354B7 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___2_startValue, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// T UnityEngine.UIElements.StylePropertyAnimationSystem::GetOrCreate<UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin>(T&)
|
|
inline ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* StylePropertyAnimationSystem_GetOrCreate_TisValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F_m02C7F5437BD38F23BD0D7959FB0A6737F7F5E07C (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F** ___0_values, const RuntimeMethod* method)
|
|
{
|
|
ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* il2cppRetVal;
|
|
(( void (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType&*/Il2CppFullySharedGenericAny*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))StylePropertyAnimationSystem_GetOrCreate_TisIl2CppFullySharedGenericAny_m6AF28A93C46556C2DD21CCE29F1DD629E9A9890F_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, (Il2CppFullySharedGenericAny*)___0_values, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition<UnityEngine.UIElements.TransformOrigin>(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,T,T,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>,UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<T>)
|
|
inline bool StylePropertyAnimationSystem_StartTransition_TisTransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502_m6DA3A36592C69F444EC66E150A00D1E9D0D2E74F (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___2_startValue, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5* ___7_values, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, int32_t, int32_t, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2*, Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))StylePropertyAnimationSystem_StartTransition_TisIl2CppFullySharedGenericAny_mE706D3C8BDC81F443721E91FB0FC9F22123F88A7_gshared)((StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718*)__this, ___0_owner, ___1_prop, (Il2CppFullySharedGenericAny)&___2_startValue, (Il2CppFullySharedGenericAny)&___3_endValue, ___4_durationMs, ___5_delayMs, ___6_easingCurve, (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)___7_values, method);
|
|
}
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>::GetEnumerator()
|
|
inline Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF (List_1_t491E344573B9D6F61E36AF56132B7412453928C9* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 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.StylePropertyAnimationSystem/Values>::Dispose()
|
|
inline void Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1 (Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041* __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.StylePropertyAnimationSystem/Values>::get_Current()
|
|
inline Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_inline (Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041* __this, const RuntimeMethod* method)
|
|
{
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* 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.StylePropertyAnimationSystem/Values>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603 (Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// UnityEngine.UIElements.IStylePropertyAnimations UnityEngine.UIElements.VisualElement::get_styleAnimation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_styleAnimation_m34C349374229002AAF42A7DAD49AA9615EA154F1 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Assertions.Assert::AreEqual(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Assert_AreEqual_m718BB4BD31FA3176A3A236F96BC5405EB750D6CF (int32_t ___0_expected, int32_t ___1_actual, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.Dictionary`2<UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.StylePropertyAnimationSystem/Values>::TryGetValue(TKey,TValue&)
|
|
inline bool Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918 (Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* __this, int32_t ___0_key, Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24** ___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.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>::get_Count()
|
|
inline int32_t List_1_get_Count_m455005DED01B6E5D536CA667069173BC5464E2F2_inline (List_1_t491E344573B9D6F61E36AF56132B7412453928C9* __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<UnityEngine.UIElements.StylePropertyAnimationSystem/Values>::get_Item(System.Int32)
|
|
inline Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* List_1_get_Item_mF5AD649DC34CEE11565F944D25226AA88D945D43 (List_1_t491E344573B9D6F61E36AF56132B7412453928C9* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* 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.StylePropertyAnimationSystem/ElementPropertyPair::.ctor(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementPropertyPair__ctor_m9BD513920487E23168800342B43F48B61D0A46D9 (ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, int32_t ___1_property, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparer__ctor_m505ABC5FDCC5622B7B67BEC6D6101E06D76E6202 (EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Mathf::Approximately(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::LerpUnclamped(System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_LerpUnclamped_mF35042F9D25A221BDD4B3FD6251224610AFC1F35_inline (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::Lerp(System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ValuesFloat_Lerp_m151CC279DAC96CA0F7229EA722B951B2E62B76E4 (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.ComputedStyle& UnityEngine.UIElements.VisualElement::get_computedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_m3E3D317BB2FF1C9835557BB6599148AAEEE1C82C (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, float ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<System.Single,System.Single,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_mCB560C5C97586855BDB873C1D0EA1B393BAA6F29 (Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Single>::.ctor()
|
|
inline void Values_1__ctor_m5CE5F1D9F61E3AF72965AA1A75B51EED016BD774 (Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, method);
|
|
}
|
|
// System.Int32 UnityEngine.Mathf::RoundToInt(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline (float ___0_f, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::Lerp(System.Int32,System.Int32,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValuesInt_Lerp_mF1026E60C032E0FF4AA8C610FCBB9E2863E53854 (int32_t ___0_a, int32_t ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_m8BE2C9488B374D0DE6F613E0B9A5E4278C289956 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, int32_t ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<System.Int32,System.Int32,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_m5C0B07EE1619560A43C23CFB2723E33008414AC3 (Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<System.Int32>::.ctor()
|
|
inline void Values_1__ctor_m94B69C26ECEB0D2B15FE237DDF63030D0BC0B910 (Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, method);
|
|
}
|
|
// UnityEngine.UIElements.LengthUnit UnityEngine.UIElements.Length::get_unit()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Length_get_unit_m35495152DF180B333572A9BB8C24452530BB338E_inline (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.Length::get_value()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::TryConvertLengthUnits(UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Length&,UnityEngine.UIElements.Length&,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_TryConvertLengthUnits_mD88D65906149EBAD8B51D465F241C52D1CD88C2B (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, int32_t ___0_id, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* ___1_from, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* ___2_to, int32_t ___3_subPropertyIndex, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Length::.ctor(System.Single,UnityEngine.UIElements.LengthUnit)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Length__ctor_mFF11DAE709F70F30061EF7BDB3E7B4E18BB827CF (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, float ___0_value, int32_t ___1_unit, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::Lerp(UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ValuesLength_Lerp_mED26D7333C799606336B51C2EFD8B0CC2D32F581 (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___0_a, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Length)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_m61F54501D94D5F64A56D47485B820209AA1B656C (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_mA1BB586CA38162C3C120F9F49A2C9907C19B854C (Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Length>::.ctor()
|
|
inline void Values_1__ctor_mF2E3EEC44174E391276F9E3F4906DF800C856EA9 (Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, method);
|
|
}
|
|
// UnityEngine.Color UnityEngine.Color::LerpUnclamped(UnityEngine.Color,UnityEngine.Color,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_LerpUnclamped_m91027D026E64424B71959149B942F706FC16B1A2_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_a, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// UnityEngine.Color UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::Lerp(UnityEngine.Color,UnityEngine.Color,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ValuesColor_Lerp_mDED0CAB39FD7194116DE1749F84C83ECF0E847C3 (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_a, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_mFC305F6A073F93A9E9AD2E961464A6234D997B7D (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<UnityEngine.Color,UnityEngine.Color,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_mBECF17AD38818C4339F30DB97A29EFAAFC28010A (Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.Color>::.ctor()
|
|
inline void Values_1__ctor_m14E59C062E826E30FCDC4DEF3E693F23E4929089 (Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Background)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_mBE4DCABBA186FFCC598D3B284C7D9AD2697D4464 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.Background>::.ctor()
|
|
inline void ValuesDiscrete_1__ctor_mFDAFF02FCBE6E8293FD5C7BE340D296D32DF674F (ValuesDiscrete_1_t63B8F92F4DAABF488DAEF85235D684338A5BF983* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653*, const RuntimeMethod*))ValuesDiscrete_1__ctor_m2353EB0AC80FBB5DDABE4205539DD8F4E86DF4E3_gshared)((ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.FontDefinition)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_mF271FB5F0A6117CB99634A77BE99618CB7E58039 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.UIElements.FontDefinition>::.ctor()
|
|
inline void ValuesDiscrete_1__ctor_m0E4BD2599AB0377656A8065339C19DB6E099FC27 (ValuesDiscrete_1_tEEAF52293B68D5800CAC73A14E2C3B3B02E6C2B1* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653*, const RuntimeMethod*))ValuesDiscrete_1__ctor_m2353EB0AC80FBB5DDABE4205539DD8F4E86DF4E3_gshared)((ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.Font)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_m6BE29F60D9A8B3B11EBCB16C83CD043E0BCE5434 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesDiscrete`1<UnityEngine.Font>::.ctor()
|
|
inline void ValuesDiscrete_1__ctor_mA5E3A335CD04AB1496F9C42E7BDA9D6E1551BB66 (ValuesDiscrete_1_t3FE71D851C5B6AD9E518846FD0AE377C4FD977C8* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653*, const RuntimeMethod*))ValuesDiscrete_1__ctor_m2353EB0AC80FBB5DDABE4205539DD8F4E86DF4E3_gshared)((ValuesDiscrete_1_t4B9338D3FF386FB46ED7674DB80E9A855BBD5653*)__this, 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) ;
|
|
// UnityEngine.UIElements.TextShadow UnityEngine.UIElements.TextShadow::LerpUnclamped(UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 TextShadow_LerpUnclamped_m829CC5260DC0A0CA1DFF6E8EF93B188F2C013D8F (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_a, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TextShadow UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::Lerp(UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ValuesTextShadow_Lerp_mD2F4CC9ECE3B01D2089910A6CDE5C128D32620A4 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_a, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.TextShadow)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_mF351823AE017CED5C2CB01A99AAD4B5A05251DA3 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___2_newValue, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_m1E4B2F1F5895BCD897ED20F06995E856566152FD (Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TextShadow>::.ctor()
|
|
inline void Values_1__ctor_mDBBD3320F73277C566561C33397418535A8371EE (Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, 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.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Scale)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_mAB80BA3A40F4C5A5F9C9EFA5CEAECE4BD050F21F (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___2_newValue, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.Scale::get_value()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Scale_get_value_m27CE2F2A3DD1A14DE72EE744A3817BFE3D3DDD96_inline (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector3 UnityEngine.Vector3::LerpUnclamped(UnityEngine.Vector3,UnityEngine.Vector3,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_LerpUnclamped_m4109A459C1DB823310A10B8B1E80CB6877418347_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Scale::.ctor(UnityEngine.Vector3)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Scale__ctor_m39E255041BE0B30F8B48F55FED46CF90855D8DC0 (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7* __this, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_scale, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Scale UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::Lerp(UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ValuesScale_Lerp_mE08D434C6E9329653F7DB559E882815DD4729A4A (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___0_a, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_m6AF5E013428BF0FCF444506AA0ABFC642FEBF399 (Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Scale>::.ctor()
|
|
inline void Values_1__ctor_m516D4E8920F3D100B223855A347BD87B06985666 (Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, 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.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Rotate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_m170AFD22B09900C90A263FAA3DC59CBA524A5312 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___2_newValue, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Angle UnityEngine.UIElements.Rotate::get_angle()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC Rotate_get_angle_mF31EBAC339112FEEB451FC221CD60909745E7324_inline (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.Angle::ToDegrees()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Angle_ToDegrees_m287B1A6F3D500CD2E9A4583D1E31B4179EF5E434 (Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Angle UnityEngine.UIElements.Angle::op_Implicit(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC Angle_op_Implicit_m99D983290F15EACAFD646580FBA3093AC1333173 (float ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Rotate::.ctor(UnityEngine.UIElements.Angle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rotate__ctor_mC2FF8DC5F131DDA8027CE5CD2EA36B7B0D8F01B4 (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7* __this, Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC ___0_angle, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Rotate UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::Lerp(UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ValuesRotate_Lerp_m3289325A54C19AC54DBEBAED8C3B163B534B9D86 (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___0_a, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_mAD7AD1AC8461C375DEEB8E29A6AF11A1205F3718 (Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Rotate>::.ctor()
|
|
inline void Values_1__ctor_m93E0C4785A19CAE7F9E6AF562B3AC151F93C467E (Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, 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.VisualElement::TryConvertTranslateUnits(UnityEngine.UIElements.Translate&,UnityEngine.UIElements.Translate&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_TryConvertTranslateUnits_mC5A191DF5E7F93ACBC948ACAE3D32FCD61526962 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* ___0_from, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* ___1_to, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Translate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_m9C08F6D4F2A01E64132952B3597DA23175F640F8 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___2_newValue, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.Translate::get_x()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 Translate_get_x_m20B598ADBC230B32AA055FF13B07038E629AA599_inline (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.Translate::get_y()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 Translate_get_y_m587EA6A26C8B48C4B7D44B9B914A8DE3FAB42D80_inline (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.Translate::get_z()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Translate_get_z_mB2327E142162E26835FB78D9E48E0CAA1C387854_inline (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Translate::.ctor(UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Translate__ctor_mA8F128A2982F876C29861342C68C70C2D16B5094 (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___0_x, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Translate UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::Lerp(UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ValuesTranslate_Lerp_mE20FB2B219398D83C286BD2C4B4C89072A26D21E (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___0_a, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_m6F7F6F1DD17AA5951817C143CD9CC73B3813398D (Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.Translate>::.ctor()
|
|
inline void Values_1__ctor_m6C0823FA2DEF3358FC7605F415298C25AB5A0792 (Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, 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.VisualElement::TryConvertTransformOriginUnits(UnityEngine.UIElements.TransformOrigin&,UnityEngine.UIElements.TransformOrigin&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_TryConvertTransformOriginUnits_m5B6E5BD6EB79DC275F2DC4EB5D8BE312106FEFC9 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* ___0_from, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* ___1_to, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ComputedStyle::ApplyPropertyAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.TransformOrigin)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ComputedStyle_ApplyPropertyAnimation_mBA513685BCD35183C77A000841D86FD36A4FFFD3 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_id, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___2_newValue, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.TransformOrigin::get_x()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 TransformOrigin_get_x_m45B713C35F41919099DFE89257682A47EA02EB1C_inline (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.TransformOrigin::get_y()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 TransformOrigin_get_y_m2B16F6E4821E20812F1A091AB94F88558FA7EE44_inline (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.TransformOrigin::get_z()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TransformOrigin_get_z_m1B0602F587F9B7DF875C751BE1DA610E0CFBFAD7_inline (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TransformOrigin::.ctor(UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TransformOrigin__ctor_m8C94539319C6C02DFFC9178F4D6572DB15A6C563 (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___0_x, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TransformOrigin UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::Lerp(UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ValuesTransformOrigin_Lerp_mBFDA5F5AFE153322997485F08BB15CDD223447D4 (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___0_a, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// System.Void System.Func`3<UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_3__ctor_m2F359B22A6AE9B07F6A1B28BA8E0B93638366352 (Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*, RuntimeObject*, intptr_t, const RuntimeMethod*))Func_3__ctor_m3D53118DAA71CFFC80A4B21073B54F3C4EFA1C68_gshared)((Func_3_t009E60D2B88B8B844FB90881977A21CC70E688A4*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values`1<UnityEngine.UIElements.TransformOrigin>::.ctor()
|
|
inline void Values_1__ctor_mFFEF26A8BD0E03F73FCD1306CBAD763A96908EC3 (Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*, const RuntimeMethod*))Values_1__ctor_mD777D1BABD541B17F98B1C9D94F87D9335E6AE8C_gshared)((Values_1_tD44BBEC769B1388DCA51C01019802B242F987014*)__this, method);
|
|
}
|
|
// System.Void System.ArgumentNullException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* __this, String_t* ___0_paramName, const RuntimeMethod* method) ;
|
|
// UnityEngine.Matrix4x4& UnityEngine.UIElements.VisualElement::get_worldTransformInverse()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* VisualElement_get_worldTransformInverse_m3F6A138010EDD0ADB850092717003E8E38226980 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.VisualElement::MultiplyMatrix44Point2(UnityEngine.Matrix4x4&,UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 VisualElement_MultiplyMatrix44Point2_m0D9B66607EF7792AA21696927BAA8404C403EA60_inline (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_point, const RuntimeMethod* method) ;
|
|
// UnityEngine.Matrix4x4& UnityEngine.UIElements.VisualElement::get_worldTransformRef()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* VisualElement_get_worldTransformRef_m25AB63C70B9C7965FEC38C1711316A47608D5276 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::CalculateConservativeRect(UnityEngine.Matrix4x4&,UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElement_CalculateConservativeRect_mA2F03F761381779D00E25C96C1DCE61A181A77EA (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* ___0_matrix, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_rect, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Clickable::get_acceptClicksIfDisabled()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Clickable_get_acceptClicksIfDisabled_mA0E7C1A446C04D7998C902BAA933460DA3D3C18B_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Clickable::.ctor(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable__ctor_mCB2B71EB5818A9A1BB1916BBA2FE4BC983575DEB (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_handler, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Clickable::set_active(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerManipulator::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerManipulator__ctor_m3601286974D5012B87BC27898ADC9E80B28EF451 (PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>::Add(T)
|
|
inline void List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_inline (List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* __this, ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 ___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.Boolean UnityEngine.UIElements.Clickable::IsRepeatable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_IsRepeatable_m02FD0CC8471886B591B8E31B2135AF58F33948DD (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Clickable::ContainsPointer(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_ContainsPointer_m0BD6507CF4D41C5EA255A4FDE08A5D7F1CF77670 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Clickable::Invoke(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_Invoke_mD6F0CC4768D3E91318853985DBDEB37EDC49A283 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.Manipulator::get_target()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B (Manipulator_tD5727ABA1F5AD1A50927212FAEB090E6BBCB4EBE* __this, const RuntimeMethod* 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.EventCallback`1<UnityEngine.UIElements.MouseDownEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m709C5400BF973916ABE27FC11BD3B70EA36C5CE1 (EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17* __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);
|
|
}
|
|
// UnityEngine.UIElements.InvokePolicy UnityEngine.UIElements.Clickable::get_invokePolicy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Clickable_get_invokePolicy_mB16CCE5A5E6FD2D0C217FA720974BE1EA11E7DCD (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::RegisterCallback<UnityEngine.UIElements.MouseDownEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_m973B21C3368658DD783507954107DBB7A0D4BA7C (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseMoveEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mCA0DCF43EAD18240BC82AE75C53976B3B168D12B (EventCallback_1_t074F374661507958319B62431E9384D959AA1B09* __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.MouseMoveEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_mF457ADEA74CE4B568350D53896F186F482F473C0 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t074F374661507958319B62431E9384D959AA1B09* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t074F374661507958319B62431E9384D959AA1B09*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_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.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8269D1AF3457E7474A8EB8A380D6F2DBCDA2E649 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.MouseCaptureOutEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m076456FB06343B8982243DCB7572A7199E506263 (EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B* __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.MouseCaptureOutEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_m81C10E53CAC3EFE4C8A66ACC3CF4D2BA06A01A04 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerDownEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mCDF2316FE391D783EF33C433EB59E5DF474C5398 (EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_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.PointerDownEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m31B47377B2600C76864A89BB9F281B73D042B4F7 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerMoveEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mF3F9B006713A25FE54BB4DD7611B7A56ABDC7596 (EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_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.PointerMoveEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mE3153A790D51A1FBD515EBF3FE36AF9D4DCD1BD7 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerUpEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_mE64B79996B25171AA5DCBD2AFBB71A1A8C38B6E5 (EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_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.PointerUpEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_mF32CB6B5935957C0761E707801C9062199B61786 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCancelEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m24CD07E9D8DA8BCAE0446636AB9C0622C36DF10C (EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (EventCallback_1_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.PointerCancelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4261C8B7CCD0487DCB444E9F1D99595D3F0417EE (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventCallback`1<UnityEngine.UIElements.PointerCaptureOutEvent>::.ctor(System.Object,System.IntPtr)
|
|
inline void EventCallback_1__ctor_m03D5D6D2A51BFDF58AF3F2307AD44B24B60A7B1B (EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF* __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.PointerCaptureOutEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.InvokePolicy,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_RegisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m1436561BBA8BC9BFF0E0F4374906B6D7F67D2265 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF* ___0_callback, int32_t ___1_invokePolicy, int32_t ___2_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF*, int32_t, int32_t, const RuntimeMethod*))CallbackEventHandler_RegisterCallback_TisRuntimeObject_m084BF1775D11490688A8705EE6F6FFDE63E0462E_gshared)(__this, ___0_callback, ___1_invokePolicy, ___2_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.MouseDownEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_mC9D851A09DE940C7F3D8C12F74FFB775C9483948 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.MouseMoveEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_m2596702F982363AAE007826D14FFF28641A8AEBB (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t074F374661507958319B62431E9384D959AA1B09* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t074F374661507958319B62431E9384D959AA1B09*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.MouseUpEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8D4200FB7F0D6DD78D774B7384306E96798C184B (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_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.MouseCaptureOutEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_mEB2BBAD218BC5F310A502DB49C1487C9DBCCCDE7 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerDownEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerMoveEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerUpEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerCancelEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18 (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::UnregisterCallback<UnityEngine.UIElements.PointerCaptureOutEvent>(UnityEngine.UIElements.EventCallback`1<TEventType>,UnityEngine.UIElements.TrickleDown)
|
|
inline void CallbackEventHandler_UnregisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m96B8A002675366436500646208EB3C2FBAE3502A (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF* ___0_callback, int32_t ___1_useTrickleDown, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4*, EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF*, int32_t, const RuntimeMethod*))CallbackEventHandler_UnregisterCallback_TisRuntimeObject_m2E6CDD2C9FDA8EDB685996370F77E36063A68CD6_gshared)(__this, ___0_callback, ___1_useTrickleDown, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseManipulator::CanStartManipulation(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseManipulator_CanStartManipulation_mA8982ABD8ECE0F529EF47AE8065D1AF8DF523DC1 (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, RuntimeObject* ___0_e, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseDownEvent>::get_localMousePosition()
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseEventBase_1_get_localMousePosition_m7E2B067F4C1294AAA0B5AB391297BCF04C990ED4_inline (MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (MouseEventBase_1_t236F036084AFE2993D8121CCFDC53AAB6C278ECF*, const RuntimeMethod*))MouseEventBase_1_get_localMousePosition_m6FB2AFCA7C36A008619542851C365CAD9C3864C5_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Clickable::get_active()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseMoveEvent>::get_localMousePosition()
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseEventBase_1_get_localMousePosition_mE5C3F1309BEB0619604BFA1B5039816FE73A10E5_inline (MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (MouseEventBase_1_tFA26278C8536EEAB946AD40D0005CD3F0B0D8067*, const RuntimeMethod*))MouseEventBase_1_get_localMousePosition_m6FB2AFCA7C36A008619542851C365CAD9C3864C5_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseManipulator::CanStopManipulation(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseManipulator_CanStopManipulation_m6BDD39352CCB9AEBC632B876072F616A5693136C (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, RuntimeObject* ___0_e, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.MouseEventBase`1<UnityEngine.UIElements.MouseUpEvent>::get_localMousePosition()
|
|
inline Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseEventBase_1_get_localMousePosition_mDE94950434E8550D10DCF82EBDDFAD9FA6999DF1_inline (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 (*) (MouseEventBase_1_t46809EA36A0565CF67A1688881999B3118F91E83*, const RuntimeMethod*))MouseEventBase_1_get_localMousePosition_m6FB2AFCA7C36A008619542851C365CAD9C3864C5_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerManipulator::CanStartManipulation(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerManipulator_CanStartManipulation_m9D53C068740EA802585EA65B19AA4AC7B3251387 (PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72* __this, RuntimeObject* ___0_e, 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);
|
|
}
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerDownEvent>::get_localPosition()
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEventBase_1_get_localPosition_m9E543CA223482A9514B0F78D60360D65EC8E3FD4_inline (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (PointerEventBase_1_t7591EB7533D2DA4AE63C7E535343F090911843C9*, const RuntimeMethod*))PointerEventBase_1_get_localPosition_m2A8E02DBA7F7F7A8519822E757D084204BE7D90D_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::op_Implicit(UnityEngine.Vector3)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_v, const RuntimeMethod* method) ;
|
|
// 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.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.EventBase::StopImmediatePropagation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_StopImmediatePropagation_m2D6646624DDC02AE96657F5EAD5BC0361380A8DA (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>::get_pointerId()
|
|
inline int32_t PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_inline (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B*, const RuntimeMethod*))PointerEventBase_1_get_pointerId_mF0B5F3F2655036A39E6ECAB56386CADBFDF1CF99_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerMoveEvent>::get_localPosition()
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEventBase_1_get_localPosition_m38DF70FA116B536F7D26200F9947A0F04105F6BF_inline (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (PointerEventBase_1_tED9D60928194E4D1F6C5F9C95D258E9102815B4B*, const RuntimeMethod*))PointerEventBase_1_get_localPosition_m2A8E02DBA7F7F7A8519822E757D084204BE7D90D_gshared_inline)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::StopPropagation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.PointerManipulator::CanStopManipulation(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerManipulator_CanStopManipulation_mD4ECC120E2162AE51EA28C5292C97203D3C0A48E (PointerManipulator_t54685840D83869016F04FD137BCC1B07016B2E72* __this, RuntimeObject* ___0_e, 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);
|
|
}
|
|
// UnityEngine.Vector3 UnityEngine.UIElements.PointerEventBase`1<UnityEngine.UIElements.PointerUpEvent>::get_localPosition()
|
|
inline Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEventBase_1_get_localPosition_m3941BBAAC0355C583681F3A5ECBA8FCAB5F1DACC_inline (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 (*) (PointerEventBase_1_t2DFB78320E5810F8163F6CF5D3C5537CF40B2496*, const RuntimeMethod*))PointerEventBase_1_get_localPosition_m2A8E02DBA7F7F7A8519822E757D084204BE7D90D_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);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Clickable::IsNotMouseEvent(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_IsNotMouseEvent_m999E171FF52AE833AA69692BC67EEEC6C47E9FE9 (int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>::get_pointerId()
|
|
inline int32_t PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_inline (PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (PointerCaptureEventBase_1_tB71E4AEB34E7FFC989F93E9B522D53DFAEE2CE7F*, const RuntimeMethod*))PointerCaptureEventBase_1_get_pointerId_m4E4F2967D333957F5F474673769B7FFFC128A89A_gshared_inline)(__this, method);
|
|
}
|
|
// UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.VisualElement::get_elementPanel()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualElementPanel::GetTopElementUnderPointer(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BaseVisualElementPanel_GetTopElementUnderPointer_mDB876CD969BE130AC4E687554E08334ECBEB6B30 (BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::Contains(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_Contains_m67C850F752124028022996B851C2008877C19D3D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_child, const RuntimeMethod* method) ;
|
|
// System.Void System.Action::Invoke()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<UnityEngine.UIElements.EventBase>::Invoke(T)
|
|
inline void Action_1_Invoke_m214EB2FECBDDD2E7E84E7E03926BE2C12188B648_inline (Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___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.IVisualElementScheduler UnityEngine.UIElements.VisualElement::get_schedule()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_schedule_m2BFE6967ED82371ACE1CD1FC32B8D8B93646ED76 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action::.ctor(System.Object,System.IntPtr)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerCaptureHelper::CapturePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_CapturePointer_m7A647567160ADA0E052A7277C5B531D7A01E5F7F (RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* 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.Clickable::set_lastMousePosition(UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Clickable_set_lastMousePosition_m62DECE599D6299F5C39D0D9807595C7172BAEA9D_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<UnityEngine.UIElements.TimerState>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_1__ctor_mE69EF7642D4840F2095C4588AAFAC6E9F09C2BC4 (Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB* __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.PointerCaptureHelper::ReleasePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_ReleasePointer_m0FF47D46D610A94601B72E011344700B0EA7E1B9 (RuntimeObject* ___0_handler, int32_t ___1_pointerId, 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.Void System.Exception::.ctor(System.String,System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3 (Exception_t* __this, String_t* ___0_message, Exception_t* ___1_innerException, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption>::GetEnumerator()
|
|
inline Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4 List_1_GetEnumerator_mB81904DD9F8BBAD002BD6BDFC99AB65DD09C64D5 (List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4 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.IGroupBoxOption>::Dispose()
|
|
inline void Enumerator_Dispose_m54D61812DE105E7F4C24E076AB25CEF9584EA380 (Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4* __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.IGroupBoxOption>::get_Current()
|
|
inline RuntimeObject* Enumerator_get_Current_mD71C654327EF0D36B08754E1B2E88D98B0C072FB_inline (Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* 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.IGroupBoxOption>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m3D3EF5A0D29EF3803BF56A7CEA227F429DF6B908 (Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption>::Contains(T)
|
|
inline bool List_1_Contains_m79D8EB0D7DDAC8DBBB1AB267B3A968D575204315 (List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* __this, RuntimeObject* ___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.Void System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption>::Add(T)
|
|
inline void List_1_Add_mEC4AFB1C1B47B80C8CE673FC608034E0E1EE11FA_inline (List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* __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.Boolean System.Collections.Generic.List`1<UnityEngine.UIElements.IGroupBoxOption>::Remove(T)
|
|
inline bool List_1_Remove_mC512258925EB9D29B979DDA7BAFFFB9841276117 (List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* __this, RuntimeObject* ___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.IGroupBoxOption>::.ctor()
|
|
inline void List_1__ctor_m738CDEA3CD6005CFD260118E692A8B3B5FB9AE88 (List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Boolean System.Delegate::op_Inequality(System.Delegate,System.Delegate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Delegate_op_Inequality_mA9EAADBA0C976289CCD49DC5A4BEDBB060B579E0 (Delegate_t* ___0_d1, Delegate_t* ___1_d2, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::IncrementVersion(UnityEngine.UIElements.VersionChangeType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, int32_t ___0_changeType, 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) ;
|
|
// System.Void UnityEngine.ObjectGUIState::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectGUIState__ctor_mA9AB2887ABAF5102164545D7F0CE59BCF05618B4 (ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUILayoutUtility/LayoutCache::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutCache__ctor_m73B4DC62A0A7669976C8444DDB54EF8D55BF3E0B (LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* __this, int32_t ___0_instanceID, const RuntimeMethod* method) ;
|
|
// UnityEngine.GUILayoutUtility/LayoutCache UnityEngine.UIElements.IMGUIContainer::get_cache()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* IMGUIContainer_get_cache_m69FF965A5AB8DE696430288B4E5EB2D3CB711969 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::get_focusOnlyIfHasFocusableControls()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IMGUIContainer_get_focusOnlyIfHasFocusableControls_mC1087D0F8DA51A70FD651042D1D8795DB4BE9E80_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::get_canGrabFocus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_get_canGrabFocus_m448AC85544D4CC6AD51B90AA08DECC90CF9725F4 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m093934F71A9B351911EE46311674ED463B180006 (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, String_t* ___3_str3, 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.Event::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, 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) ;
|
|
// System.Void System.Collections.Generic.List`1<System.String>::.ctor(System.Int32)
|
|
inline void List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __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.String System.Int32::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5 (int32_t* __this, 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 System.Collections.Generic.List`1<System.String>::Add(T)
|
|
inline void List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, String_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);
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::.ctor(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer__ctor_m2700E6D656455D1D78D9A4AFEBADC1168D49198E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_onGUIHandler, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.Rect::get_zero()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D (const RuntimeMethod* method) ;
|
|
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::get_identity()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_get_identity_m6568A73831F3E2D587420D20FF423959D7D8AB56_inline (const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::get_unspecified()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::AddToClassList(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_className, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::set_onGUIHandler(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_set_onGUIHandler_mB08A4DDA7AE1A37E6BE5FAF1002DF87C1E291966 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::set_contextType(UnityEngine.UIElements.ContextType)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IMGUIContainer_set_contextType_m937F47F6F399E6A209CFB3A25DDE6BCB0A2FB17F_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Focusable::set_focusable(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_requireMeasureFunction(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_requireMeasureFunction_mE3D5BF29B294B0BBB7422D53743A5A5B6E35178B (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Action`1<UnityEngine.UIElements.MeshGenerationContext> UnityEngine.UIElements.VisualElement::get_generateVisualContent()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* VisualElement_get_generateVisualContent_m11390D5634144E49934046B08681F7B7F0A94986_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Action`1<UnityEngine.UIElements.MeshGenerationContext>::.ctor(System.Object,System.IntPtr)
|
|
inline void Action_1__ctor_m5C07588C369385A2FE8666A6C07F46762049C6AC (Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* __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.VisualElement::set_generateVisualContent(System.Action`1<UnityEngine.UIElements.MeshGenerationContext>)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElement_set_generateVisualContent_m1D95FEC130DF500C82FAAC2537BBF7FEE2519C15_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.RepaintData::get_currentWorldClip()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D RepaintData_get_currentWorldClip_mE52CAF22424660749DDE20C3E02B15E735FC05DF_inline (RepaintData_t90534752135661579EC254884F550545D001B5EA* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::set_lastWorldClip(UnityEngine.Rect)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IMGUIContainer_set_lastWorldClip_mC822DD231DA4F87845FB5FAD4F5BB36CDE429AF6_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::get_cullingEnabled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_get_cullingEnabled_mEDAF2AB7C37F2AB11C268BDFFB33718618FA237E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Matrix4x4 UnityEngine.GUI::get_matrix()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 GUI_get_matrix_m3CA02DED0598EE32BD9E66CA533A78EFB0A246FC (const RuntimeMethod* method) ;
|
|
// UnityEngine.Color UnityEngine.GUI::get_color()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F GUI_get_color_m15488B4AD785D10DEB5C66398D0FA9A0C0EA7ABB (const RuntimeMethod* method) ;
|
|
// UnityEngine.Color UnityEngine.GUI::get_contentColor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F GUI_get_contentColor_m32B15C8D6BEEFEBCE667ECD3CF664C83224F103F (const RuntimeMethod* method) ;
|
|
// UnityEngine.Color UnityEngine.GUI::get_backgroundColor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F GUI_get_backgroundColor_mCAA42085DAB8A1B71E2D0C6C8D86F93CD311FA33 (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.GUI::get_enabled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUI_get_enabled_m336E115A84DBD8D18A925D0755B51746B98B516D (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.GUI::get_changed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUI_get_changed_m3473B2964DCE8C2ADE081517093168C171BBE448 (const RuntimeMethod* method) ;
|
|
// UnityEngine.Event UnityEngine.Event::get_current()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Event::get_displayIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_displayIndex_m7DBF1B18DD9B5E5B4EEA979FCA87351E3E5B16C3 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUI::set_matrix(UnityEngine.Matrix4x4)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_matrix_m7759FEC96FBCB97E02B1BA44D2EC1B3FEEFA257F (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUI::set_color(UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_color_mA44927D3F2ACB1E228815F10042A6F62B7645648 (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUI::set_contentColor(UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_contentColor_m3CDC4D626AC8B6D487AD19765D79C593B98AEF26 (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUI::set_backgroundColor(UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_backgroundColor_m4ED80300A7DE3EAF923E3344E22D6682FA75B264 (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUI::set_enabled(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_enabled_mF2F99A6870ACAFAEFB5E8FF1B69C684951D390C9 (bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUI::set_changed(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUI_set_changed_mBD91A44AFA77D2BF883B3150AF4AE6AC3ED121DC (bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Event::set_displayIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_displayIndex_m8208F1B0471C0B45C0BB248F9A0178EB40FBE100 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.GUIClip::Internal_GetCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUIClip_Internal_GetCount_m83C187F97642C73B9241C9A026CDA89A7A9EB8D1 (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::SaveGlobals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_SaveGlobals_m7662036CE69A8680EE0F3E9FF4B761A2388E6A3C (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.IMGUIContainer::get_layoutMeasuredWidth()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float IMGUIContainer_get_layoutMeasuredWidth_mAEC590B17A0768CC86B13C3E574C725752881C64 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.IMGUIContainer::get_layoutMeasuredHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float IMGUIContainer_get_layoutMeasuredHeight_m720CFD0987486CB4D9417004EE3D6B5D0ADFB76D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UIElementsUtility::BeginContainerGUI(UnityEngine.GUILayoutUtility/LayoutCache,UnityEngine.Event,UnityEngine.UIElements.IMGUIContainer)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIElementsUtility_BeginContainerGUI_m5C6B184089BBDF8BA384DF8C77FBBC7040539FB9 (LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* ___0_cache, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___1_evt, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* ___2_container, const RuntimeMethod* method) ;
|
|
// UnityEngine.EventType UnityEngine.Event::get_type()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.GUIUtility::get_keyboardControl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E (const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.GUIUtility::OwnsId(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_OwnsId_m46FE01F2CEF3A94173A1DB64A888E4DB1EBC74D2 (int32_t ___0_id, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIUtility::set_keyboardControl(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_set_keyboardControl_m10F53FE5B292C2DC3C9A55CB504CC0DF36139465 (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::set_imguiKeyboardControl(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::get_none()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline (const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::get_left()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusChangeDirection_get_left_mC921347E5D037C1D96D254C565831368C7C00183_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIUtility::SetKeyboardControlToLastControlId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_SetKeyboardControlToLastControlId_mB7A3C208ADDF009FB9C3C522998459BCD9B107EB (const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::get_right()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusChangeDirection_get_right_m7ABCCCB1E11E601279097312838B4CB93AC9BD9F_inline (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIUtility::SetKeyboardControlToFirstControlId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_SetKeyboardControlToFirstControlId_m02DF215A0F07822021E17AF4153B4C31468287C0 (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.FocusController::get_imguiKeyboardControl()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FocusController_get_imguiKeyboardControl_mE4C649D44C402954EE90C4B648A0EA349A999AEA_inline (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.GUIUtility::CheckForTabEvent(UnityEngine.Event)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUIUtility_CheckForTabEvent_m6AC98E67A89330ACB330CBBC135E3DFBFCAC2C49 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_evt, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::GetLeafFocusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.KeyboardEventBase`1<UnityEngine.UIElements.KeyDownEvent>::GetPooled(System.Char,UnityEngine.KeyCode,UnityEngine.EventModifiers)
|
|
inline KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* KeyboardEventBase_1_GetPooled_m2A3CDA8BEAE1A4DD06BD2B6FDF65F77F27369F45 (Il2CppChar ___0_c, int32_t ___1_keyCode, int32_t ___2_modifiers, const RuntimeMethod* method)
|
|
{
|
|
return (( KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* (*) (Il2CppChar, int32_t, int32_t, const RuntimeMethod*))KeyboardEventBase_1_GetPooled_m8D5F7867C432E60172A3B43597E4CB0804A604B3_gshared)(___0_c, ___1_keyCode, ___2_modifiers, method);
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::SwitchFocusOnEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_SwitchFocusOnEvent_m232D08BF98D608576E1B00506B02C21B37B09FFD (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::SyncIMGUIFocus(System.Int32,UnityEngine.UIElements.Focusable,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_SyncIMGUIFocus_m3F9F2EB6DAE3E833A9D8299A55B171EEB823ACEF (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, int32_t ___0_imguiKeyboardControlID, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_imguiContainerHavingKeyboardControl, bool ___2_forceSwitch, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.GUIUtility::HasFocusableControls()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_HasFocusableControls_mE149711C5695D4DB44940D8073487992F1ACB883 (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIClip/ParentClipScope::.ctor(UnityEngine.Matrix4x4,UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParentClipScope__ctor_m5251E311D308625C438134442CA69D75E872DCD4 (ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52* __this, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_objectTransform, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_clipRect, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIClip/ParentClipScope::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ParentClipScope_Dispose_m39F5E11A8E9346D5ADE850A5A600A675589E786D (ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.GUIUtility::IsExitGUIException(System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_IsExitGUIException_mB887DAF961E8C1124916777B812FBF2324F5265F (Exception_t* ___0_exception, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::LogException(System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0 (Exception_t* ___0_exception, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UIElementsUtility::EndContainerGUI(UnityEngine.Event,UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIElementsUtility_EndContainerGUI_m7E5929AE50C4DB7194E3B8613980F75F89CA6310 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_evt, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_layoutSize, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::RestoreGlobals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_RestoreGlobals_m04BA5ACEE189911C1CFF951701BF0BDB191E1026 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Rect::op_Equality(UnityEngine.Rect,UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Rect_op_Equality_mF2A038255CAF5F1E86079B9EE0FC96DE54307C1F (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_lhs, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_rhs, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::LogError(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIClip::Internal_Pop()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIClip_Internal_Pop_m99B82F9D059E587FD37DEEB41385076E16162E62 (const RuntimeMethod* method) ;
|
|
// 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) ;
|
|
// 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) ;
|
|
// UnityEngine.Event UnityEngine.UIElements.EventBase::get_imguiEvent()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_isPropagationStopped()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __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::PreventDefault()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.RepaintData::get_currentOffset()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 RepaintData_get_currentOffset_m3892F6A8C226B0710B9A149DDAAF87E1B208675F_inline (RepaintData_t90534752135661579EC254884F550545D001B5EA* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::get_worldClip()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElement_get_worldClip_m61B2DBE3962B9D3E328933EE88CC7B70DE7B711A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::ComputeAAAlignedBound(UnityEngine.Rect,UnityEngine.Matrix4x4)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElement_ComputeAAAlignedBound_m6127DD99C85C7AA497C0AC3E58138D9BD4DB32A4 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_position, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_mat, const RuntimeMethod* method) ;
|
|
// UnityEngine.Matrix4x4 UnityEngine.UIElements.VisualElement::get_worldTransform()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 VisualElement_get_worldTransform_m706C9ADA6ADFBA381EDCAD418040C9F30D42E96A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::op_Multiply(UnityEngine.Matrix4x4,UnityEngine.Matrix4x4)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_op_Multiply_m75E91775655DCA8DFC8EDE0AB787285BB3935162 (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___0_lhs, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_rhs, const RuntimeMethod* method) ;
|
|
// UnityEngine.Event UnityEngine.UIElements.RepaintData::get_repaintEvent()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* RepaintData_get_repaintEvent_mFF94EDCD02BDF49EC4C8DF4A34DA0AADAD177F2E_inline (RepaintData_t90534752135661579EC254884F550545D001B5EA* __this, const RuntimeMethod* method) ;
|
|
// System.Action UnityEngine.UIElements.IMGUIContainer::get_onGUIHandler()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* IMGUIContainer_get_onGUIHandler_mB8C7886B0E2B094D2D42F6E2C5CCAD4B131D64FA (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::HandleIMGUIEvent(UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_HandleIMGUIEvent_m9B04CA2F52F62EF5B2151EE5565FD9B7066A3118 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_worldTransform, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___2_clippingRect, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___3_onGUIHandler, bool ___4_canAffectFocus, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Event::get_isDirectManipulationDevice()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Event_get_isDirectManipulationDevice_m9A72FB2DF7803E189857D24A65FB568B17533ED0 (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __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.Boolean UnityEngine.UIElements.IMGUIContainer::SendEventToIMGUIRaw(UnityEngine.UIElements.EventBase,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_SendEventToIMGUIRaw_mB65CFD99A5904BA6826BE228AA860ABC1988A35E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, bool ___1_canAffectFocus, bool ___2_verifyBounds, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::VerifyBounds(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_VerifyBounds_mE7304B71C46FC2C54766E1D1D98BA3EAB17309B3 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, 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) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::HandleIMGUIEvent(UnityEngine.Event,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_HandleIMGUIEvent_m4B537F6CFE94EA9276E936B6BF19836F5469498C (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, bool ___1_canAffectFocus, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsContainerCapturingTheMouse()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsContainerCapturingTheMouse_mA737CB964462D5E5D6BD911AA2AAC79A6F470A0D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsLocalEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsLocalEvent_m1AB8B062156716F034B30C60FDDC4B2EC83E9E0D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsEventInsideLocalWindow(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsEventInsideLocalWindow_m38CAC057F08045A52782654EDC5FA92A6F6CBF6E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsDockAreaMouseUp(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsDockAreaMouseUp_m16D8D5C5CA84AE9B3FC3E7D18AF0A764F7594D24 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PointerDispatchState UnityEngine.UIElements.EventDispatcher::get_pointerState()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.PointerDispatchState::GetCapturingElement(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerDispatchState_GetCapturingElement_m84B2B033EC3CCAD4613D6A83C13C25EC8907D891 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseDownEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseUpEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.MouseMoveEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerDownEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerUpEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.PointerMoveEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.IMGUIContainer::GetCurrentClipRect()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D IMGUIContainer_GetCurrentClipRect_mDC9FA62A4A58133960C800981F08FC98CD4448B7 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// 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) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.EventBase::get_originalMousePosition()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.GUIUtility::HitTest(UnityEngine.Rect,UnityEngine.Vector2,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GUIUtility_HitTest_m8C93A1BFB637176154C02F73038A98D1F616A7C2 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_rect, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_point, bool ___2_isDirectManipulationDevice, 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.Boolean UnityEngine.UIElements.IMGUIContainer::HandleIMGUIEvent(UnityEngine.Event,System.Action,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_HandleIMGUIEvent_m1D6C1113827F41A692360E26043AA7723AF0ADFE (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___1_onGUIHandler, bool ___2_canAffectFocus, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::GetCurrentTransformAndClip(UnityEngine.UIElements.IMGUIContainer,UnityEngine.Event,UnityEngine.Matrix4x4&,UnityEngine.Rect&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_GetCurrentTransformAndClip_m145DE31D768985A4D999675B9891B2EFE440DBFC (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* ___0_container, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___1_evt, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* ___2_transform, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* ___3_clipRect, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.EventInterests::WantsEvent(UnityEngine.EventType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventInterests_WantsEvent_mD34E2AD1F937EE03C9C29882672F400AD3C3E5B6 (EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8* __this, int32_t ___0_type, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.EventInterests::WantsLayoutPass(UnityEngine.EventType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventInterests_WantsLayoutPass_m403675D6BA834A05764A2C2558ECBCE90C8D066B (EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8* __this, int32_t ___0_type, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::get_layout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::DoOnGUI(UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Boolean,UnityEngine.Rect,System.Action,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_DoOnGUI_mDF396AFB9BB8C4E4738AECA40F7F5A6192F9C645 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_evt, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_parentTransform, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___2_clippingRect, bool ___3_isComputingLayout, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___4_layoutSize, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___5_onGUIHandler, bool ___6_canAffectFocus, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUILayoutUtility/LayoutCache::ResetCursor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LayoutCache_ResetCursor_m728841782E13F82B1AE96E40AF16D6C8EBE6D59A (LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Event::set_commandName(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Event_set_commandName_m8DA7262E1CD1005911EAB9777DE9FEC2D97504FA (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.MouseCaptureController::HasMouseCapture(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseCaptureController_HasMouseCapture_mFFD49E6A07FF28D47B66DB9C36CFB011933B9CEA (RuntimeObject* ___0_handler, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIUtility::set_hotControl(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_set_hotControl_mFBC648186C83874DE776A508C420183ADB527E9A (int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.GUIUtility::ExitGUI()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUIUtility_ExitGUI_m9B30B2DFC94CC1C04D1F78358D79E9DAC1231B03 (const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.BlurEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.FocusEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>::get_direction()
|
|
inline FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusEventBase_1_get_direction_m895C80142080B880EA2AC1FD7F0CA16ACA75866F_inline (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* (*) (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A*, const RuntimeMethod*))FocusEventBase_1_get_direction_mCCB2D3D34DDDE8B4356F24D58ED52CC0F008F7D3_gshared_inline)(__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>::get_IsFocusDelegated()
|
|
inline bool FocusEventBase_1_get_IsFocusDelegated_m592E9CB880F68069E1D2C7E1AEB1229ACB0CEFA1_inline (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (FocusEventBase_1_t26C6D9D6518CF73A14D460E73B00F842D4C8FD3A*, const RuntimeMethod*))FocusEventBase_1_get_IsFocusDelegated_m59F1CF51ACF3A0C6CC65B946635F1A5692443DAB_gshared_inline)(__this, method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.DetachFromPanelEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.AttachToPanelEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::SetFoldoutDepthClass()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_SetFoldoutDepthClass_m6B2F413286FFAE7EAE276B1C2231CC51656A8044 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// T System.Collections.Generic.List`1<System.String>::get_Item(System.Int32)
|
|
inline String_t* List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8 (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
String_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.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.Int32 System.Collections.Generic.List`1<System.String>::get_Count()
|
|
inline int32_t List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* __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.Int32 UnityEngine.UIElements.VisualElementUtils::GetFoldoutDepth(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElementUtils_GetFoldoutDepth_mBD40209DEA954F8D8EC866B8C27902AEDAAD60AB (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, 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.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.Rect::set_width(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::set_height(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Min(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
// System.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) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.IMGUIContainer::get_lastWorldClip()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D IMGUIContainer_get_lastWorldClip_m8C52B289F6A977B23F442ADA3D3E6250D8115C6D_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_width()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_height()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::get_worldBound()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElement_get_worldBound_m2E4AF689F0B4AB06E1316348A1E10D4DB2412AC3 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.ObjectGUIState::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ObjectGUIState_Dispose_m156DC13F33DEFB261C8B13EB98A1A3782D182DE8 (ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.IMGUIContainer,UnityEngine.UIElements.IMGUIContainer/UxmlTraits>::.ctor()
|
|
inline void UxmlFactory_2__ctor_m12F479F7C12F413DC7A6B818E3102EE3F725DD7C (UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UxmlFactory_2_t885CE124C6F6A5A625EFB5E207B18271EE8A07FF*, const RuntimeMethod*))UxmlFactory_2__ctor_m88A0346DFE6F79DFE0C5986C5804D4FABA9DB95A_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElement/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_m99053329DC8F0D4087968FCA3C60857B853E4346 (UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.UxmlIntAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::get_focusIndex()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* UxmlTraits_get_focusIndex_mA04335E58B6371CEA9F27B3DB87FDBBAD44457C3_inline (UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.Int32>::set_defaultValue(T)
|
|
inline void TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_inline (TypedUxmlAttributeDescription_1_tF8E164DB2A1FE613654370D348F4C3680DA42A03* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (/*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);
|
|
}
|
|
// UnityEngine.UIElements.UxmlBoolAttributeDescription UnityEngine.UIElements.VisualElement/UxmlTraits::get_focusable()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* UxmlTraits_get_focusable_m672D1BF4B4ECA421F11891639C82E4BEF4FBD650_inline (UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B* __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.GenericDropdownMenu::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GenericDropdownMenu__ctor_mE8DFF74B09DE76E26C5F4352613662ADAC2156C8 (GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1* __this, const RuntimeMethod* method) ;
|
|
// TResult System.Func`1<UnityEngine.UIElements.IGenericMenu>::Invoke()
|
|
inline RuntimeObject* Func_1_Invoke_m30938507AE1C1E98A96E14635C5B89CCE625F6A1_inline (Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* il2cppRetVal;
|
|
(( void (*) (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Func_1_Invoke_m35CBC166F464B8A1169583672025E6D64211856C_gshared_inline)((Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElement::get_contentRect()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElement_get_contentRect_m4D3C57AFA3D4DE425103F3AF9F2829EABA741A07 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Font UnityEngine.UIElements.TextUtilities::GetFont(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Font_tC95270EA3198038970422D78B74A7F2E218A96B6* TextUtilities_GetFont_mE61706BE8FCD6358404E7251B48FD2E46F13F1DF (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.ComputedStyle::get_fontSize()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ComputedStyle_get_fontSize_m8EC7665FA467E17E3FF44A3A3AA61B1BB1D79272 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.FontStyle UnityEngine.UIElements.ComputedStyle::get_unityFontStyleAndWeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ComputedStyle_get_unityFontStyleAndWeight_mE355186855A01D29AB8AD3D424E356D34ACDAD53 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.TextAnchor UnityEngine.UIElements.ComputedStyle::get_unityTextAlign()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ComputedStyle_get_unityTextAlign_m189359805CF935DB32D33D9C9E42887EBCA63A44 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.WhiteSpace UnityEngine.UIElements.ComputedStyle::get_whiteSpace()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ComputedStyle_get_whiteSpace_m4A7A9F132EDFE87B9E119DC21A25FB0FAB4D2D2D (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Color UnityEngine.Color::get_white()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_white_m068F5AF879B0FCA584E3693F762EA41BB65532C6_inline (const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TextNativeSettings UnityEngine.UIElements.CursorPositionStylePainterParameters::GetTextNativeSettings(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 CursorPositionStylePainterParameters_GetTextNativeSettings_mFB0A41E2E939BE85A76F31604E8D36B8F0170049 (CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A* __this, float ___0_scaling, const RuntimeMethod* method) ;
|
|
// System.Type System.Object::GetType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3 (RuntimeObject* __this, const RuntimeMethod* method) ;
|
|
// System.String System.String::Concat(System.String,System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B (String_t* ___0_str0, String_t* ___1_str1, String_t* ___2_str2, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CallbackEventHandler::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CallbackEventHandler__ctor_m28A3E3AD860D0F5EAC06F6AA0439D47A32C8303E (CallbackEventHandler_t99E35735225B4ACEAD1BA981632FD2D46E9CB2B4* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Focusable::set_tabIndex(System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Focusable_set_tabIndex_m1D41B758C7AA057707AE7CC919ED868075575E96_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, int32_t ___0_value, 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.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.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) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.Focusable::GetFocusDelegate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* Focusable_GetFocusDelegate_m7BF3D03D334FD0BB0C00B07227118C94127BEB83 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::SwitchFocus(UnityEngine.UIElements.Focusable,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_SwitchFocus_m6C1D4D97B08E3D7686F545CF4D8869313E808E4D (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_newFocusedElement, bool ___1_bIsFocusDelegated, int32_t ___2_dispatchMode, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::Blur(UnityEngine.UIElements.Focusable,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_Blur_mC1CFD475C4B0BBB756E44567F374A534C1C6219B (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, bool ___1_bIsFocusDelegated, int32_t ___2_dispatchMode, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.Focusable::GetFirstFocusableChild(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* Focusable_GetFirstFocusableChild_mA5CDE2800BF048A5A00AF10160E550969C5D0420 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.Focusable::get_delegatesFocus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Focusable_get_delegatesFocus_m3EC6CEC9B7570A921855A9A91291FF4AA45D40AC (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, 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.Int32 UnityEngine.UIElements.Focusable::get_tabIndex()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* 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.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) ;
|
|
// System.Void UnityEngine.UIElements.Focusable::ProcessEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_ProcessEvent_m5379B2B75E0748A3B0BDC20ADEA9C410278819C2 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method) ;
|
|
// 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) ;
|
|
// 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.Void UnityEngine.UIElements.FocusController::SwitchFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_SwitchFocus_m728F75BD16EADBFF98FADABA7686D0B11539922C (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_newFocusedElement, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___1_direction, bool ___2_bIsFocusDelegated, int32_t ___3_dispatchMode, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusChangeDirection::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusChangeDirection__ctor_m13132F27B5ABFCBEE04738925694860F1AA037B3 (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement>::.ctor()
|
|
inline void List_1__ctor_m73786708BB5BF136266E56407D245B8241A7F24C (List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::GetRetargetedFocusedElement(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetRetargetedFocusedElement_m5FE220546B2647E0838540C718AF9632A03B2401 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_retargetAgainst, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.FocusController::IsLocalElement(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_IsLocalElement_m04A8A8FDE74955742802A06DBC02BE99159C6D9F (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement>::GetEnumerator()
|
|
inline Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0 List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0 (List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0 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.FocusController/FocusedElement>::Dispose()
|
|
inline void Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034 (Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0* __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.FocusController/FocusedElement>::get_Current()
|
|
inline FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_inline (Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0* __this, const RuntimeMethod* method)
|
|
{
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF 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.FocusController/FocusedElement>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8 (Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.FocusController/FocusedElement>::get_Count()
|
|
inline int32_t List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_inline (List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* __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<UnityEngine.UIElements.FocusController/FocusedElement>::get_Item(System.Int32)
|
|
inline FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63 (List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF 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.List`1<UnityEngine.UIElements.FocusController/FocusedElement>::Clear()
|
|
inline void List_1_Clear_m6E8418F8671E7413DAF4337D72A04C4713AD4E99_inline (List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* __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.FocusController/FocusedElement>::Add(T)
|
|
inline void List_1_Add_m9989CB26C4A11F3FBC18A300F9CC329897595091_inline (List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* __this, FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF ___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.IFocusRing UnityEngine.UIElements.FocusController::get_focusRing()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* FocusController_get_focusRing_m605E2D611EC0BE81B08D3DBA4C596E1B834AC02B_inline (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusOutEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.FocusController,System.Boolean)
|
|
inline FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* FocusEventBase_1_GetPooled_m3C0CABA913DD3E15FDA3C1951C2F65599F18043E (RuntimeObject* ___0_target, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_relatedTarget, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___3_focusController, bool ___4_bIsFocusDelegated, const RuntimeMethod* method)
|
|
{
|
|
return (( FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* (*) (RuntimeObject*, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*, bool, const RuntimeMethod*))FocusEventBase_1_GetPooled_m6CE160C741018E6E1CC074A9A140F19536B2F8CF_gshared)(___0_target, ___1_relatedTarget, ___2_direction, ___3_focusController, ___4_bIsFocusDelegated, method);
|
|
}
|
|
// T UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.BlurEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.FocusController,System.Boolean)
|
|
inline BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* FocusEventBase_1_GetPooled_m1491986D8FE3645AE114CF93C9AE4081DCEC0800 (RuntimeObject* ___0_target, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_relatedTarget, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___3_focusController, bool ___4_bIsFocusDelegated, const RuntimeMethod* method)
|
|
{
|
|
return (( BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* (*) (RuntimeObject*, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*, bool, const RuntimeMethod*))FocusEventBase_1_GetPooled_m6CE160C741018E6E1CC074A9A140F19536B2F8CF_gshared)(___0_target, ___1_relatedTarget, ___2_direction, ___3_focusController, ___4_bIsFocusDelegated, method);
|
|
}
|
|
// T UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusInEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.FocusController,System.Boolean)
|
|
inline FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* FocusEventBase_1_GetPooled_m913643F802F0AF90046419D95ECBC0121D4AE8BF (RuntimeObject* ___0_target, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_relatedTarget, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___3_focusController, bool ___4_bIsFocusDelegated, const RuntimeMethod* method)
|
|
{
|
|
return (( FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* (*) (RuntimeObject*, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*, bool, const RuntimeMethod*))FocusEventBase_1_GetPooled_m6CE160C741018E6E1CC074A9A140F19536B2F8CF_gshared)(___0_target, ___1_relatedTarget, ___2_direction, ___3_focusController, ___4_bIsFocusDelegated, method);
|
|
}
|
|
// T UnityEngine.UIElements.FocusEventBase`1<UnityEngine.UIElements.FocusEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.FocusController,System.Boolean)
|
|
inline FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* FocusEventBase_1_GetPooled_m5654D51DC26AF329A7B9DB01E3896B6083E2F9F5 (RuntimeObject* ___0_target, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_relatedTarget, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___3_focusController, bool ___4_bIsFocusDelegated, const RuntimeMethod* method)
|
|
{
|
|
return (( FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* (*) (RuntimeObject*, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*, bool, const RuntimeMethod*))FocusEventBase_1_GetPooled_m6CE160C741018E6E1CC074A9A140F19536B2F8CF_gshared)(___0_target, ___1_relatedTarget, ___2_direction, ___3_focusController, ___4_bIsFocusDelegated, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.FocusController::IsFocused(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.FocusController::IsPendingFocus(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_IsPendingFocus_m8606F15235FAD8AF37FFAC9A1B120758DC39A3ED (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::AboutToReleaseFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_AboutToReleaseFocus_mD699883EF5462F259013E95C9D8C0464C6C8FBEE (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willGiveFocusTo, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, int32_t ___3_dispatchMode, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::ReleaseFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_ReleaseFocus_m3B9E2A26CC992B720222E36E655FA1B35C3A1934 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willGiveFocusTo, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, int32_t ___3_dispatchMode, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::RetargetElement(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* VisualElement_RetargetElement_m45ED230705469D6BDF4F68B331829BCD53C68CC5 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_retargetAgainst, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::AboutToGrabFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_AboutToGrabFocus_m2034967D66D99E4F9D001E77DA66F530332E0273 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willTakeFocusFrom, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, int32_t ___3_dispatchMode, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.FocusController::GrabFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_GrabFocus_m23251F6C8B96C87E6EAF835B5D02B09AEDD1D729 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willTakeFocusFrom, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, bool ___3_bIsFocusDelegated, int32_t ___4_dispatchMode, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_processedByFocusController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::FocusNextInDirection(UnityEngine.UIElements.FocusChangeDirection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_FocusNextInDirection_mC102470024EFBD24E293F263884A96E8AE661243 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___0_direction, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventBase::set_processedByFocusController(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_set_processedByFocusController_mEC214B328484B60572EEE867ACB5527396436155 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::get_focusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::get_isHierarchyDisplayed()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_get_isHierarchyDisplayed_m57D4B4C55044168D6AF4D7CE32FC9C809F8E2348 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::get_visible()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_get_visible_m30FB0F3D6A7C6C41088A0744EC8D2696BFCBC0B9 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextShadow::Equals(UnityEngine.UIElements.TextShadow)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextShadow_Equals_m0D031C0DE4C0F2CB9B4668F52A76F7B7C4F544AB (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextShadow::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextShadow_Equals_m0BC39E39C12D4D49BC554184C02CC78B417289BE (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.Vector2::op_Equality(UnityEngine.Vector2,UnityEngine.Vector2)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, 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.Int32 UnityEngine.Vector2::GetHashCode()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __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.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.TextShadow::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextShadow_GetHashCode_mFD8076EB5D6AAFBF11A36DA4E153DB18BABF1A04 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, const RuntimeMethod* method) ;
|
|
// System.String System.String::Format(System.String,System.Object,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C (String_t* ___0_format, RuntimeObject* ___1_arg0, RuntimeObject* ___2_arg1, RuntimeObject* ___3_arg2, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.TextShadow::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextShadow_ToString_m858D95591B1C87460D2F16460BCF5ED790BAEEE8 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.Vector2::LerpUnclamped(UnityEngine.Vector2,UnityEngine.Vector2,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_LerpUnclamped_mB0B50875D4509E21FF43F4D87610333D55E6A44F_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_b, float ___2_t, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PointerDispatchState UnityEngine.UIElements.PointerCaptureHelper::GetStateFor(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* PointerCaptureHelper_GetStateFor_m280E8512C13D299D02574099B4F6DC4576825FF6 (RuntimeObject* ___0_handler, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.PointerDispatchState::HasPointerCapture(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDispatchState_HasPointerCapture_mA7A823D88E3A5BFC3C79CC1AF9569369B8697276 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::CapturePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_CapturePointer_mC8A79D11BED72723C691EFC744DF82EDB946D4C6 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ReleasePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ReleasePointer_m9C7CC4BE5F1DE835660705DC0314B13112B86E74 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ReleasePointer(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ReleasePointer_m88DB7BB0BF25F2D1F66E6E6C53BB4D26869970B7 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ActivateCompatibilityMouseEvents(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ActivateCompatibilityMouseEvents_mC420BAA7192D4BBC910B8E330184630A68F541A7 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::PreventCompatibilityMouseEvents(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_PreventCompatibilityMouseEvents_m751C841E5471A5FBDE650C0092B9A55D2657CE0A (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.PointerDispatchState::ShouldSendCompatibilityMouseEvents(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDispatchState_ShouldSendCompatibilityMouseEvents_m2D904DB42844ABDDDC961264F0ABA4AB292762F0 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_evt, const RuntimeMethod* method) ;
|
|
// System.Void System.Nullable`1<System.Boolean>::.ctor(T)
|
|
inline void Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5 (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericStructType*/Il2CppFullySharedGenericStruct, const RuntimeMethod*))Nullable_1__ctor_m4257D7FF23A495D1B204F20330FBDED58248E4CC_gshared)((Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*)__this, (Il2CppFullySharedGenericStruct)&___0_value, method);
|
|
}
|
|
// System.Boolean System.Nullable`1<System.Boolean>::get_HasValue()
|
|
inline bool Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*, const RuntimeMethod*))Nullable_1_get_HasValue_m14F273FB376DF00D727434CDCD28AB4EDCC14C3C_gshared_inline)((Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*)__this, method);
|
|
}
|
|
// T System.Nullable`1<System.Boolean>::GetValueOrDefault()
|
|
inline bool Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline (Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01* __this, const RuntimeMethod* method)
|
|
{
|
|
bool il2cppRetVal;
|
|
(( void (*) (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*, Il2CppFullySharedGenericStruct*, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mC057FBD944AF068B90EBDD0B496231A01B2A4228_gshared_inline)((Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339*)__this, (Il2CppFullySharedGenericStruct*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ProcessPointerCapture(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ProcessPointerCapture_m34FA9DCFEA069D597F388F38AA42C1D471191A02 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_Reset_m3D7C1924E6654D18DA8543A0E81C732586FEE92C (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.GUIUtility::get_hotControl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t GUIUtility_get_hotControl_m6CD6AD33B46A9AFF2261E2C352DC7BAB4C20B026 (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Debug::LogWarning(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9 (RuntimeObject* ___0_message, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureOutEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
inline PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* PointerCaptureEventBase_1_GetPooled_mB59248109D193F686FEB4522CACAAE4D07362B0C (RuntimeObject* ___0_target, RuntimeObject* ___1_relatedTarget, int32_t ___2_pointerId, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* (*) (RuntimeObject*, RuntimeObject*, int32_t, const RuntimeMethod*))PointerCaptureEventBase_1_GetPooled_m2F21215B607890899A63B415C16FF5182A4AB3ED_gshared)(___0_target, ___1_relatedTarget, ___2_pointerId, method);
|
|
}
|
|
// T UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureOutEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
inline MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* PointerCaptureEventBase_1_GetPooled_mA34D7C18EF23C20D4EEF6ECBA1D244E450FE1269 (RuntimeObject* ___0_target, RuntimeObject* ___1_relatedTarget, int32_t ___2_pointerId, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* (*) (RuntimeObject*, RuntimeObject*, int32_t, const RuntimeMethod*))PointerCaptureEventBase_1_GetPooled_m2F21215B607890899A63B415C16FF5182A4AB3ED_gshared)(___0_target, ___1_relatedTarget, ___2_pointerId, method);
|
|
}
|
|
// T UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.PointerCaptureEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
inline PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* PointerCaptureEventBase_1_GetPooled_m9A374DF0D549BE03C87F43801FF49F06B3B62CF9 (RuntimeObject* ___0_target, RuntimeObject* ___1_relatedTarget, int32_t ___2_pointerId, const RuntimeMethod* method)
|
|
{
|
|
return (( PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* (*) (RuntimeObject*, RuntimeObject*, int32_t, const RuntimeMethod*))PointerCaptureEventBase_1_GetPooled_m2F21215B607890899A63B415C16FF5182A4AB3ED_gshared)(___0_target, ___1_relatedTarget, ___2_pointerId, method);
|
|
}
|
|
// T UnityEngine.UIElements.PointerCaptureEventBase`1<UnityEngine.UIElements.MouseCaptureEvent>::GetPooled(UnityEngine.UIElements.IEventHandler,UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
inline MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* PointerCaptureEventBase_1_GetPooled_mECADB036D8A3E61FEE56F40360A9E073056CDB15 (RuntimeObject* ___0_target, RuntimeObject* ___1_relatedTarget, int32_t ___2_pointerId, const RuntimeMethod* method)
|
|
{
|
|
return (( MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* (*) (RuntimeObject*, RuntimeObject*, int32_t, const RuntimeMethod*))PointerCaptureEventBase_1_GetPooled_m2F21215B607890899A63B415C16FF5182A4AB3ED_gshared)(___0_target, ___1_relatedTarget, ___2_pointerId, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::CloseGate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_CloseGate_mA39FBB5C32875BF687C245532996C2A1806F8515 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcherGate::.ctor(UnityEngine.UIElements.EventDispatcher)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___0_d, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::OpenGate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_OpenGate_mCD7290FBD942060923E1F4B81769241190406584 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcherGate::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Object::Equals(System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_Equals_m434DF93FDA204D5C06E889A9CB53BC2E5D39ABF7 (RuntimeObject* ___0_objA, RuntimeObject* ___1_objB, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcherGate::Equals(UnityEngine.UIElements.EventDispatcherGate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDispatcherGate_Equals_m6DDB9D394E9F882FE494E3B7B703DF04D665A50E (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcherGate::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDispatcherGate_Equals_mBA65F996FA463B01622ACA36AC439AD04B905CC0 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.EventDispatcherGate::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDispatcherGate_GetHashCode_mF0A7A9BF40B51DDCF8F30A55DB13BB299416EFDE (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::.ctor(System.Collections.Generic.IList`1<UnityEngine.UIElements.IEventDispatchingStrategy>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher__ctor_mD5C2E443C897F68E928C197BD9096DD7EB42623C (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, RuntimeObject* ___0_strategies, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ClickDetector::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClickDetector__ctor_m2EE3096D3F144D680F167DECD625B42D64B7B61F (ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState__ctor_m85AB6B80AF036F9851B6F11FE5CD3C0DEC19D7C4 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Stack`1<UnityEngine.UIElements.EventDispatcher/DispatchContext>::.ctor()
|
|
inline void Stack_1__ctor_m07307D2825486BBEAEBDCA3BF1FA677FF12C4DAA (Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C* __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.IEventDispatchingStrategy>::.ctor()
|
|
inline void List_1__ctor_m856D83183F6F5CDDE65CD7A3B8DBF24E3630CC2F (List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* __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.IEventDispatchingStrategy>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_mFC7123F04B580CC7464967C465FE4719E2FFE647 (List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* __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);
|
|
}
|
|
// T UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>::Get()
|
|
inline Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A (ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* __this, const RuntimeMethod* method)
|
|
{
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* il2cppRetVal;
|
|
(( void (*) (ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))ObjectPool_1_Get_mD8EB59674A787EA786A199C860C10A43EE894B0E_gshared)((ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventBase::MarkReceivedByDispatcher()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventBase_MarkReceivedByDispatcher_m25808B138D5E5AA4BA0562ECCEDA82B763A87112 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.IMGUIEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_m25C01AA905EAAC1005CF0AAA2F717632787B18E9 (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcher::get_dispatchImmediately()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDispatcher_get_dispatchImmediately_m7AAB0665C144B07BA96F09DB5DE381A06B6A4087 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::ProcessEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_ProcessEvent_mC229BD6346796BE86DB365C1F18FCF8F39B522C5 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::Enqueue(T)
|
|
inline void Queue_1_Enqueue_mBF44A4060F486104A2FC16D28D0BDBD08BC83491 (Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* __this, EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 ___0_item, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))Queue_1_Enqueue_m9159DC6A9BC5528A3444329C408F4101004CF652_gshared)((Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41*)__this, (Il2CppFullySharedGenericAny)&___0_item, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::ProcessEventQueue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_ProcessEventQueue_mDC6EAC056EA04D165F93E7D7991FDC7C5B1722D1 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::set_processingEvents(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventDispatcher_set_processingEvents_mA0D599A467E0C916B87517A95C90B9D5F490C542_inline (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>::Release(T)
|
|
inline void ObjectPool_1_Release_m58FA19A999DA19110F7DEA824BD62A4CE8159F5C (ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* __this, Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* ___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);
|
|
}
|
|
// T System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::Dequeue()
|
|
inline EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 Queue_1_Dequeue_m90F123DA1976DFBC4D8B331B07B1EB833A2E4509 (Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* __this, const RuntimeMethod* method)
|
|
{
|
|
EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 il2cppRetVal;
|
|
(( void (*) (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Queue_1_Dequeue_m80C152387A53656EC4AEF450BCBA9087DC51EEE3_gshared)((Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Int32 System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>::get_Count()
|
|
inline int32_t Queue_1_get_Count_m08F50B5D83CD07085F9B86C829170F37FE7EF037_inline (Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41*, const RuntimeMethod*))Queue_1_get_Count_mE6103188ACDEC07F90F2D2986554730D18029750_gshared_inline)((Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41*)__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventBase::get_stopDispatch()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventBase_get_stopDispatch_m33A3AF345D167E57385AC3B24D48265500B4F618 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::ApplyDispatchingStrategies(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_ApplyDispatchingStrategies_mFC4FBEF34AE00A7D2936410CB028B0D02C4E1C28 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, bool ___2_imguiEventIsInitiallyUsed, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.PropagationPaths UnityEngine.UIElements.EventBase::get_path()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method) ;
|
|
// System.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.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) ;
|
|
// 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);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ClickDetector::ProcessEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClickDetector_ProcessEvent_mDE17D7808B1328C2D4A18B377FA6FC0503DB9155 (ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, 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.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.IEventDispatchingStrategy>::GetEnumerator()
|
|
inline Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D List_1_GetEnumerator_mE50C8692EDBD4CE82AF40ABF900B32D16CE06747 (List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D 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.IEventDispatchingStrategy>::Dispose()
|
|
inline void Enumerator_Dispose_m43C9EF170B762DE400946F0C2FFB8CC03202C627 (Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D* __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.IEventDispatchingStrategy>::get_Current()
|
|
inline RuntimeObject* Enumerator_get_Current_m432F18887566E32D2652596B6FC1FED2EFE41F2A_inline (Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* 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.IEventDispatchingStrategy>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m12D53D4879F9DA63D7E9E6762C8980DD625D6D36 (Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<System.Collections.Generic.Queue`1<UnityEngine.UIElements.EventDispatcher/EventRecord>>::.ctor(System.Int32)
|
|
inline void ObjectPool_1__ctor_m3CDA6D988A544733ED1D31C3C4CC68413D1A33C6 (ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* __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.PointerCaptureDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureDispatchingStrategy__ctor_m2A38585BC0D3626E41D701C40F2C438F4DFFD31C (PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseCaptureDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseCaptureDispatchingStrategy__ctor_m60B0E3EEFE4F7DB32F8524587FC9A38B2C03F0A7 (MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.KeyboardEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void KeyboardEventDispatchingStrategy__ctor_m5523F5CF14EC10558302BF5EF9DA8E336362E9A8 (KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.PointerEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerEventDispatchingStrategy__ctor_m0B72334A7F6713ADBC0682135C498FDF8FD33F87 (PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MouseEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseEventDispatchingStrategy__ctor_m24A76F9817155C0AC9FFFEEB821FD500F84FA408 (MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.CommandEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CommandEventDispatchingStrategy__ctor_m27457609CA672B11FC670BAC2B64E2C0D71E8DEE (CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.IMGUIEventDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIEventDispatchingStrategy__ctor_m4F8BC966B31710FA705E4585B6A6EC096A24F8BC (IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.DefaultDispatchingStrategy::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultDispatchingStrategy__ctor_m142BF3B927F318FA373FF832F02D1615A19F7BCA (DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TemplateContainer::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TemplateContainer__ctor_m9C1E46949BF52805DB6F132249808F899BFD807E (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, String_t* ___0_templateId, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BindableElement::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BindableElement__ctor_m827E1D7852F342FCC582E31E9857F6976D958454 (BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TemplateContainer::set_templateId(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TemplateContainer_set_templateId_m0E14566E4F401DDFB2DC0222836842DDE57806B1_inline (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TemplateContainer,UnityEngine.UIElements.TemplateContainer/UxmlTraits>::.ctor()
|
|
inline void UxmlFactory_2__ctor_m1EAD5B8148AC5467CF2774840E258D93AF49C9BC (UxmlFactory_2_t8EB039498EE25D0F0B57B0E86AFC4B4F1F0C5933* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UxmlFactory_2_t8EB039498EE25D0F0B57B0E86AFC4B4F1F0C5933*, const RuntimeMethod*))UxmlFactory_2__ctor_m88A0346DFE6F79DFE0C5986C5804D4FABA9DB95A_gshared)(__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BindableElement/UxmlTraits::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits_Init_mF7618ABBF84731C43491CE8BD8ADB637AF5CD44D (UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, RuntimeObject* ___1_bag, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 ___2_cc, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.CreationContext::get_visualTreeAsset()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* CreationContext_get_visualTreeAsset_m478AAEFDA03B37814BAE57058C7614528E1C2A42_inline (CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.TemplateContainer::get_templateId()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TemplateContainer_get_templateId_m33148C018084F7A90609850FF61B74347BFC0A4C_inline (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualTreeAsset UnityEngine.UIElements.VisualTreeAsset::ResolveTemplate(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* VisualTreeAsset_ResolveTemplate_m80A2BC17679475AF07C778E2BC3C76A11D0028FF (VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* __this, String_t* ___0_templateName, 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.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.Label::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Label__ctor_m83EBFB8426823A52FD005780264806926C731009 (Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* __this, String_t* ___0_text, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::Add(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_child, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride> UnityEngine.UIElements.TemplateAsset::get_attributeOverrides()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t70EE7982F45810D4B024CF720D910E67974A3094* TemplateAsset_get_attributeOverrides_m5A1E13D617677C9E324F2FFB1D6DCAC42B139132 (TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride> UnityEngine.UIElements.CreationContext::get_attributeOverrides()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t70EE7982F45810D4B024CF720D910E67974A3094* CreationContext_get_attributeOverrides_m45F8DFA6FD690CD45E801AACCA682B387904EF8C_inline (CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>::.ctor()
|
|
inline void List_1__ctor_m020E56BAD0BB49CFE3FCE3DB934D337DF2A9BDE8 (List_1_t70EE7982F45810D4B024CF720D910E67974A3094* __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.TemplateAsset/AttributeOverride>::AddRange(System.Collections.Generic.IEnumerable`1<T>)
|
|
inline void List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9 (List_1_t70EE7982F45810D4B024CF720D910E67974A3094* __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.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement> UnityEngine.UIElements.CreationContext::get_slotInsertionPoints()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* CreationContext_get_slotInsertionPoints_mA3E7A2671AAAAA39B4654437B75CFF8961B06DFB_inline (CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualTreeAsset::CloneTree(UnityEngine.UIElements.VisualElement,System.Collections.Generic.Dictionary`2<System.String,UnityEngine.UIElements.VisualElement>,System.Collections.Generic.List`1<UnityEngine.UIElements.TemplateAsset/AttributeOverride>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeAsset_CloneTree_m867BB13966E034E04310DEB52BEB8223E176F473 (VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_target, Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* ___1_slotInsertionPoints, List_1_t70EE7982F45810D4B024CF720D910E67974A3094* ___2_attributeOverrides, 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.Void UnityEngine.UIElements.UxmlStringAttributeDescription::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlStringAttributeDescription__ctor_mA8A849D4B098131C4D456911CAA16E3A964B51D7 (UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlAttributeDescription::set_name(System.String)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline (UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlAttributeDescription::set_use(UnityEngine.UIElements.UxmlAttributeDescription/Use)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void UxmlAttributeDescription_set_use_mFD75FD3BD463C53DE6BA50A97E8703E29904E42D_inline (UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.BindableElement/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_mD1446358752A926B32BC92B0446AA5E87090DD97 (UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.Spacing::get_horizontal()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Spacing_get_horizontal_m0EE89A90E69F55A3A8116C49B061C1214F7692A4 (Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.Spacing::get_vertical()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Spacing_get_vertical_mB25C30B20E49028FC6F44A49B453F05684DE630D (Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.Spacing::.ctor(System.Single,System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spacing__ctor_m65E3403C0B5B715FE42FC7E839F78DF2BDECDE7F (Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* __this, float ___0_left, float ___1_top, float ___2_right, float ___3_bottom, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_x()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::set_x(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Rect::get_y()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Rect::set_y(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, float ___0_value, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Max(System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::get_lastValue()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_lastValue_m52B79A0EB6A80606939B69A21ABF225C558B5051_inline (const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.FocusChangeDirection::op_Implicit(UnityEngine.UIElements.FocusChangeDirection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FocusChangeDirection_op_Implicit_m4A30610620E614E2C9DA249516577CEBBD083085 (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___0_fcd, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeDirection::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeDirection__ctor_m7F5A6E4122EA2FD8BB4B99F0C00D951ECF2F189C (VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// T UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.VisualElementFocusChangeTarget>::Get()
|
|
inline VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* ObjectPool_1_Get_m667463FE9900F821038BDF505AD5CCE63CE76B8B (ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* il2cppRetVal;
|
|
(( void (*) (ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))ObjectPool_1_Get_mD8EB59674A787EA786A199C860C10A43EE894B0E_gshared)((ObjectPool_1_t162E79CD09B024014FAEFF7E37D144F60E1F05B9*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeTarget::set_target(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementFocusChangeTarget_set_target_m4C370F63B4F101E13717910B4B57953BF3BDDB0C_inline (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ObjectPool`1<UnityEngine.UIElements.VisualElementFocusChangeTarget>::Release(T)
|
|
inline void ObjectPool_1_Release_m971AD50C887D09F9A60E99CD7637A47F61160146 (ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E* __this, VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* ___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.VisualElementFocusChangeTarget>::.ctor(System.Int32)
|
|
inline void ObjectPool_1__ctor_mA1E177120AF12CEE3415C46BD3A1D03A1BD10034 (ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E* __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.VisualElementFocusRing::set_defaultFocusOrder(UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementFocusRing_set_defaultFocusOrder_mAC9B8A1BF3794CD876D494D2C39A935B60E290E2_inline (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, int32_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::.ctor()
|
|
inline void List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7 (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder UnityEngine.UIElements.VisualElementFocusRing::get_defaultFocusOrder()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_get_defaultFocusOrder_m203045C5C38AE34531DB2B05436514C4EB34CD2A_inline (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.Comparer`1<T> System.Collections.Generic.Comparer`1<System.Int32>::get_Default()
|
|
inline Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051 (const RuntimeMethod* method)
|
|
{
|
|
Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB* il2cppRetVal = (( Comparer_1_tF59A960F33DD69C2CF0330F3FF6AD7828FF0F3FB* (*) (const RuntimeMethod*))Comparer_1_get_Default_m923F24BE1E2E8B01D8F2F9D26B8C0ED4B7CBA290_gshared)(method);
|
|
return (Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80*)il2cppRetVal;
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.Rect::get_position()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFocusRing::FocusRingAutoIndexSort(UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord,UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_FocusRingAutoIndexSort_m3A5B1368543121656105D37462B199A9EF0B6712 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ___0_a, FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ___1_b, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::Clear()
|
|
inline void List_1_Clear_m2AAF9E701399D94DF3735A99591C29E5099EF150_inline (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* __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.VisualElementFocusRing::BuildRingForScopeRecursive(UnityEngine.UIElements.VisualElement,System.Int32&,System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing_BuildRingForScopeRecursive_m91C9EB8FBBB3ACFA82348EDDF91EC34C1B87248A (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t* ___1_scopeIndex, List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___2_scopeList, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusRing::SortAndFlattenScopeLists(System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing_SortAndFlattenScopeLists_mD53887D2094CF7D9F812F7DC2BE102B9467C2209 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___0_rootScopeList, 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.VisualElementFocusRing/FocusRingRecord::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusRingRecord__ctor_m575F831D8CA4CAC3034863D9E35BA9904F6C01EB (FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::Add(T)
|
|
inline void List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_inline (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* __this, FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ___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.Comparison`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::.ctor(System.Object,System.IntPtr)
|
|
inline void Comparison_1__ctor_m6FAA50754B35670B6CEEC9099C161B72F43AEFC5 (Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA* __this, RuntimeObject* ___0_object, intptr_t ___1_method, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Comparison_1_tE94B5C4AE59DE10B7A54AD7C3291462A05D5CD49*, RuntimeObject*, intptr_t, const RuntimeMethod*))Comparison_1__ctor_m3B594919B20B90AF5727A416D5798BA4468358CC_gshared)((Comparison_1_tE94B5C4AE59DE10B7A54AD7C3291462A05D5CD49*)__this, ___0_object, ___1_method, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::Sort(System.Comparison`1<T>)
|
|
inline void List_1_Sort_mD3B66520B2F25989200A0CED9AA786045DED2201 (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* __this, Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA* ___0_comparison, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, Comparison_1_tE94B5C4AE59DE10B7A54AD7C3291462A05D5CD49*, const RuntimeMethod*))List_1_Sort_mF939EF9300267AF108323ABAECB490A27894309B_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Comparison_1_tE94B5C4AE59DE10B7A54AD7C3291462A05D5CD49*)___0_comparison, method);
|
|
}
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::GetEnumerator()
|
|
inline Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6 List_1_GetEnumerator_m5E55416AB4F1C7A5BA700264BBB8692D4DE3C674 (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6 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.VisualElementFocusRing/FocusRingRecord>::Dispose()
|
|
inline void Enumerator_Dispose_m4A64BFA5057E379EF80557690A9F84DB8C0DC380 (Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6* __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.VisualElementFocusRing/FocusRingRecord>::get_Current()
|
|
inline FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* Enumerator_get_Current_m52EEE738BA2DBEE07AF31967D59E0AE58696DCB8_inline (Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6* __this, const RuntimeMethod* method)
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* il2cppRetVal;
|
|
(( void (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Enumerator_get_Current_m8B42D4B2DE853B9D11B997120CD0228D4780E394_gshared_inline)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Focusable::get_excludeFromFocusRing()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Focusable_get_excludeFromFocusRing_m02C43592E42B20FF4E0CABF90F6413F81CEF51DF (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m8DCF64B4B5AF3403887135F92831A8AA2860B581 (Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// T System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>::get_Item(System.Int32)
|
|
inline FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* 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.VisualElementFocusRing/FocusRingRecord>::get_Count()
|
|
inline int32_t List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_inline (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* __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.FocusController UnityEngine.UIElements.VisualElementFocusRing::get_focusController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* VisualElementFocusRing_get_focusController_m2EC6EEBDB4087AD80EB65DF25A150202E702A936 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.FocusController::GetFocusableParentForPointerEvent(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_GetFocusableParentForPointerEvent_mB5B3CDF010E6AC4C0E75C3C1172F2053749BB8A9 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_target, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0** ___1_effectiveTarget, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElementFocusChangeTarget UnityEngine.UIElements.VisualElementFocusChangeTarget::GetPooled(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* VisualElementFocusChangeTarget_GetPooled_mAC06C1FA07A9CB9C31746CDB4CED004C1C965A95 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_target, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.VisualElementFocusRing::GetKeyDownFocusChangeDirection(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusRing_GetKeyDownFocusChangeDirection_m23D6B56F3D9A1E682FEA4348D3863CD2AB0328C4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.EventBase`1<UnityEngine.UIElements.KeyDownEvent>::TypeId()
|
|
inline int64_t EventBase_1_TypeId_mA77A33D9F77CA0784C4A5CD3C6E8400AC11AEB2C (const RuntimeMethod* method)
|
|
{
|
|
return (( int64_t (*) (const RuntimeMethod*))EventBase_1_TypeId_m4B18042A64FC5F54DF0B830CE4C9F0FC82C661A5_gshared)(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);
|
|
}
|
|
// 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);
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusChangeTarget::get_target()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusChangeTarget_get_target_mBA38952FC20D275B53503D14F2A8F9DE36586961_inline (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusRing::DoUpdate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing_DoUpdate_m1312CAF5B2C58E1AF126619B3F6F84740C77E738 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFocusRing::GetFocusableInternalIndex(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_GetFocusableInternalIndex_mA8306194D667BF7F69A77902CC4F98D2F3982006 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusRing::GetNextFocusableInTree(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusRing_GetNextFocusableInTree_m2DE3EDCF07C0737702B0278DFCE2B2FC743D5BDF (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_currentFocusable, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusRing::GetPreviousFocusableInTree(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusRing_GetPreviousFocusableInTree_m5C1CB229300F3255F36C40DDC60DB32451FB2400 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_currentFocusable, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::GetNextElementDepthFirst()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* VisualElement_GetNextElementDepthFirst_mE7A0AE2E695FD079032A040FD0D10C2C4E383385 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::GetRoot()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* VisualElement_GetRoot_m0199AD8562269920C28147276E1E29AD713D6CDD (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::GetPreviousElementDepthFirst()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* VisualElement_GetPreviousElementDepthFirst_m3DB370961921C5D49071D9860125D92B95A8D7EB (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.VisualElement::get_childCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElement_get_childCount_m411C1EAE0E8B660CF0F831B38D5AEEBC200F277A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement/Hierarchy::ElementAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* Hierarchy_ElementAt_mE26FF102C1EE76083D4AA600627C5B9757E1DE73 (Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>::Add(T)
|
|
inline bool HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878 (HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___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.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::PropagateToParents(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater_PropagateToParents_m54E929AFB4036874B6B0EC4DEEDFFD3957DBC298 (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualTreeUpdater::get_visualTree()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BaseVisualTreeUpdater_get_visualTree_m3501698625DFEAAE964C8388247645F20022C48A (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::ValidateViewDataOnSubTree(UnityEngine.UIElements.VisualElement,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater_ValidateViewDataOnSubTree_m0FE2C7F95B99377F8A4A16490DF7B11E081E98FA (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, bool ___1_enablePersistence, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>::Clear()
|
|
inline void HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085 (HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, const RuntimeMethod*))HashSet_1_Clear_mCD863950F0D273BF34801FDD92CBEC230ECD5A6D_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.VisualElement::IsViewDataPersitenceSupportedOnChildren(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElement_IsViewDataPersitenceSupportedOnChildren_mDB0573D7EAC1DFABA79CE80AF151EEBF5830E03D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, bool ___0_existingState, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>::Contains(T)
|
|
inline bool HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544 (HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___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.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>::Remove(T)
|
|
inline bool HashSet_1_Remove_m22275ED32609374C998026A0B28E261404A6E7D1 (HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___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.Void UnityEngine.UIElements.VisualElement::OnViewDataReady(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_OnViewDataReady_m9BE0A26DD5EBA7A7FB5435EBBDAF6E4C1D6EB5A4 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, bool ___0_enablePersistence, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.HashSet`1<UnityEngine.UIElements.VisualElement>::.ctor()
|
|
inline void HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201 (HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, const RuntimeMethod*))HashSet_1__ctor_m5E12B490550D90B0686D55F8F4E7B0506BD07120_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVisualTreeUpdater::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualTreeUpdater__ctor_m64962BB0B4E0EE94292901B60BC5BA826FF5301B (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.BindableElement,UnityEngine.UIElements.BindableElement/UxmlTraits>::.ctor()
|
|
inline void UxmlFactory_2__ctor_m654F9F18593CC65382457296A874E76F08800729 (UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (UxmlFactory_2_tD60CA5C4D4FEBDFD650B1967D172C9AC677FB22A*, 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.Int64 UnityEngine.UIElements.TimerState::get_start()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TimerState::set_start(System.Int64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerState_set_start_m53092239224A3793D0ED6BE94BCB2D47BE8A9579_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.TimerState::get_now()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TimerState::set_now(System.Int64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerState_set_now_mCB7E8520AC475C4B107AEB4FFBB2C7DB78613C6B_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.TimerState::get_deltaTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimerState_get_deltaTime_m2308020C14A5A06E9A032C76B477D205F4933C1D (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TimerState::Equals(UnityEngine.UIElements.TimerState)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerState_Equals_m394CAD48AA75FFF63F07F9640628D4DFE3CF03DF (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE ___0_other, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TimerState::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerState_Equals_m3E9333E4C2EA9A1498A901A3EB28B17E526C630F (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Int64::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496 (int64_t* __this, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.TimerState::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimerState_GetHashCode_m72327F261B7D72660148BE181DC8B4914C6899EE (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::ResetStartTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem_ResetStartTime_m9ACBD805DCB9ED8B4AD86B64263FED2DEFC799A6 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::set_startMs(System.Int64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScheduledItem_set_startMs_m0953A2B9FF6E45514E90635E6E7763F7DAD6A59C_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// TResult System.Func`1<System.Boolean>::Invoke()
|
|
inline bool Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* __this, const RuntimeMethod* method)
|
|
{
|
|
bool il2cppRetVal;
|
|
(( void (*) (Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Func_1_Invoke_m35CBC166F464B8A1169583672025E6D64211856C_gshared_inline)((Func_1_tBB8824FA8746333BFFF3AB3CE4A41B58450AF431*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Func`1<System.Boolean>::.ctor(System.Object,System.IntPtr)
|
|
inline void Func_1__ctor_mDFFAE9C73346372438B5B04C4558AC42F1A3DA22 (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* __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.ScheduledItem/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8023CC1FCC9592753697438479FC45E6A87B3745 (U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* __this, const RuntimeMethod* method) ;
|
|
// System.Void System.NotSupportedException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>::Remove(T)
|
|
inline bool HashSet_1_Remove_m640BE80A54F96962CAD5B81EBAF63B12C41EA97A (HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___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.List`1<UnityEngine.UIElements.ScheduledItem>::Contains(T)
|
|
inline bool List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___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.String System.String::Concat(System.Object,System.Object,System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m9DF47FC6E1F8341012CA3FF02993D372AA7A96C9 (RuntimeObject* ___0_arg0, RuntimeObject* ___1_arg1, RuntimeObject* ___2_arg2, const RuntimeMethod* method) ;
|
|
// System.Void System.ArgumentException::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465 (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* __this, String_t* ___0_message, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>::Add(T)
|
|
inline void List_1_Add_m9A43CF05514E0E3F5B93090A1F743AAF336B4CB2_inline (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___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.ScheduledItem>::RemoveAt(System.Int32)
|
|
inline void List_1_RemoveAt_m3CCFCE437A854F170CFAC8127E60DFBA99CCF94D (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __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.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>::Contains(T)
|
|
inline bool HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164 (HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___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.Boolean System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>::Remove(T)
|
|
inline bool List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207 (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___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.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>::Add(T)
|
|
inline bool HashSet_1_Add_m7FC3F8A1831827111D11EB02AC38E3DB5280677D (HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___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.Boolean UnityEngine.UIElements.TimerEventScheduler::PrivateUnSchedule(UnityEngine.UIElements.ScheduledItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerEventScheduler_PrivateUnSchedule_m130DD2CB963F357CE9B49C3A6AC1B9323F107A8F (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___0_sItem, const RuntimeMethod* method) ;
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>::IndexOf(T)
|
|
inline int32_t List_1_IndexOf_mEEED9CE5A949BA065D4454468E58ED19A29FD6BA (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
return (( int32_t (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))List_1_IndexOf_m1FFA888B47CE3256B0AC301302FAD79AAAFC0818_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, (Il2CppFullySharedGenericAny)___0_item, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TimerEventScheduler::RemovedScheduledItemAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerEventScheduler_RemovedScheduledItemAt_m84E566D4F718EA84B91AC073EF04FDEB3E7249BA (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, int32_t ___0_index, const RuntimeMethod* method) ;
|
|
// System.Collections.Generic.HashSet`1/Enumerator<T> System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>::GetEnumerator()
|
|
inline Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393 HashSet_1_GetEnumerator_mC9887C2B33596BD62FB04E853D795AEDE819C672 (HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393 il2cppRetVal;
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*, const RuntimeMethod*))HashSet_1_GetEnumerator_m75DD344FE9A073CA9564DC6A425EC36883FB32A7_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Void System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UIElements.ScheduledItem>::Dispose()
|
|
inline void Enumerator_Dispose_m35BF428398BECACE374D67EA6896DA08F567FE03 (Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*, const RuntimeMethod*))Enumerator_Dispose_m915D35B9BB2A77C5396F4FE1A1C53F1C93B8E337_gshared)((Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*)__this, method);
|
|
}
|
|
// T System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UIElements.ScheduledItem>::get_Current()
|
|
inline ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* Enumerator_get_Current_mD31BCDA731E2A35E1C9757A14592933829BAE8D1_inline (Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393* __this, const RuntimeMethod* method)
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* il2cppRetVal;
|
|
(( void (*) (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*, Il2CppFullySharedGenericAny*, const RuntimeMethod*))Enumerator_get_Current_m51282E47C90E55BF2D96A0D329869ABC122A85A0_gshared_inline)((Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*)__this, (Il2CppFullySharedGenericAny*)&il2cppRetVal, method);
|
|
return il2cppRetVal;
|
|
}
|
|
// System.Boolean System.Collections.Generic.HashSet`1/Enumerator<UnityEngine.UIElements.ScheduledItem>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m519472CA4F5205C9F74A0085F727AD1DACDE4578 (Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*, const RuntimeMethod*))Enumerator_MoveNext_m1756F06B6BC460B8EEB4522B562E097F37D54C59_gshared)((Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.HashSet`1<UnityEngine.UIElements.ScheduledItem>::Clear()
|
|
inline void HashSet_1_Clear_m2963B07B3D68EEA4D267108D921637EC41B42B96 (HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, const RuntimeMethod*))HashSet_1_Clear_mCD863950F0D273BF34801FDD92CBEC230ECD5A6D_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, method);
|
|
}
|
|
// System.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>::GetEnumerator()
|
|
inline Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5 List_1_GetEnumerator_m09AAEEC73B4C29BEAD0F8154EC63CA7349128AF4 (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5 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.ScheduledItem>::Dispose()
|
|
inline void Enumerator_Dispose_mB17C0140040E808247FED5A6BCD003F4E06CE36D (Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5* __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.ScheduledItem>::get_Current()
|
|
inline ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* Enumerator_get_Current_m89012095DFDAB8BAC33FE93CBBDB6F85789C17D2_inline (Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5* __this, const RuntimeMethod* method)
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* 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.TimerEventScheduler::Schedule(UnityEngine.UIElements.ScheduledItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerEventScheduler_Schedule_m7A310D89229BAB8E97372681B0EE2747757081CB (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___0_item, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Collections.Generic.List`1/Enumerator<UnityEngine.UIElements.ScheduledItem>::MoveNext()
|
|
inline bool Enumerator_MoveNext_mF80A41EE7AFB7FF3EA9D9AB3E2F23CF08C4D51A0 (Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5* __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.ScheduledItem>::Clear()
|
|
inline void List_1_Clear_m83A3BAFC08E530A73E82934C7B1633B5FC197D4C_inline (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1_Clear_mD615D1BCB2C9DD91DAD86A2F9E5CF1DFFCBF7925_gshared_inline)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, method);
|
|
}
|
|
// System.Int32 System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>::get_Count()
|
|
inline int32_t List_1_get_Count_mCC7B17EE4F66C7A70008E775F489B5B8BA375190_inline (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __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<UnityEngine.UIElements.ScheduledItem>::get_Item(System.Int32)
|
|
inline ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* List_1_get_Item_m546789C7848B16FD8AA7B617CCD288E4330A8482 (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* 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.Int64 UnityEngine.UIElements.ScheduledItem::get_delayMs()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_delayMs_m7F18FB89F7CBF65DBB442B14ABF78521ED9C3412_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::get_startMs()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_startMs_m9E6A3E6FE5D0ED4888E2E0E496DDF1FEF50D0133_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::get_intervalMs()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_intervalMs_m4704C59E1316CE43604B2154D0912A4835C78151_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::set_delayMs(System.Int64)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScheduledItem_set_delayMs_m941D24B605083F1B2F7285FB04E0A01D4701C3F1_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, int64_t ___0_value, const RuntimeMethod* method) ;
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::get_endTimeMs()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_endTimeMs_m9E3111F4A4104BC573DDF07C51C13DF3B8C350CE_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TimerEventScheduler::Unschedule(UnityEngine.UIElements.ScheduledItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerEventScheduler_Unschedule_m705469B9ADF6E66EE4303F3F52E02E3AD27B0E26 (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___0_item, const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.ScheduledItem>::.ctor()
|
|
inline void List_1__ctor_mEF41BCB48F34C2EF8A206F7BB1A9F32AFD1FFB84 (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* __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.HashSet`1<UnityEngine.UIElements.ScheduledItem>::.ctor()
|
|
inline void HashSet_1__ctor_m9471E480C842C124702570CB5444B1979B042FFF (HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, const RuntimeMethod*))HashSet_1__ctor_m5E12B490550D90B0686D55F8F4E7B0506BD07120_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>::Remove(T)
|
|
inline bool HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297 (HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* __this, RuntimeObject* ___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.Collections.Generic.List`1/Enumerator<T> System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>::GetEnumerator()
|
|
inline Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D (List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* __this, const RuntimeMethod* method)
|
|
{
|
|
Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 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.Experimental.IValueAnimationUpdate>::Dispose()
|
|
inline void Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902 (Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04* __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.Experimental.IValueAnimationUpdate>::get_Current()
|
|
inline RuntimeObject* Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_inline (Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* 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.Experimental.IValueAnimationUpdate>::MoveNext()
|
|
inline bool Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD (Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04* __this, const RuntimeMethod* method)
|
|
{
|
|
return (( bool (*) (Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*, const RuntimeMethod*))Enumerator_MoveNext_m8D8E5E878AF0A88A535AB1AB5BA4F23E151A678A_gshared)((Enumerator_tF5AC6CD19D283FBD724440520CEE68FE2602F7AF*)__this, method);
|
|
}
|
|
// System.Boolean System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>::Add(T)
|
|
inline bool HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E (HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* __this, RuntimeObject* ___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.List`1<TSource> System.Linq.Enumerable::ToList<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>(System.Collections.Generic.IEnumerable`1<TSource>)
|
|
inline List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* Enumerable_ToList_TisIValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_m7BE88426837502AF975B5CBB79C61817A2AF7179 (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_t96E9133B70FB6765E6B138E810D33E18901715DA*)il2cppRetVal;
|
|
}
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualElementAnimationSystem::get_stylePropertyAnimationProfilerMarker()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD VisualElementAnimationSystem_get_stylePropertyAnimationProfilerMarker_m9D89C41EB40463C80925CC5E169FD450EFE22DC9_inline (const RuntimeMethod* method) ;
|
|
// System.Void System.Collections.Generic.HashSet`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>::.ctor()
|
|
inline void HashSet_1__ctor_m1EF60485B3C694B2264B65E4532B9AA823C9294A (HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*, const RuntimeMethod*))HashSet_1__ctor_m5E12B490550D90B0686D55F8F4E7B0506BD07120_gshared)((HashSet_1_t2E820DA94CC6D5A61CA29EBD9BE297C43D691C87*)__this, method);
|
|
}
|
|
// System.Void System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>::.ctor()
|
|
inline void List_1__ctor_m4F0233457AF4EB4A3440E7DF64AEB37FA4FB8BCA (List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* __this, const RuntimeMethod* method)
|
|
{
|
|
(( void (*) (List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*, const RuntimeMethod*))List_1__ctor_m0AFBAEA7EC427E32CC9CA267B1930DC5DF67A374_gshared)((List_1_tDBA89B0E21BAC58CFBD3C1F76E4668E3B562761A*)__this, 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.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);
|
|
}
|
|
// UnityEngine.UIElements.ITextHandle UnityEngine.UIElements.TextCoreHandle::New()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextCoreHandle_New_m6352FFD6411FDBCC061B47D293700E24B98F8C96 (const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextElement::set_textHandle(UnityEngine.UIElements.ITextHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_set_textHandle_m997A012C3E89598B104CE7E7E67D13A79FF1CB45 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, RuntimeObject* ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextElement::UpdateVisibleText()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_UpdateVisibleText_m7F0346F28CC5E5463CA517C2674C209107F0BD19 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::MarkDirtyRepaint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_MarkDirtyRepaint_mB708A0EAFDE7A535A3E4131FF99F6ED6C61490B6 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.UIElements.VisualElement::get_scaledPixelsPerPoint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float VisualElement_get_scaledPixelsPerPoint_m44984C56A992E21CE90E3DC15136DDF7DCDA11CD (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.MeshGenerationContextUtils::Text(UnityEngine.UIElements.MeshGenerationContext,UnityEngine.UIElements.MeshGenerationContextUtils/TextParams,UnityEngine.UIElements.ITextHandle,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MeshGenerationContextUtils_Text_m752741AE51EB6589AE321EAA114AE868D1B55A29 (MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62* ___0_mgc, TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F ___1_textParams, RuntimeObject* ___2_handle, float ___3_pixelsPerPoint, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::ShouldElide()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_ShouldElide_m07D91819BEF35424692BCDBB903B26A3C6A3C005 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::TextLibraryCanElide()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_TextLibraryCanElide_m90DF935AD4CC17D61DCCF99C1769C2BE9D3EFBAA (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.ITextHandle UnityEngine.UIElements.TextElement::get_textHandle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextElement_get_textHandle_m0CEE611EE48A71915EE05B453C6500B281E9F697 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextElement::set_isElided(System.Boolean)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextElement_set_isElided_m5B22A9B2045357427FC695C27B6A775C58A27D60_inline (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, bool ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.TextElement::UpdateTooltip()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_UpdateTooltip_m3CD28922152477FF2FE2AF329FF2897F8E779CAD (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.IResolvedStyle UnityEngine.UIElements.VisualElement::get_resolvedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean System.Single::IsNaN(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline (float ___0_f, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Clamp(System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___0_value, float ___1_min, float ___2_max, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextElement::MeasureTextSize(System.String,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextElement_MeasureTextSize_m4F2E0FF21CE393339DD63D04723159B9CFD55386 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, String_t* ___0_textToMeasure, float ___1_width, int32_t ___2_widthMode, float ___3_height, int32_t ___4_heightMode, const RuntimeMethod* method) ;
|
|
// 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.String System.String::Substring(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE (String_t* __this, int32_t ___0_startIndex, int32_t ___1_length, const RuntimeMethod* method) ;
|
|
// System.String System.String::Substring(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472 (String_t* __this, int32_t ___0_startIndex, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.Mathf::Max(System.Int32,System.Int32)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::get_displayTooltipWhenElided()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_get_displayTooltipWhenElided_mD6579F23BD489FD9C4D096B7C6A6A8B14558689F (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
// System.Boolean UnityEngine.UIElements.TextElement::get_isElided()
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool TextElement_get_isElided_m338FA73595E99F8ED578C39CB0BB380067B73026_inline (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::set_tooltip(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_set_tooltip_mD392FEBD1C4F97E4FEE2FEE3E92937D355B7FA61 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, String_t* ___0_value, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.MeshGenerationContextUtils/TextParams UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::MakeStyleBased(UnityEngine.UIElements.VisualElement,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F TextParams_MakeStyleBased_mDF20795C3A27408BAD96FB1FCF077694FFB05124 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, String_t* ___1_text, const RuntimeMethod* method) ;
|
|
// System.Int32 UnityEngine.UIElements.MeshGenerationContextUtils/TextParams::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextParams_GetHashCode_mC8A715BCEEDF161F0CDF1510C352C3C72B30C4A6 (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* __this, const RuntimeMethod* method) ;
|
|
// System.String UnityEngine.UIElements.TextElement::ElideText(System.String,System.String,System.Single,UnityEngine.UIElements.TextOverflowPosition)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextElement_ElideText_mF95161E8B1CF647CF4D6F2EA9F3C71BF932C537D (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, String_t* ___0_drawText, String_t* ___1_ellipsisText, float ___2_width, int32_t ___3_textOverflowPosition, const RuntimeMethod* method) ;
|
|
// System.Boolean System.String::op_Inequality(System.String,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6 (String_t* ___0_a, String_t* ___1_b, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.TextOverflow UnityEngine.UIElements.ComputedStyle::get_textOverflow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ComputedStyle_get_textOverflow_m1D6D87744472BFD4F90C88C34E5601F79CD22A49 (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.OverflowInternal UnityEngine.UIElements.ComputedStyle::get_overflow()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ComputedStyle_get_overflow_m904B36CF971CBAD3B1B5D6239E1FB982FCF5548F (ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* __this, const RuntimeMethod* method) ;
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextUtilities::MeasureVisualElementTextSize(UnityEngine.UIElements.VisualElement,System.String,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,UnityEngine.UIElements.ITextHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextUtilities_MeasureVisualElementTextSize_mDFC56166DDEA46A5C23F8CC55986E05FA0220A1A (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, String_t* ___1_textToMeasure, float ___2_width, int32_t ___3_widthMode, float ___4_height, int32_t ___5_heightMode, RuntimeObject* ___6_textHandle, const RuntimeMethod* method) ;
|
|
// UnityEngine.UIElements.ChangeEvent`1<T> UnityEngine.UIElements.ChangeEvent`1<System.String>::GetPooled(T,T)
|
|
inline ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F* ChangeEvent_1_GetPooled_mF8F78E2DFC01AE418EFCD2AC9A74536DADCC1D83 (String_t* ___0_previousValue, String_t* ___1_newValue, const RuntimeMethod* method)
|
|
{
|
|
ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3* il2cppRetVal = (( ChangeEvent_1_t2AB561588D5473562F0453192E6F736A0C01FDC3* (*) (/*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, /*Unity.IL2CPP.Metadata.__Il2CppFullySharedGenericType*/Il2CppFullySharedGenericAny, const RuntimeMethod*))ChangeEvent_1_GetPooled_mAE42CDB3455238CA5C981AE506F09F526FB29881_gshared)((Il2CppFullySharedGenericAny)___0_previousValue, (Il2CppFullySharedGenericAny)___1_newValue, method);
|
|
return (ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F*)il2cppRetVal;
|
|
}
|
|
// System.String UnityEngine.UIElements.VisualElement::get_viewDataKey()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* VisualElement_get_viewDataKey_m1F990A70B7861D0071A4462C62477363C69223F5 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.UIElements.VisualElement::SaveViewData()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __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.Void UnityEngine.Color::.ctor(System.Single,System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___0_r, float ___1_g, float ___2_b, float ___3_a, const RuntimeMethod* method) ;
|
|
// System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method) ;
|
|
// System.Single UnityEngine.Mathf::Clamp01(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___0_value, 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) ;
|
|
// 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.Int32 System.BitConverter::SingleToInt32Bits(System.Single)
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline (float ___0_value, const RuntimeMethod* method) ;
|
|
// System.Void System.Array::Clear(System.Array,System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Clear_m50BAA3751899858B097D3FF2ED31F284703FE5CB (RuntimeArray* ___0_array, int32_t ___1_index, int32_t ___2_length, const RuntimeMethod* method) ;
|
|
// 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 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
|
|
// System.Type UnityEngine.UIElements.VisualElement/TypeData::get_type()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t* TypeData_get_type_m19385722AD487765EADAE8F2DCAF294D8251D1DB (TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t* L_0 = __this->___U3CtypeU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElement/TypeData::.ctor(System.Type)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TypeData__ctor_m15CBA3153B9908A8BD91C38ABD800660854DA984 (TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* __this, Type_t* ___0_type, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
__this->___m_FullTypeName_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FullTypeName_1), (void*)L_0);
|
|
String_t* L_1 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
__this->___m_TypeName_2 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TypeName_2), (void*)L_1);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
Type_t* L_2 = ___0_type;
|
|
__this->___U3CtypeU3Ek__BackingField_0 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtypeU3Ek__BackingField_0), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.VisualElement/TypeData::get_fullTypeName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeData_get_fullTypeName_m213B31C3DA0D43A78405C19086A61DB0932D8306 (TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
String_t* V_1 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___m_FullTypeName_1;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0021;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_3;
|
|
L_3 = TypeData_get_type_m19385722AD487765EADAE8F2DCAF294D8251D1DB_inline(__this, NULL);
|
|
NullCheck(L_3);
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_3);
|
|
__this->___m_FullTypeName_1 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FullTypeName_1), (void*)L_4);
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
String_t* L_5 = __this->___m_FullTypeName_1;
|
|
V_1 = L_5;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
String_t* L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.VisualElement/TypeData::get_typeName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TypeData_get_typeName_m558CC23502575827D83C1189EB70A04B5420CB91 (TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
String_t* V_5 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___m_TypeName_2;
|
|
bool L_1;
|
|
L_1 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
Type_t* L_3;
|
|
L_3 = TypeData_get_type_m19385722AD487765EADAE8F2DCAF294D8251D1DB_inline(__this, NULL);
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = VirtualFuncInvoker0< bool >::Invoke(40 /* System.Boolean System.Type::get_IsGenericType() */, L_3);
|
|
V_1 = L_4;
|
|
Type_t* L_5;
|
|
L_5 = TypeData_get_type_m19385722AD487765EADAE8F2DCAF294D8251D1DB_inline(__this, NULL);
|
|
NullCheck(L_5);
|
|
String_t* L_6;
|
|
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String System.Reflection.MemberInfo::get_Name() */, L_5);
|
|
__this->___m_TypeName_2 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TypeName_2), (void*)L_6);
|
|
bool L_7 = V_1;
|
|
V_2 = L_7;
|
|
bool L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_9 = __this->___m_TypeName_2;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = String_IndexOf_mE21E78F35EF4A7768E385A72814C88D22B689966(L_9, ((int32_t)96), NULL);
|
|
V_3 = L_10;
|
|
int32_t L_11 = V_3;
|
|
V_4 = (bool)((((int32_t)((((int32_t)L_11) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_12 = V_4;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_13 = __this->___m_TypeName_2;
|
|
int32_t L_14 = V_3;
|
|
NullCheck(L_13);
|
|
String_t* L_15;
|
|
L_15 = String_Remove_m8266E0BF5D8565D4CDC850F21E9178AE254C3E85(L_13, L_14, NULL);
|
|
__this->___m_TypeName_2 = L_15;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TypeName_2), (void*)L_15);
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
String_t* L_16 = __this->___m_TypeName_2;
|
|
V_5 = L_16;
|
|
goto IL_006f;
|
|
}
|
|
|
|
IL_006f:
|
|
{
|
|
String_t* L_17 = V_5;
|
|
return L_17;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#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.VisualElement/<>c__DisplayClass111_0::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass111_0__ctor_m70041D0FF8A81840C220035E67063AD17BD9F2D3 (U3CU3Ec__DisplayClass111_0_t76B458C53303EA1CC0E04AC8296A1FD8BA59D9F4* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Experimental.StyleValues UnityEngine.UIElements.VisualElement/<>c__DisplayClass111_0::<UnityEngine.UIElements.Experimental.ITransitionAnimations.Start>b__0(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A U3CU3Ec__DisplayClass111_0_U3CUnityEngine_UIElements_Experimental_ITransitionAnimations_StartU3Eb__0_m5F241FCB32F11567136020ED7CA9A11300D8F38D (U3CU3Ec__DisplayClass111_0_t76B458C53303EA1CC0E04AC8296A1FD8BA59D9F4* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___U3CU3E4__this_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = ___0_e;
|
|
StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A L_2 = __this->___to_1;
|
|
NullCheck(L_0);
|
|
StyleValues_t4AED947A53B84B62EF2B589A40B74911CA77D11A L_3;
|
|
L_3 = VisualElement_ReadCurrentValues_mDFB8D3D41F844819B29ABF190B6AEF4351D313C2(L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// UnityEngine.UIElements.MouseButton UnityEngine.UIElements.ManipulatorActivationFilter::get_button()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CbuttonU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.ManipulatorActivationFilter::set_button(UnityEngine.UIElements.MouseButton)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManipulatorActivationFilter_set_button_m7D270A0FB7BF8D63EE26483770D72A0676374769 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbuttonU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ManipulatorActivationFilter_set_button_m7D270A0FB7BF8D63EE26483770D72A0676374769_AdjustorThunk (RuntimeObject* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
ManipulatorActivationFilter_set_button_m7D270A0FB7BF8D63EE26483770D72A0676374769_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// UnityEngine.EventModifiers UnityEngine.UIElements.ManipulatorActivationFilter::get_modifiers()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CmodifiersU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.ManipulatorActivationFilter::get_clickCount()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CclickCountU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Equals_m5BE53154869F0B26619DB5EEE913398BE351483E (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
bool L_2;
|
|
L_2 = ManipulatorActivationFilter_Equals_m6D9CDF042CE2808C90A212A43262ADD9BB9CAC41(__this, ((*(ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*)((ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*)(ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*)UnBox(L_1, ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ManipulatorActivationFilter_Equals_m5BE53154869F0B26619DB5EEE913398BE351483E_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_Equals_m5BE53154869F0B26619DB5EEE913398BE351483E(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Equals(UnityEngine.UIElements.ManipulatorActivationFilter)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Equals_m6D9CDF042CE2808C90A212A43262ADD9BB9CAC41 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline(__this, NULL);
|
|
int32_t L_1;
|
|
L_1 = ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline((&___0_other), NULL);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
int32_t L_3;
|
|
L_3 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline((&___0_other), NULL);
|
|
if ((!(((uint32_t)L_2) == ((uint32_t)L_3))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4;
|
|
L_4 = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline(__this, NULL);
|
|
int32_t L_5;
|
|
L_5 = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline((&___0_other), NULL);
|
|
G_B4_0 = ((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
bool L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ManipulatorActivationFilter_Equals_m6D9CDF042CE2808C90A212A43262ADD9BB9CAC41_AdjustorThunk (RuntimeObject* __this, ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_Equals_m6D9CDF042CE2808C90A212A43262ADD9BB9CAC41(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.ManipulatorActivationFilter::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_GetHashCode_m46BCD43274FC9C9FB2515965F159FFEC3B7D2D57 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
int32_t V_3 = 0;
|
|
int32_t V_4 = 0;
|
|
{
|
|
V_0 = ((int32_t)390957112);
|
|
int32_t L_0 = V_0;
|
|
int32_t L_1;
|
|
L_1 = ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline(__this, NULL);
|
|
V_1 = L_1;
|
|
int32_t L_2;
|
|
L_2 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295((int32_t*)(&V_1), NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_0, ((int32_t)-1521134295))), L_2));
|
|
int32_t L_3 = V_0;
|
|
int32_t L_4;
|
|
L_4 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
V_2 = L_4;
|
|
int32_t L_5;
|
|
L_5 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295((int32_t*)(&V_2), NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_3, ((int32_t)-1521134295))), L_5));
|
|
int32_t L_6 = V_0;
|
|
int32_t L_7;
|
|
L_7 = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline(__this, NULL);
|
|
V_3 = L_7;
|
|
int32_t L_8;
|
|
L_8 = Int32_GetHashCode_m253D60FF7527A483E91004B7A2366F13E225E295((&V_3), NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_6, ((int32_t)-1521134295))), L_8));
|
|
int32_t L_9 = V_0;
|
|
V_4 = L_9;
|
|
goto IL_005d;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
int32_t L_10 = V_4;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t ManipulatorActivationFilter_GetHashCode_m46BCD43274FC9C9FB2515965F159FFEC3B7D2D57_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_GetHashCode_m46BCD43274FC9C9FB2515965F159FFEC3B7D2D57(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Matches(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Matches_mC249EAB7C24D269DDE2ED357A623BF938A7E9BC9 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, 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;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_e;
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline(__this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_e;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(4 /* System.Int32 UnityEngine.UIElements.IMouseEvent::get_clickCount() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_3);
|
|
int32_t L_5;
|
|
L_5 = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline(__this, NULL);
|
|
G_B5_0 = ((((int32_t)((((int32_t)L_4) < ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
V_0 = (bool)G_B5_0;
|
|
int32_t L_6;
|
|
L_6 = ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline(__this, NULL);
|
|
RuntimeObject* L_7 = ___0_e;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.IMouseEvent::get_button() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_7);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = ___0_e;
|
|
bool L_10;
|
|
L_10 = ManipulatorActivationFilter_HasModifiers_m2A62DEA25160EBF869E4455E414623508CE270C6(__this, L_9, NULL);
|
|
G_B8_0 = ((int32_t)(L_10));
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
bool L_11 = V_0;
|
|
V_2 = (bool)((int32_t)(G_B8_0&(int32_t)L_11));
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
bool L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ManipulatorActivationFilter_Matches_mC249EAB7C24D269DDE2ED357A623BF938A7E9BC9_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_Matches_mC249EAB7C24D269DDE2ED357A623BF938A7E9BC9(_thisAdjusted, ___0_e, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::HasModifiers(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_HasModifiers_m2A62DEA25160EBF869E4455E414623508CE270C6 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, 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;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_e;
|
|
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_002e;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_e;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = InterfaceFuncInvoker0< bool >::Invoke(10 /* System.Boolean UnityEngine.UIElements.IMouseEvent::get_altKey() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_2);
|
|
RuntimeObject* L_4 = ___0_e;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = InterfaceFuncInvoker0< bool >::Invoke(8 /* System.Boolean UnityEngine.UIElements.IMouseEvent::get_ctrlKey() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_4);
|
|
RuntimeObject* L_6 = ___0_e;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = InterfaceFuncInvoker0< bool >::Invoke(7 /* System.Boolean UnityEngine.UIElements.IMouseEvent::get_shiftKey() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_6);
|
|
RuntimeObject* L_8 = ___0_e;
|
|
NullCheck(L_8);
|
|
bool L_9;
|
|
L_9 = InterfaceFuncInvoker0< bool >::Invoke(9 /* System.Boolean UnityEngine.UIElements.IMouseEvent::get_commandKey() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_8);
|
|
bool L_10;
|
|
L_10 = ManipulatorActivationFilter_MatchModifiers_m088D92DBD2F0713AB0016039901CD0C403C5C344(__this, L_3, L_5, L_7, L_9, NULL);
|
|
V_1 = L_10;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
bool L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ManipulatorActivationFilter_HasModifiers_m2A62DEA25160EBF869E4455E414623508CE270C6_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_HasModifiers_m2A62DEA25160EBF869E4455E414623508CE270C6(_thisAdjusted, ___0_e, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::Matches(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_Matches_m3734F38CEA969EA3253112A4CAAF63C99D7711B4 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, 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;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_e;
|
|
V_1 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline(__this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_e;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(9 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_clickCount() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_3);
|
|
int32_t L_5;
|
|
L_5 = ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline(__this, NULL);
|
|
G_B5_0 = ((((int32_t)((((int32_t)L_4) < ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
V_0 = (bool)G_B5_0;
|
|
int32_t L_6;
|
|
L_6 = ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline(__this, NULL);
|
|
RuntimeObject* L_7 = ___0_e;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(3 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_button() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_7);
|
|
if ((!(((uint32_t)L_6) == ((uint32_t)L_8))))
|
|
{
|
|
goto IL_0042;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_9 = ___0_e;
|
|
bool L_10;
|
|
L_10 = ManipulatorActivationFilter_HasModifiers_m23427BBDFF2FBD6BA0BF432EDA40B671F8DC8D98(__this, L_9, NULL);
|
|
G_B8_0 = ((int32_t)(L_10));
|
|
goto IL_0043;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
bool L_11 = V_0;
|
|
V_2 = (bool)((int32_t)(G_B8_0&(int32_t)L_11));
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
bool L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ManipulatorActivationFilter_Matches_m3734F38CEA969EA3253112A4CAAF63C99D7711B4_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_Matches_m3734F38CEA969EA3253112A4CAAF63C99D7711B4(_thisAdjusted, ___0_e, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::HasModifiers(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_HasModifiers_m23427BBDFF2FBD6BA0BF432EDA40B671F8DC8D98 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, RuntimeObject* ___0_e, 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;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_e;
|
|
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_002e;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_2 = ___0_e;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = InterfaceFuncInvoker0< bool >::Invoke(21 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_altKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_2);
|
|
RuntimeObject* L_4 = ___0_e;
|
|
NullCheck(L_4);
|
|
bool L_5;
|
|
L_5 = InterfaceFuncInvoker0< bool >::Invoke(19 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_ctrlKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_4);
|
|
RuntimeObject* L_6 = ___0_e;
|
|
NullCheck(L_6);
|
|
bool L_7;
|
|
L_7 = InterfaceFuncInvoker0< bool >::Invoke(18 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_shiftKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_6);
|
|
RuntimeObject* L_8 = ___0_e;
|
|
NullCheck(L_8);
|
|
bool L_9;
|
|
L_9 = InterfaceFuncInvoker0< bool >::Invoke(20 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_commandKey() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_8);
|
|
bool L_10;
|
|
L_10 = ManipulatorActivationFilter_MatchModifiers_m088D92DBD2F0713AB0016039901CD0C403C5C344(__this, L_3, L_5, L_7, L_9, NULL);
|
|
V_1 = L_10;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
bool L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ManipulatorActivationFilter_HasModifiers_m23427BBDFF2FBD6BA0BF432EDA40B671F8DC8D98_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_HasModifiers_m23427BBDFF2FBD6BA0BF432EDA40B671F8DC8D98(_thisAdjusted, ___0_e, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ManipulatorActivationFilter::MatchModifiers(System.Boolean,System.Boolean,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ManipulatorActivationFilter_MatchModifiers_m088D92DBD2F0713AB0016039901CD0C403C5C344 (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, bool ___0_alt, bool ___1_ctrl, bool ___2_shift, bool ___3_command, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
int32_t G_B16_0 = 0;
|
|
int32_t G_B22_0 = 0;
|
|
int32_t G_B24_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
if (!((int32_t)((int32_t)L_0&4)))
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
bool L_1 = ___0_alt;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
int32_t L_2;
|
|
L_2 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
bool L_3 = ___0_alt;
|
|
G_B4_0 = ((int32_t)(((((int32_t)((int32_t)((int32_t)L_2&4))) == ((int32_t)0))? 1 : 0)&(int32_t)L_3));
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
G_B4_0 = 1;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
int32_t L_5;
|
|
L_5 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
if (!((int32_t)((int32_t)L_5&2)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
bool L_6 = ___1_ctrl;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
int32_t L_7;
|
|
L_7 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
bool L_8 = ___1_ctrl;
|
|
G_B10_0 = ((int32_t)(((((int32_t)((int32_t)((int32_t)L_7&2))) == ((int32_t)0))? 1 : 0)&(int32_t)L_8));
|
|
goto IL_0044;
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_0044:
|
|
{
|
|
V_2 = (bool)G_B10_0;
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
int32_t L_10;
|
|
L_10 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
if (!((int32_t)((int32_t)L_10&1)))
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}
|
|
{
|
|
bool L_11 = ___2_shift;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
int32_t L_12;
|
|
L_12 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
bool L_13 = ___2_shift;
|
|
G_B16_0 = ((int32_t)(((((int32_t)((int32_t)((int32_t)L_12&1))) == ((int32_t)0))? 1 : 0)&(int32_t)L_13));
|
|
goto IL_006a;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
G_B16_0 = 1;
|
|
}
|
|
|
|
IL_006a:
|
|
{
|
|
V_3 = (bool)G_B16_0;
|
|
bool L_14 = V_3;
|
|
if (!L_14)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
int32_t L_15;
|
|
L_15 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
bool L_16 = ___3_command;
|
|
if (!((int32_t)(((((int32_t)((int32_t)((int32_t)L_15&8))) == ((int32_t)0))? 1 : 0)|(int32_t)L_16)))
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_17;
|
|
L_17 = ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline(__this, NULL);
|
|
if (((int32_t)((int32_t)L_17&8)))
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
bool L_18 = ___3_command;
|
|
G_B22_0 = ((((int32_t)L_18) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0095;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
G_B22_0 = 1;
|
|
}
|
|
|
|
IL_0095:
|
|
{
|
|
G_B24_0 = G_B22_0;
|
|
goto IL_0098;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
G_B24_0 = 0;
|
|
}
|
|
|
|
IL_0098:
|
|
{
|
|
V_1 = (bool)G_B24_0;
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
bool L_19 = V_1;
|
|
return L_19;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool ManipulatorActivationFilter_MatchModifiers_m088D92DBD2F0713AB0016039901CD0C403C5C344_AdjustorThunk (RuntimeObject* __this, bool ___0_alt, bool ___1_ctrl, bool ___2_shift, bool ___3_command, const RuntimeMethod* method)
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = ManipulatorActivationFilter_MatchModifiers_m088D92DBD2F0713AB0016039901CD0C403C5C344(_thisAdjusted, ___0_alt, ___1_ctrl, ___2_shift, ___3_command, 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.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter> UnityEngine.UIElements.MouseManipulator::get_activators()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* MouseManipulator_get_activators_mAB6DB832B06575DF49E23F84AE0B79EACE0509C9 (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_0 = __this->___U3CactivatorsU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseManipulator::set_activators(System.Collections.Generic.List`1<UnityEngine.UIElements.ManipulatorActivationFilter>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseManipulator_set_activators_m8171261B8934A9481FA39098335919DC3A189A67 (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_0 = ___0_value;
|
|
__this->___U3CactivatorsU3Ek__BackingField_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CactivatorsU3Ek__BackingField_1), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.MouseManipulator::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MouseManipulator__ctor_mD486661A221C3A431055C951834C8016B03F88E5 (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1692B25CB352586E654D02A6E4D5AA8AE6A361B4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Manipulator__ctor_m9FA37A0BF987D14B713B1EA495D9DA50223EC597(__this, NULL);
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_0 = (List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121*)il2cpp_codegen_object_new(List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m1692B25CB352586E654D02A6E4D5AA8AE6A361B4(L_0, List_1__ctor_m1692B25CB352586E654D02A6E4D5AA8AE6A361B4_RuntimeMethod_var);
|
|
MouseManipulator_set_activators_m8171261B8934A9481FA39098335919DC3A189A67_inline(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseManipulator::CanStartManipulation(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseManipulator_CanStartManipulation_mA8982ABD8ECE0F529EF47AE8065D1AF8DF523DC1 (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, RuntimeObject* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m1E775D22EE18AAD3D98BA01D0A2AA668048CBF9C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m84E3A02B742FD4888E2BDFDA489A60F49727DC28_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB55E91F468F3CE1ECF040DA3CA7F8A6550C7A62B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mC4AB20120E7F41BCC6005AF74C96E92B288FFCEB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_0;
|
|
L_0 = MouseManipulator_get_activators_mAB6DB832B06575DF49E23F84AE0B79EACE0509C9_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
Enumerator_tBB0972570BC76CC972EC093FEFFBFC844E64417F L_1;
|
|
L_1 = List_1_GetEnumerator_mC4AB20120E7F41BCC6005AF74C96E92B288FFCEB(L_0, List_1_GetEnumerator_mC4AB20120E7F41BCC6005AF74C96E92B288FFCEB_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_003d:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m1E775D22EE18AAD3D98BA01D0A2AA668048CBF9C((&V_0), Enumerator_Dispose_m1E775D22EE18AAD3D98BA01D0A2AA668048CBF9C_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0032_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 L_2;
|
|
L_2 = Enumerator_get_Current_mB55E91F468F3CE1ECF040DA3CA7F8A6550C7A62B_inline((&V_0), Enumerator_get_Current_mB55E91F468F3CE1ECF040DA3CA7F8A6550C7A62B_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
RuntimeObject* L_3 = ___0_e;
|
|
bool L_4;
|
|
L_4 = ManipulatorActivationFilter_Matches_mC249EAB7C24D269DDE2ED357A623BF938A7E9BC9((&V_1), L_3, NULL);
|
|
V_2 = L_4;
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0031_1;
|
|
}
|
|
}
|
|
{
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 L_6 = V_1;
|
|
__this->___m_currentActivator_2 = L_6;
|
|
V_3 = (bool)1;
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0031_1:
|
|
{
|
|
}
|
|
|
|
IL_0032_1:
|
|
{
|
|
bool L_7;
|
|
L_7 = Enumerator_MoveNext_m84E3A02B742FD4888E2BDFDA489A60F49727DC28((&V_0), Enumerator_MoveNext_m84E3A02B742FD4888E2BDFDA489A60F49727DC28_RuntimeMethod_var);
|
|
if (L_7)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
V_3 = (bool)0;
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
bool L_8 = V_3;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.MouseManipulator::CanStopManipulation(UnityEngine.UIElements.IMouseEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MouseManipulator_CanStopManipulation_m6BDD39352CCB9AEBC632B876072F616A5693136C (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, RuntimeObject* ___0_e, 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;
|
|
bool V_1 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_e;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeObject* L_2 = ___0_e;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = InterfaceFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.UIElements.IMouseEvent::get_button() */, IMouseEvent_tF59A3DD3CA593DB23B47764DF0521996D509A59E_il2cpp_TypeInfo_var, L_2);
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* L_4 = (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81*)(&__this->___m_currentActivator_2);
|
|
int32_t L_5;
|
|
L_5 = ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline(L_4, NULL);
|
|
V_1 = (bool)((((int32_t)L_3) == ((int32_t)L_5))? 1 : 0);
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
bool L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#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.VisualElementPanelActivator::get_isActive()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElementPanelActivator_get_isActive_m6F081918AB91EABC70D5CD2B2D6948EC342637FE (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisActiveU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::set_isActive(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_set_isActive_m24D8DEA69844B06E802EA1FBEA607A9C0D2943A8 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisActiveU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.VisualElementPanelActivator::get_isDetaching()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool VisualElementPanelActivator_get_isDetaching_m92A1A8923E755657001F279B0BC950FE6D4ED22C (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisDetachingU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::set_isDetaching(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_set_isDetaching_mCBE238B4B8C605C23C7B09853C0B095B537A1E23 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisDetachingU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::.ctor(UnityEngine.UIElements.IVisualElementPanelActivatable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator__ctor_mD95F63DBD7CE7FD914C944114994CBA45FF248D3 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, RuntimeObject* ___0_activatable, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
RuntimeObject* L_0 = ___0_activatable;
|
|
__this->___m_Activatable_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Activatable_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::SetActive(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_SetActive_m6FAFDB70AB4653705BADD62945396211D027CD7D (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, bool ___0_action, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_m70ECAB60D095EDB2BB60D44BC1ABBF8FB4853918_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mBB7D7B6A24C2AB04A9347FD693F502B54BDA3D9D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementPanelActivator_OnEnter_m35F19B55A036E75B7197F971C546F8B162CFBB00_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementPanelActivator_OnLeave_m9B458D27DC27A0338690FE4986DDED7450B8F39A_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = VisualElementPanelActivator_get_isActive_m6F081918AB91EABC70D5CD2B2D6948EC342637FE_inline(__this, NULL);
|
|
bool L_1 = ___0_action;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_00b4;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = ___0_action;
|
|
VisualElementPanelActivator_set_isActive_m24D8DEA69844B06E802EA1FBEA607A9C0D2943A8_inline(__this, L_3, NULL);
|
|
bool L_4;
|
|
L_4 = VisualElementPanelActivator_get_isActive_m6F081918AB91EABC70D5CD2B2D6948EC342637FE_inline(__this, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_6 = __this->___m_Activatable_0;
|
|
NullCheck(L_6);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IVisualElementPanelActivatable::get_element() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_6);
|
|
EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* L_8 = (EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88*)il2cpp_codegen_object_new(EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88_il2cpp_TypeInfo_var);
|
|
NullCheck(L_8);
|
|
EventCallback_1__ctor_m929B5D5292DB931820A52428141FECB39016A6B7(L_8, __this, (intptr_t)((void*)VisualElementPanelActivator_OnEnter_m35F19B55A036E75B7197F971C546F8B162CFBB00_RuntimeMethod_var), NULL);
|
|
NullCheck(L_7);
|
|
CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF(L_7, L_8, 0, CallbackEventHandler_RegisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_mE90FCB724E9E49659FDCAE9A1BB0FC9BA01C9BEF_RuntimeMethod_var);
|
|
RuntimeObject* L_9 = __this->___m_Activatable_0;
|
|
NullCheck(L_9);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IVisualElementPanelActivatable::get_element() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_9);
|
|
EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* L_11 = (EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B*)il2cpp_codegen_object_new(EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
EventCallback_1__ctor_m0407B736C264F06C81E5CBB70EF40FBB975AC634(L_11, __this, (intptr_t)((void*)VisualElementPanelActivator_OnLeave_m9B458D27DC27A0338690FE4986DDED7450B8F39A_RuntimeMethod_var), NULL);
|
|
NullCheck(L_10);
|
|
CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C(L_10, L_11, 0, CallbackEventHandler_RegisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mED85B91BE761D1DBE3001231E0050CD612946F2C_RuntimeMethod_var);
|
|
VisualElementPanelActivator_SendActivation_m5CD4B9C71CA9AA83E14531E6A6EA4548E12C8350(__this, NULL);
|
|
goto IL_00b3;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
RuntimeObject* L_12 = __this->___m_Activatable_0;
|
|
NullCheck(L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IVisualElementPanelActivatable::get_element() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_12);
|
|
EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88* L_14 = (EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88*)il2cpp_codegen_object_new(EventCallback_1_t1FFCCC98AE7C52F427D11F1609ED56BE1E4AEF88_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
EventCallback_1__ctor_m929B5D5292DB931820A52428141FECB39016A6B7(L_14, __this, (intptr_t)((void*)VisualElementPanelActivator_OnEnter_m35F19B55A036E75B7197F971C546F8B162CFBB00_RuntimeMethod_var), NULL);
|
|
NullCheck(L_13);
|
|
CallbackEventHandler_UnregisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_m70ECAB60D095EDB2BB60D44BC1ABBF8FB4853918(L_13, L_14, 0, CallbackEventHandler_UnregisterCallback_TisAttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_m70ECAB60D095EDB2BB60D44BC1ABBF8FB4853918_RuntimeMethod_var);
|
|
RuntimeObject* L_15 = __this->___m_Activatable_0;
|
|
NullCheck(L_15);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = InterfaceFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.IVisualElementPanelActivatable::get_element() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_15);
|
|
EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B* L_17 = (EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B*)il2cpp_codegen_object_new(EventCallback_1_tCE5E8F1D2A7EE5EC636D68025C6D899BD17EF38B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
EventCallback_1__ctor_m0407B736C264F06C81E5CBB70EF40FBB975AC634(L_17, __this, (intptr_t)((void*)VisualElementPanelActivator_OnLeave_m9B458D27DC27A0338690FE4986DDED7450B8F39A_RuntimeMethod_var), NULL);
|
|
NullCheck(L_16);
|
|
CallbackEventHandler_UnregisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mBB7D7B6A24C2AB04A9347FD693F502B54BDA3D9D(L_16, L_17, 0, CallbackEventHandler_UnregisterCallback_TisDetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_mBB7D7B6A24C2AB04A9347FD693F502B54BDA3D9D_RuntimeMethod_var);
|
|
VisualElementPanelActivator_SendDeactivation_m533376C3D489C7029083CA153336FE8CE9946807(__this, NULL);
|
|
}
|
|
|
|
IL_00b3:
|
|
{
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::SendActivation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_SendActivation_m5CD4B9C71CA9AA83E14531E6A6EA4548E12C8350 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_Activatable_0;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean UnityEngine.UIElements.IVisualElementPanelActivatable::CanBeActivated() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = __this->___m_Activatable_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(2 /* System.Void UnityEngine.UIElements.IVisualElementPanelActivatable::OnPanelActivate() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_3);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::SendDeactivation()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_SendDeactivation_m533376C3D489C7029083CA153336FE8CE9946807 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_Activatable_0;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(1 /* System.Boolean UnityEngine.UIElements.IVisualElementPanelActivatable::CanBeActivated() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = __this->___m_Activatable_0;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(3 /* System.Void UnityEngine.UIElements.IVisualElementPanelActivatable::OnPanelDeactivate() */, IVisualElementPanelActivatable_t1534145F3AB53C9E6C85BA2DBAE04B9103F35CB0_il2cpp_TypeInfo_var, L_3);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::OnEnter(UnityEngine.UIElements.AttachToPanelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_OnEnter_m35F19B55A036E75B7197F971C546F8B162CFBB00 (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = VisualElementPanelActivator_get_isActive_m6F081918AB91EABC70D5CD2B2D6948EC342637FE_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
VisualElementPanelActivator_SendActivation_m5CD4B9C71CA9AA83E14531E6A6EA4548E12C8350(__this, NULL);
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementPanelActivator::OnLeave(UnityEngine.UIElements.DetachFromPanelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementPanelActivator_OnLeave_m9B458D27DC27A0338690FE4986DDED7450B8F39A (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = VisualElementPanelActivator_get_isActive_m6F081918AB91EABC70D5CD2B2D6948EC342637FE_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
VisualElementPanelActivator_set_isDetaching_mCBE238B4B8C605C23C7B09853C0B095B537A1E23_inline(__this, (bool)1, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001f:
|
|
{// begin finally (depth: 1)
|
|
VisualElementPanelActivator_set_isDetaching_mCBE238B4B8C605C23C7B09853C0B095B537A1E23_inline(__this, (bool)0, NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
VisualElementPanelActivator_SendDeactivation_m533376C3D489C7029083CA153336FE8CE9946807(__this, NULL);
|
|
goto IL_002a;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
#ifdef __clang__
|
|
#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.VisualTreeUpdater::.ctor(UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeUpdater__ctor_mC19919BE31D08821AB123291E35FAA24874F4C8C (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___0_panel, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_0 = ___0_panel;
|
|
__this->___m_Panel_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Panel_0), (void*)L_0);
|
|
UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* L_1 = (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449*)il2cpp_codegen_object_new(UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
UpdaterArray__ctor_mF33D908A0C339803B1442311DBF94FB7B5ACE3BF(L_1, NULL);
|
|
__this->___m_UpdaterArray_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UpdaterArray_1), (void*)L_1);
|
|
VisualTreeUpdater_SetDefaultUpdaters_m6A6596852040EC7704881CD80BBC684F7FC65D56(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeUpdater_Dispose_m98D9A804EB2A6EC653A25A828C6F6BCA6F1FBCE9 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* L_0 = __this->___m_UpdaterArray_1;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = UpdaterArray_get_Item_mCF3C06B0D09FE78D641E4AF53F5FEBCAED9FD10E(L_0, L_1, NULL);
|
|
V_1 = L_2;
|
|
RuntimeObject* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_3);
|
|
int32_t L_4 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_4, 1));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
V_2 = (bool)((((int32_t)L_5) < ((int32_t)7))? 1 : 0);
|
|
bool L_6 = V_2;
|
|
if (L_6)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::UpdateVisualTreePhase(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeUpdater_UpdateVisualTreePhase_m829362FF953343897315E7956F09987C33F97BB7 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* L_0 = __this->___m_UpdaterArray_1;
|
|
int32_t L_1 = ___0_phase;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = UpdaterArray_get_Item_m6DADA11557BD3FE2E6680F3C1F6F828DB4EE255C(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
RuntimeObject* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_4;
|
|
L_4 = InterfaceFuncInvoker0< ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD >::Invoke(1 /* Unity.Profiling.ProfilerMarker UnityEngine.UIElements.IVisualTreeUpdater::get_profilerMarker() */, IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06_il2cpp_TypeInfo_var, L_3);
|
|
V_2 = L_4;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_5;
|
|
L_5 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_2), NULL);
|
|
V_1 = L_5;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0028:
|
|
{// begin finally (depth: 1)
|
|
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_1), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(2 /* System.Void UnityEngine.UIElements.IVisualTreeUpdater::Update() */, IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06_il2cpp_TypeInfo_var, L_6);
|
|
goto IL_0037;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0037:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::OnVersionChanged(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VersionChangeType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeUpdater_OnVersionChanged_mD7AB62E84D8A19430C45A1E2F43F36853F000210 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_versionChangeType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* L_0 = __this->___m_UpdaterArray_1;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = UpdaterArray_get_Item_mCF3C06B0D09FE78D641E4AF53F5FEBCAED9FD10E(L_0, L_1, NULL);
|
|
V_1 = L_2;
|
|
RuntimeObject* L_3 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = ___0_ve;
|
|
int32_t L_5 = ___1_versionChangeType;
|
|
NullCheck(L_3);
|
|
InterfaceActionInvoker2< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t >::Invoke(3 /* System.Void UnityEngine.UIElements.IVisualTreeUpdater::OnVersionChanged(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VersionChangeType) */, IVisualTreeUpdater_t4AF1E0B23A6AEFF024F1AC23815089B2495C7F06_il2cpp_TypeInfo_var, L_3, L_4, L_5);
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
V_2 = (bool)((((int32_t)L_7) < ((int32_t)7))? 1 : 0);
|
|
bool L_8 = V_2;
|
|
if (L_8)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IVisualTreeUpdater UnityEngine.UIElements.VisualTreeUpdater::GetUpdater(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* VisualTreeUpdater_GetUpdater_mC0457EF2584A2FA500BA47BAE987A3E149BAAE53 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* L_0 = __this->___m_UpdaterArray_1;
|
|
int32_t L_1 = ___0_phase;
|
|
NullCheck(L_0);
|
|
RuntimeObject* L_2;
|
|
L_2 = UpdaterArray_get_Item_m6DADA11557BD3FE2E6680F3C1F6F828DB4EE255C(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater::SetDefaultUpdaters()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeUpdater_SetDefaultUpdaters_m6A6596852040EC7704881CD80BBC684F7FC65D56 (VisualTreeUpdater_tFDE7D9F9A146A26B2ED69565B7BD142B416AB9C9* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeUpdater_SetUpdater_TisUIRLayoutUpdater_t90228F3698DB774BA11D4FBD7DCE8D08BE8DB5B3_m4620EBE804BE7EA33A438FD806F27A59B88EF94F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeUpdater_SetUpdater_TisUIRRepaintUpdater_tA4093F3857EA96D9E5E9EFD7C18785C787E1408E_mE6D0EBAE20CF2F3FEDBC5F057D1B227A75EE0E8B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeUpdater_SetUpdater_TisVisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_m0E425144C205AA20A3AE7C9A67DEA05D012F5EBD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeUpdater_SetUpdater_TisVisualTreeBindingsUpdater_t6EF5299259D0A81E931840287AE6C7E43093A637_m0A357ED36B8D958B4F3102F39439BA475F390CE0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeUpdater_SetUpdater_TisVisualTreeStyleUpdater_t5F2622AC7562F7647C21B9C3CB4D2B7E98C50D68_mAE1E73D29AB563BEC9FB6BAC26003F185B2D3446_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeUpdater_SetUpdater_TisVisualTreeTransformClipUpdater_t3DFB28E52D60790DE253FA5746D1E3CA20B33C67_mDB8ED3E891DCE40059863E94397200807BEB9597_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeUpdater_SetUpdater_TisVisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_mB436EFFA13D99D35730E3F4C93C08C8CD422A709_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VisualTreeUpdater_SetUpdater_TisVisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_mB436EFFA13D99D35730E3F4C93C08C8CD422A709(__this, 0, VisualTreeUpdater_SetUpdater_TisVisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_mB436EFFA13D99D35730E3F4C93C08C8CD422A709_RuntimeMethod_var);
|
|
VisualTreeUpdater_SetUpdater_TisVisualTreeBindingsUpdater_t6EF5299259D0A81E931840287AE6C7E43093A637_m0A357ED36B8D958B4F3102F39439BA475F390CE0(__this, 1, VisualTreeUpdater_SetUpdater_TisVisualTreeBindingsUpdater_t6EF5299259D0A81E931840287AE6C7E43093A637_m0A357ED36B8D958B4F3102F39439BA475F390CE0_RuntimeMethod_var);
|
|
VisualTreeUpdater_SetUpdater_TisVisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_m0E425144C205AA20A3AE7C9A67DEA05D012F5EBD(__this, 2, VisualTreeUpdater_SetUpdater_TisVisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_m0E425144C205AA20A3AE7C9A67DEA05D012F5EBD_RuntimeMethod_var);
|
|
VisualTreeUpdater_SetUpdater_TisVisualTreeStyleUpdater_t5F2622AC7562F7647C21B9C3CB4D2B7E98C50D68_mAE1E73D29AB563BEC9FB6BAC26003F185B2D3446(__this, 3, VisualTreeUpdater_SetUpdater_TisVisualTreeStyleUpdater_t5F2622AC7562F7647C21B9C3CB4D2B7E98C50D68_mAE1E73D29AB563BEC9FB6BAC26003F185B2D3446_RuntimeMethod_var);
|
|
VisualTreeUpdater_SetUpdater_TisUIRLayoutUpdater_t90228F3698DB774BA11D4FBD7DCE8D08BE8DB5B3_m4620EBE804BE7EA33A438FD806F27A59B88EF94F(__this, 4, VisualTreeUpdater_SetUpdater_TisUIRLayoutUpdater_t90228F3698DB774BA11D4FBD7DCE8D08BE8DB5B3_m4620EBE804BE7EA33A438FD806F27A59B88EF94F_RuntimeMethod_var);
|
|
VisualTreeUpdater_SetUpdater_TisVisualTreeTransformClipUpdater_t3DFB28E52D60790DE253FA5746D1E3CA20B33C67_mDB8ED3E891DCE40059863E94397200807BEB9597(__this, 5, VisualTreeUpdater_SetUpdater_TisVisualTreeTransformClipUpdater_t3DFB28E52D60790DE253FA5746D1E3CA20B33C67_mDB8ED3E891DCE40059863E94397200807BEB9597_RuntimeMethod_var);
|
|
VisualTreeUpdater_SetUpdater_TisUIRRepaintUpdater_tA4093F3857EA96D9E5E9EFD7C18785C787E1408E_mE6D0EBAE20CF2F3FEDBC5F057D1B227A75EE0E8B(__this, 6, VisualTreeUpdater_SetUpdater_TisUIRRepaintUpdater_tA4093F3857EA96D9E5E9EFD7C18785C787E1408E_mE6D0EBAE20CF2F3FEDBC5F057D1B227A75EE0E8B_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.VisualTreeUpdater/UpdaterArray::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdaterArray__ctor_mF33D908A0C339803B1442311DBF94FB7B5ACE3BF (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8* L_0 = (IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8*)(IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8*)SZArrayNew(IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8_il2cpp_TypeInfo_var, (uint32_t)7);
|
|
__this->___m_VisualTreeUpdaters_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_VisualTreeUpdaters_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray::set_Item(UnityEngine.UIElements.VisualTreeUpdatePhase,UnityEngine.UIElements.IVisualTreeUpdater)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UpdaterArray_set_Item_m2961BC09E3C22E6D3887BB8E48A367BAEF847A11 (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* __this, int32_t ___0_phase, RuntimeObject* ___1_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8* L_0 = __this->___m_VisualTreeUpdaters_0;
|
|
int32_t L_1 = ___0_phase;
|
|
RuntimeObject* L_2 = ___1_value;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, L_2);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (RuntimeObject*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IVisualTreeUpdater UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray::get_Item(UnityEngine.UIElements.VisualTreeUpdatePhase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UpdaterArray_get_Item_m6DADA11557BD3FE2E6680F3C1F6F828DB4EE255C (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* __this, int32_t ___0_phase, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8* L_0 = __this->___m_VisualTreeUpdaters_0;
|
|
int32_t L_1 = ___0_phase;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IVisualTreeUpdater UnityEngine.UIElements.VisualTreeUpdater/UpdaterArray::get_Item(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* UpdaterArray_get_Item_mCF3C06B0D09FE78D641E4AF53F5FEBCAED9FD10E (UpdaterArray_tF8D43D2A3598E7C17ABB5308E83FDECF1F36A449* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
IVisualTreeUpdaterU5BU5D_t9E9D948BC4F327DA519FEB2BCEC12FB7FD7C59E8* L_0 = __this->___m_VisualTreeUpdaters_0;
|
|
int32_t L_1 = ___0_index;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#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.BaseVisualTreeUpdater::add_panelChanged(System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualTreeUpdater_add_panelChanged_m05C16BEBB2A2FA86EA151A1BAFBD0AA9B427A374 (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* V_0 = NULL;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* V_1 = NULL;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* V_2 = NULL;
|
|
{
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_0 = __this->___panelChanged_0;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_2 = V_1;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*)Castclass((RuntimeObject*)L_4, Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53_il2cpp_TypeInfo_var));
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53** L_5 = (Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53**)(&__this->___panelChanged_0);
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_6 = V_2;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_7 = V_1;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_9 = V_0;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*)L_9) == ((RuntimeObject*)(Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVisualTreeUpdater::remove_panelChanged(System.Action`1<UnityEngine.UIElements.BaseVisualElementPanel>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualTreeUpdater_remove_panelChanged_m28B16E992E86B0F8E8F5A42D7C9F726DF1ADEEF8 (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* V_0 = NULL;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* V_1 = NULL;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* V_2 = NULL;
|
|
{
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_0 = __this->___panelChanged_0;
|
|
V_0 = L_0;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_1 = V_0;
|
|
V_1 = L_1;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_2 = V_1;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_3 = ___0_value;
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Remove_m8B7DD5661308FA972E23CA1CC3FC9CEB355504E3(L_2, L_3, NULL);
|
|
V_2 = ((Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*)Castclass((RuntimeObject*)L_4, Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53_il2cpp_TypeInfo_var));
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53** L_5 = (Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53**)(&__this->___panelChanged_0);
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_6 = V_2;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_7 = V_1;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_8;
|
|
L_8 = InterlockedCompareExchangeImpl<Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*>(L_5, L_6, L_7);
|
|
V_0 = L_8;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_9 = V_0;
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_10 = V_1;
|
|
if ((!(((RuntimeObject*)(Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*)L_9) == ((RuntimeObject*)(Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*)L_10))))
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.BaseVisualElementPanel UnityEngine.UIElements.BaseVisualTreeUpdater::get_panel()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* BaseVisualTreeUpdater_get_panel_mF6239BD11A1C6EDD79F9B012ABADCAFB1408FB22 (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, const RuntimeMethod* method)
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* V_0 = NULL;
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_0 = __this->___m_Panel_1;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVisualTreeUpdater::set_panel(UnityEngine.UIElements.BaseVisualElementPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualTreeUpdater_set_panel_mFDC2B752C3D8C2AF28121726593ED0709F6F1F9D (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_0 = ___0_value;
|
|
__this->___m_Panel_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Panel_1), (void*)L_0);
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_1 = __this->___panelChanged_0;
|
|
V_0 = (bool)((!(((RuntimeObject*)(Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0022;
|
|
}
|
|
}
|
|
{
|
|
Action_1_tF0C1AFCCE9CE63382F43540DC0DA04A8939A8A53* L_3 = __this->___panelChanged_0;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_4 = ___0_value;
|
|
NullCheck(L_3);
|
|
Action_1_Invoke_m0790014ABCA2C117F049BB4CFCC730705B84C70A_inline(L_3, L_4, NULL);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualTreeUpdater::get_visualTree()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* BaseVisualTreeUpdater_get_visualTree_m3501698625DFEAAE964C8388247645F20022C48A (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_0;
|
|
L_0 = BaseVisualTreeUpdater_get_panel_mF6239BD11A1C6EDD79F9B012ABADCAFB1408FB22(__this, NULL);
|
|
NullCheck(L_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(35 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.BaseVisualElementPanel::get_visualTree() */, L_0);
|
|
V_0 = L_1;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVisualTreeUpdater::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualTreeUpdater_Dispose_mB0D90A0BDE5E1E2496D4EFC9F902AE40FD3A9549 (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __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(11 /* System.Void UnityEngine.UIElements.BaseVisualTreeUpdater::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.BaseVisualTreeUpdater::Dispose(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualTreeUpdater_Dispose_mA729351FC3F75EA15958558041384742C28CE12B (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __this, bool ___0_disposing, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BaseVisualTreeUpdater::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BaseVisualTreeUpdater__ctor_m64962BB0B4E0EE94292901B60BC5BA826FF5301B (BaseVisualTreeUpdater_t234B0DC7D28731E61BA8215154765170E5D0AB41* __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.UIElementsPackageUtility::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UIElementsPackageUtility__cctor_m9597BC411BE6096809E484E5BA42ADEAB963C7DA (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___EditorResourcesBasePath_0), (void*)_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
((UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsPackageUtility_tE9E513C85D65D60A1BA9652BBFC6C3C6652C821A_il2cpp_TypeInfo_var))->___IsUIEPackageLoaded_1 = (bool)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.StylePropertyAnimationSystem::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem__ctor_mC6EBE9875CD310004AB1C28FD79DCEF3DED90CD8 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2__ctor_mC6AD8982CA3D110E6245DB0643FACB0CD5029E5B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m90D257D81F60744827FBC0735C4BA1038EA92B1E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t491E344573B9D6F61E36AF56132B7412453928C9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->___m_CurrentTimeMs_0 = ((int64_t)0);
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* L_0 = (List_1_t491E344573B9D6F61E36AF56132B7412453928C9*)il2cpp_codegen_object_new(List_1_t491E344573B9D6F61E36AF56132B7412453928C9_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m90D257D81F60744827FBC0735C4BA1038EA92B1E(L_0, List_1__ctor_m90D257D81F60744827FBC0735C4BA1038EA92B1E_RuntimeMethod_var);
|
|
__this->___m_AllValues_13 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_AllValues_13), (void*)L_0);
|
|
Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* L_1 = (Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7*)il2cpp_codegen_object_new(Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
Dictionary_2__ctor_mC6AD8982CA3D110E6245DB0643FACB0CD5029E5B(L_1, Dictionary_2__ctor_mC6AD8982CA3D110E6245DB0643FACB0CD5029E5B_RuntimeMethod_var);
|
|
__this->___m_PropertyToValues_14 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertyToValues_14), (void*)L_1);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
int64_t L_2;
|
|
L_2 = Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B(NULL);
|
|
__this->___m_CurrentTimeMs_0 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,System.Single,System.Single,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_mA488D4FC576A6AF240082C18E0E46600CC972320 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, float ___2_startValue, float ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2_m69BD3101A74B41321546E2751DF646D4EB610CB0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7DA7B0363D2265A7C217459845364E86F6D093AB_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
float L_2 = ___2_startValue;
|
|
float L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2** L_7 = (ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2**)(&__this->___m_Floats_1);
|
|
ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2_m69BD3101A74B41321546E2751DF646D4EB610CB0(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2_m69BD3101A74B41321546E2751DF646D4EB610CB0_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7DA7B0363D2265A7C217459845364E86F6D093AB(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisSingle_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_m7DA7B0363D2265A7C217459845364E86F6D093AB_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,System.Int32,System.Int32,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m824E7D3EA9CA44374AD9A3321767C10DF3F2D8E3 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, int32_t ___2_startValue, int32_t ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367_m46F0FADDB445430FB28DA5D1A5E4F6884D9A0D3A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mB97CADACE8C091B57839011BE99CE92EC7A16744_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
int32_t L_2 = ___2_startValue;
|
|
int32_t L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367** L_7 = (ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367**)(&__this->___m_Ints_2);
|
|
ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367_m46F0FADDB445430FB28DA5D1A5E4F6884D9A0D3A(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367_m46F0FADDB445430FB28DA5D1A5E4F6884D9A0D3A_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mB97CADACE8C091B57839011BE99CE92EC7A16744(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisInt32_t680FF22E76F6EFAD4375103CBBFFA0421349384C_mB97CADACE8C091B57839011BE99CE92EC7A16744_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m66912DFF6FB884ABD0A56EBB0F65D282F34DCA5B (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___2_startValue, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915_m1D6B301065FC8678565A1A179ED187E6D7DBAF0B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisLength_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256_m35F10294C0F650E36D89179C9EBDD14F1BED06F6_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_2 = ___2_startValue;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915** L_7 = (ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915**)(&__this->___m_Lengths_3);
|
|
ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915_m1D6B301065FC8678565A1A179ED187E6D7DBAF0B(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915_m1D6B301065FC8678565A1A179ED187E6D7DBAF0B_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisLength_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256_m35F10294C0F650E36D89179C9EBDD14F1BED06F6(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisLength_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256_m35F10294C0F650E36D89179C9EBDD14F1BED06F6_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.Color,UnityEngine.Color,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m750260F2A718F9E2B44149751B25C47525B8B849 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___2_startValue, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904_mDB2355711EE15D844723B2B521C5178F4902A6BA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mA6698B8B343450BE774AAFACE5329339B620513C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___2_startValue;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904** L_7 = (ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904**)(&__this->___m_Colors_4);
|
|
ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904_mDB2355711EE15D844723B2B521C5178F4902A6BA(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904_mDB2355711EE15D844723B2B521C5178F4902A6BA_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mA6698B8B343450BE774AAFACE5329339B620513C(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisColor_tD001788D726C3A7F1379BEED0260B9591F440C1F_mA6698B8B343450BE774AAFACE5329339B620513C_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Background,UnityEngine.UIElements.Background,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m5BD6F0E4E3C141C5E360C4AD94B430138F357023 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___2_startValue, Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34_m3AA63687C84FE888B431AC60F7EDE46679F9C363_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisBackground_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_m4681675678ACD0B638F1DE5B61E1FB551007A685_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 L_2 = ___2_startValue;
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34** L_7 = (ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34**)(&__this->___m_Backgrounds_5);
|
|
ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34_m3AA63687C84FE888B431AC60F7EDE46679F9C363(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34_m3AA63687C84FE888B431AC60F7EDE46679F9C363_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisBackground_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_m4681675678ACD0B638F1DE5B61E1FB551007A685(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisBackground_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8_m4681675678ACD0B638F1DE5B61E1FB551007A685_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.FontDefinition,UnityEngine.UIElements.FontDefinition,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m64A2F17B3E3A81F9F6A4308582C37208FE605D3C (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___2_startValue, FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7_m980E27E4E6C02926D25BFFDEF0DF7B86D2C4B566_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisFontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_m8E4D16083B78CFD9ACB4C401F281E9677C1BE232_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_2 = ___2_startValue;
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7** L_7 = (ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7**)(&__this->___m_FontDefinitions_6);
|
|
ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7_m980E27E4E6C02926D25BFFDEF0DF7B86D2C4B566(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7_m980E27E4E6C02926D25BFFDEF0DF7B86D2C4B566_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisFontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_m8E4D16083B78CFD9ACB4C401F281E9677C1BE232(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisFontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C_m8E4D16083B78CFD9ACB4C401F281E9677C1BE232_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.Font,UnityEngine.Font,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_mC3833A7A475FE3D838FA7CF6D0822DCEA00AD937 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___2_startValue, Font_tC95270EA3198038970422D78B74A7F2E218A96B6* ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4_m2DB4B8CDC30AEA7F69E9AF175DEEEADF256997EE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m22AF562422138D87A2E30829811FEA3C1A62595F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_2 = ___2_startValue;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4** L_7 = (ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4**)(&__this->___m_Fonts_7);
|
|
ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4_m2DB4B8CDC30AEA7F69E9AF175DEEEADF256997EE(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4_m2DB4B8CDC30AEA7F69E9AF175DEEEADF256997EE_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m22AF562422138D87A2E30829811FEA3C1A62595F(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisFont_tC95270EA3198038970422D78B74A7F2E218A96B6_m22AF562422138D87A2E30829811FEA3C1A62595F_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m9F9ED8F8044D64A2BD8AE264E2EE12E6577FC038 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___2_startValue, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C_m2DD45E28E05067361C23AF6459FC26220732E34C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisTextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_mAF55C9EB61C8081E34D6DA31BB0B7749F7120DB4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_2 = ___2_startValue;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C** L_7 = (ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C**)(&__this->___m_TextShadows_8);
|
|
ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C_m2DD45E28E05067361C23AF6459FC26220732E34C(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C_m2DD45E28E05067361C23AF6459FC26220732E34C_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisTextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_mAF55C9EB61C8081E34D6DA31BB0B7749F7120DB4(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisTextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_mAF55C9EB61C8081E34D6DA31BB0B7749F7120DB4_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_mB98BF3E021927FE9EE8EF1A5A01F41BB669D55A7 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___2_startValue, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A_m5D936E7D89B0490962316F11C3199C376E575A7D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisScale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_mCA0F0ADA23085C05A6E20E52FAC0B7FE37E5F40F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_2 = ___2_startValue;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A** L_7 = (ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A**)(&__this->___m_Scale_9);
|
|
ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A_m5D936E7D89B0490962316F11C3199C376E575A7D(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A_m5D936E7D89B0490962316F11C3199C376E575A7D_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisScale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_mCA0F0ADA23085C05A6E20E52FAC0B7FE37E5F40F(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisScale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7_mCA0F0ADA23085C05A6E20E52FAC0B7FE37E5F40F_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m9C575CC7F1C699469444EA233AF2EF36B77D7BEC (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___2_startValue, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63_m4D2646D45B81A1B5C91B8B7E7080F6E36A570778_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisRotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_mF48ED781CBE6F243450F08A3CA66A160BA853FF1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_2 = ___2_startValue;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63** L_7 = (ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63**)(&__this->___m_Rotate_10);
|
|
ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63_m4D2646D45B81A1B5C91B8B7E7080F6E36A570778(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63_m4D2646D45B81A1B5C91B8B7E7080F6E36A570778_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisRotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_mF48ED781CBE6F243450F08A3CA66A160BA853FF1(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisRotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7_mF48ED781CBE6F243450F08A3CA66A160BA853FF1_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_mC589A39E065FC5CC51F748CBB2A37121CF18E6C4 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___2_startValue, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B_m9D347157570FF4DC0BC1A96EB5DC3A57DEA15B16_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisTranslate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_m0BCC34376C9BBAEB7315E9F98CF2FF0578E354B7_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_2 = ___2_startValue;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B** L_7 = (ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B**)(&__this->___m_Translate_11);
|
|
ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B_m9D347157570FF4DC0BC1A96EB5DC3A57DEA15B16(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B_m9D347157570FF4DC0BC1A96EB5DC3A57DEA15B16_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisTranslate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_m0BCC34376C9BBAEB7315E9F98CF2FF0578E354B7(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisTranslate_t494F6E802F8A640D67819C9D26BE62DED1218A8E_m0BCC34376C9BBAEB7315E9F98CF2FF0578E354B7_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem::StartTransition(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Int32,System.Int32,System.Func`2<System.Single,System.Single>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool StylePropertyAnimationSystem_StartTransition_m7540FF4C1A2E1D467F2AB31F818A191B6D2643AF (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___2_startValue, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___3_endValue, int32_t ___4_durationMs, int32_t ___5_delayMs, Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* ___6_easingCurve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_GetOrCreate_TisValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F_m02C7F5437BD38F23BD0D7959FB0A6737F7F5E07C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StylePropertyAnimationSystem_StartTransition_TisTransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502_m6DA3A36592C69F444EC66E150A00D1E9D0D2E74F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_2 = ___2_startValue;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_3 = ___3_endValue;
|
|
int32_t L_4 = ___4_durationMs;
|
|
int32_t L_5 = ___5_delayMs;
|
|
Func_2_t2A7432CC4F64D0DF6D8629208B154CF139B39AF2* L_6 = ___6_easingCurve;
|
|
ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F** L_7 = (ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F**)(&__this->___m_TransformOrigin_12);
|
|
ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* L_8;
|
|
L_8 = StylePropertyAnimationSystem_GetOrCreate_TisValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F_m02C7F5437BD38F23BD0D7959FB0A6737F7F5E07C(__this, L_7, StylePropertyAnimationSystem_GetOrCreate_TisValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F_m02C7F5437BD38F23BD0D7959FB0A6737F7F5E07C_RuntimeMethod_var);
|
|
bool L_9;
|
|
L_9 = StylePropertyAnimationSystem_StartTransition_TisTransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502_m6DA3A36592C69F444EC66E150A00D1E9D0D2E74F(__this, L_0, L_1, L_2, L_3, L_4, L_5, L_6, L_8, StylePropertyAnimationSystem_StartTransition_TisTransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502_m6DA3A36592C69F444EC66E150A00D1E9D0D2E74F_RuntimeMethod_var);
|
|
V_0 = L_9;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem::CancelAllAnimations()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem_CancelAllAnimations_m859A0B94E7BF4CE627385DBC3A13910EFCF05498 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* V_1 = NULL;
|
|
{
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* L_0 = __this->___m_AllValues_13;
|
|
NullCheck(L_0);
|
|
Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 L_1;
|
|
L_1 = List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF(L_0, List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002c:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1((&V_0), Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0021_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_2;
|
|
L_2 = Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_inline((&V_0), Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_3 = V_1;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker0::Invoke(4 /* System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values::CancelAllAnimations() */, L_3);
|
|
}
|
|
|
|
IL_0021_1:
|
|
{
|
|
bool L_4;
|
|
L_4 = Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603((&V_0), Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var);
|
|
if (L_4)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem::CancelAllAnimations(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem_CancelAllAnimations_mA2225E412AD654D4B6AF5A88EF23CA53F29078F4 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, 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*)&Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStylePropertyAnimations_tB90A36DDFC6923EE285E54A51D9B78316CE06764_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* V_1 = NULL;
|
|
{
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* L_0 = __this->___m_AllValues_13;
|
|
NullCheck(L_0);
|
|
Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 L_1;
|
|
L_1 = List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF(L_0, List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002d:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1((&V_0), Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0022_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_2;
|
|
L_2 = Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_inline((&V_0), Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_3 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = ___0_owner;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker1< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(5 /* System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values::CancelAllAnimations(UnityEngine.UIElements.VisualElement) */, L_3, L_4);
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
bool L_5;
|
|
L_5 = Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603((&V_0), Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var);
|
|
if (L_5)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = ___0_owner;
|
|
NullCheck(L_6);
|
|
RuntimeObject* L_7;
|
|
L_7 = VisualElement_get_styleAnimation_m34C349374229002AAF42A7DAD49AA9615EA154F1(L_6, NULL);
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = InterfaceFuncInvoker0< int32_t >::Invoke(17 /* System.Int32 UnityEngine.UIElements.IStylePropertyAnimations::get_runningAnimationCount() */, IStylePropertyAnimations_tB90A36DDFC6923EE285E54A51D9B78316CE06764_il2cpp_TypeInfo_var, L_7);
|
|
il2cpp_codegen_runtime_class_init_inline(Assert_tDC16963451AC4364803739B73A4477ADCB365863_il2cpp_TypeInfo_var);
|
|
Assert_AreEqual_m718BB4BD31FA3176A3A236F96BC5405EB750D6CF(0, L_8, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = ___0_owner;
|
|
NullCheck(L_9);
|
|
RuntimeObject* L_10;
|
|
L_10 = VisualElement_get_styleAnimation_m34C349374229002AAF42A7DAD49AA9615EA154F1(L_9, NULL);
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = InterfaceFuncInvoker0< int32_t >::Invoke(19 /* System.Int32 UnityEngine.UIElements.IStylePropertyAnimations::get_completedAnimationCount() */, IStylePropertyAnimations_tB90A36DDFC6923EE285E54A51D9B78316CE06764_il2cpp_TypeInfo_var, L_10);
|
|
Assert_AreEqual_m718BB4BD31FA3176A3A236F96BC5405EB750D6CF(0, L_11, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem::CancelAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem_CancelAnimation_m00A18E180517E9BB1E7A5962906178FBDE3E785F (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_id, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* L_0 = __this->___m_PropertyToValues_14;
|
|
int32_t L_1 = ___1_id;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_4 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = ___0_owner;
|
|
int32_t L_6 = ___1_id;
|
|
NullCheck(L_4);
|
|
VirtualActionInvoker2< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t >::Invoke(6 /* System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values::CancelAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId) */, L_4, L_5, L_6);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem::UpdateAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem_UpdateAnimation_mA581F5FE1142E26D02488359BA0D371DE28FC825 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_id, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* V_0 = NULL;
|
|
bool V_1 = false;
|
|
{
|
|
Dictionary_2_t8B8AC3704119A64857E8D359CB4782C5ECEA90E7* L_0 = __this->___m_PropertyToValues_14;
|
|
int32_t L_1 = ___1_id;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918(L_0, L_1, (&V_0), Dictionary_2_TryGetValue_m12CB93F7809C0D2F1BA4AEDBB5958C6364B98918_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_4 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = ___0_owner;
|
|
int32_t L_6 = ___1_id;
|
|
NullCheck(L_4);
|
|
VirtualActionInvoker2< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, int32_t >::Invoke(7 /* System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values::UpdateAnimation(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId) */, L_4, L_5, L_6);
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem::GetAllAnimations(UnityEngine.UIElements.VisualElement,System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyId>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem_GetAllAnimations_mC8971FB2A888EE78CFD823EEE20DFB19233339D6 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, List_1_t365205E6BE687FCF41975C16741DD9C303C1C269* ___1_propertyIds, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* V_1 = NULL;
|
|
{
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* L_0 = __this->___m_AllValues_13;
|
|
NullCheck(L_0);
|
|
Enumerator_tA8EB939748E08B4EE23DE9CAE7D395DD91C79041 L_1;
|
|
L_1 = List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF(L_0, List_1_GetEnumerator_mB38BE531CE4F1BE21B3380F725770C24294D10FF_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002c:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1((&V_0), Enumerator_Dispose_m1FD2D5F736499978C54D76DADDCF6445AF354CC1_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0021_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_2;
|
|
L_2 = Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_inline((&V_0), Enumerator_get_Current_m348933084823613D5B78E792ABB8DD25FACEEA89_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_3 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = ___0_owner;
|
|
List_1_t365205E6BE687FCF41975C16741DD9C303C1C269* L_5 = ___1_propertyIds;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker2< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*, List_1_t365205E6BE687FCF41975C16741DD9C303C1C269* >::Invoke(8 /* System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values::GetAllAnimations(UnityEngine.UIElements.VisualElement,System.Collections.Generic.List`1<UnityEngine.UIElements.StyleSheets.StylePropertyId>) */, L_3, L_4, L_5);
|
|
}
|
|
|
|
IL_0021_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603((&V_0), Enumerator_MoveNext_m12210516CE0B4854E52D92FF53B0D649C55AC603_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.StylePropertyAnimationSystem::CurrentTimeMs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t StylePropertyAnimationSystem_CurrentTimeMs_m3B079B6B759368132A67B8F2E6052A270A7A49B6 (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
int64_t L_0 = __this->___m_CurrentTimeMs_0;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
int64_t L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem::Update()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void StylePropertyAnimationSystem_Update_m0A975E5EA474AA0574076D5D0CBBC65A7088B01C (StylePropertyAnimationSystem_tB499821AFC54DE61DC54CFDCD392C337F5097718* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m455005DED01B6E5D536CA667069173BC5464E2F2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF5AD649DC34CEE11565F944D25226AA88D945D43_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
int64_t L_0;
|
|
L_0 = Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B(NULL);
|
|
__this->___m_CurrentTimeMs_0 = L_0;
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* L_1 = __this->___m_AllValues_13;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = List_1_get_Count_m455005DED01B6E5D536CA667069173BC5464E2F2_inline(L_1, List_1_get_Count_m455005DED01B6E5D536CA667069173BC5464E2F2_RuntimeMethod_var);
|
|
V_0 = L_2;
|
|
V_1 = 0;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
List_1_t491E344573B9D6F61E36AF56132B7412453928C9* L_3 = __this->___m_AllValues_13;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* L_5;
|
|
L_5 = List_1_get_Item_mF5AD649DC34CEE11565F944D25226AA88D945D43(L_3, L_4, List_1_get_Item_mF5AD649DC34CEE11565F944D25226AA88D945D43_RuntimeMethod_var);
|
|
int64_t L_6 = __this->___m_CurrentTimeMs_0;
|
|
NullCheck(L_5);
|
|
VirtualActionInvoker1< int64_t >::Invoke(9 /* System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/Values::Update(System.Int64) */, L_5, L_6);
|
|
int32_t L_7 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_7, 1));
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
int32_t L_8 = V_1;
|
|
int32_t L_9 = V_0;
|
|
V_2 = (bool)((((int32_t)L_8) < ((int32_t)L_9))? 1 : 0);
|
|
bool L_10 = V_2;
|
|
if (L_10)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
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.StylePropertyAnimationSystem/ElementPropertyPair
|
|
IL2CPP_EXTERN_C void ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshal_pinvoke(const ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814& unmarshaled, ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___element_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'element' of type 'ElementPropertyPair': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshal_pinvoke_back(const ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_pinvoke& marshaled, ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814& unmarshaled)
|
|
{
|
|
Exception_t* ___element_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'element' of type 'ElementPropertyPair': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
IL2CPP_EXTERN_C void ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshal_pinvoke_cleanup(ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
IL2CPP_EXTERN_C void ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshal_com(const ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814& unmarshaled, ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___element_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'element' of type 'ElementPropertyPair': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshal_com_back(const ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_com& marshaled, ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814& unmarshaled)
|
|
{
|
|
Exception_t* ___element_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'element' of type 'ElementPropertyPair': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___element_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair
|
|
IL2CPP_EXTERN_C void ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshal_com_cleanup(ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair::.ctor(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementPropertyPair__ctor_m9BD513920487E23168800342B43F48B61D0A46D9 (ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, int32_t ___1_property, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_element;
|
|
__this->___element_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___element_1), (void*)L_0);
|
|
int32_t L_1 = ___1_property;
|
|
__this->___property_2 = L_1;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void ElementPropertyPair__ctor_m9BD513920487E23168800342B43F48B61D0A46D9_AdjustorThunk (RuntimeObject* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_element, int32_t ___1_property, const RuntimeMethod* method)
|
|
{
|
|
ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814*>(__this + _offset);
|
|
ElementPropertyPair__ctor_m9BD513920487E23168800342B43F48B61D0A46D9(_thisAdjusted, ___0_element, ___1_property, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ElementPropertyPair__cctor_m1CBB367DE96DF19EF1F81AB06695FD0DE1FE62BC (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A* L_0 = (EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A*)il2cpp_codegen_object_new(EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
EqualityComparer__ctor_m505ABC5FDCC5622B7B67BEC6D6101E06D76E6202(L_0, NULL);
|
|
((ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_StaticFields*)il2cpp_codegen_static_fields_for(ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_il2cpp_TypeInfo_var))->___Comparer_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_StaticFields*)il2cpp_codegen_static_fields_for(ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814_il2cpp_TypeInfo_var))->___Comparer_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer::Equals(UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair,UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EqualityComparer_Equals_m9CD686B7AB7BDE623FF462E60519EBB60ACD4C9C (EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A* __this, ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 ___0_x, ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 ___1_y, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 L_0 = ___0_x;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = L_0.___element_1;
|
|
ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 L_2 = ___1_y;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = L_2.___element_1;
|
|
if ((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_1) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_3))))
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 L_4 = ___0_x;
|
|
int32_t L_5 = L_4.___property_2;
|
|
ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 L_6 = ___1_y;
|
|
int32_t L_7 = L_6.___property_2;
|
|
G_B3_0 = ((((int32_t)L_5) == ((int32_t)L_7))? 1 : 0);
|
|
goto IL_0020;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
bool L_8 = V_0;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer::GetHashCode(UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EqualityComparer_GetHashCode_mFEB21A387992DD0C4CC9E27F7A6BD050FAAD9C01 (EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A* __this, ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 L_0 = ___0_obj;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = L_0.___element_1;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
|
|
ElementPropertyPair_t4CBC92D2F951A9EB378EBFB6713B7566B0FA6814 L_3 = ___0_obj;
|
|
int32_t L_4 = L_3.___property_2;
|
|
V_0 = ((int32_t)(((int32_t)il2cpp_codegen_multiply(L_2, ((int32_t)397)))^(int32_t)L_4));
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ElementPropertyPair/EqualityComparer::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EqualityComparer__ctor_m505ABC5FDCC5622B7B67BEC6D6101E06D76E6202 (EqualityComparer_tAB3DE3EC03DA9EBCBCD97B14F40C00DE8294A30A* __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.StylePropertyAnimationSystem/Values::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Values__ctor_m154F5E2A0541CF4C0B1CD89FE135945542E64B72 (Values_t810A8E7A95A5716F91CE1BDC1EE3AD25FE329E24* __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.Func`3<System.Single,System.Single,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E* ValuesFloat_get_SameFunc_m4C2717B1590769874AB97DB53EE4DA942C731DDB (ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::IsSame(System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesFloat_IsSame_m13A1F5F28A1BC71D2BEA07DB4F1BC27F7BC24809 (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
bool L_2;
|
|
L_2 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::Lerp(System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float ValuesFloat_Lerp_m151CC279DAC96CA0F7229EA722B951B2E62B76E4 (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
float L_2 = ___2_t;
|
|
float L_3;
|
|
L_3 = Mathf_LerpUnclamped_mF35042F9D25A221BDD4B3FD6251224610AFC1F35_inline(L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFloat_UpdateValues_m2EEE7912DF1E274F1375D9D93C538C9F7EE70365 (ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A* V_2 = NULL;
|
|
StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_0 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_2 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
TimingDataU5BU5D_t370B0476A79A76456F04BA6664A963CC579E9CD0* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_5 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976* L_8 = V_3;
|
|
StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976* L_9 = V_3;
|
|
float L_10 = L_9->___startValue_0;
|
|
StyleData_t3B3F0F1CEB43B375FD26CB3095AAC800DC07A976* L_11 = V_3;
|
|
float L_12 = L_11->___endValue_1;
|
|
TimingData_t7E5D81E44DD38F0BFB0350F529E539BB94000C7A* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
float L_15;
|
|
L_15 = ValuesFloat_Lerp_m151CC279DAC96CA0F7229EA722B951B2E62B76E4(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFloat_UpdateComputedStyle_m13C74A4C85F2988C909861C9D3D8DA397123E527 (ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_0 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_2 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_8 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_13 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_18 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
float L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m3E3D317BB2FF1C9835557BB6599148AAEEE1C82C(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFloat_UpdateComputedStyle_m2DBF0172008938F99AEBCCAAFDD200F9EF7BA420 (ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_0 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_6 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_11 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32* L_16 = (AnimationDataSet_2_t6CCD1B60CF99FF9003A6D1D5C5902EC074711A32*)(&((Values_1_t0E31EAA5A590859BBD863FE74A3208C8F5722AA1*)__this)->___running_3);
|
|
StyleDataU5BU5D_t73D276E94B9F65AFF0A22B0D465D05D5E9438F5E* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
float L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m3E3D317BB2FF1C9835557BB6599148AAEEE1C82C(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFloat::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFloat__ctor_m3835813C57F92512C1B677C49C95F079005548AC (ValuesFloat_t79D7FFC3D96EA35AFBCE6E41A84C30186FFFF0C2* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesFloat_IsSame_m13A1F5F28A1BC71D2BEA07DB4F1BC27F7BC24809_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_m5CE5F1D9F61E3AF72965AA1A75B51EED016BD774_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E* L_0 = (Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E*)il2cpp_codegen_object_new(Func_3_tA9AA477D8A5A68C7DC26AE4792295B80F920E61E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_mCB560C5C97586855BDB873C1D0EA1B393BAA6F29(L_0, NULL, (intptr_t)((void*)ValuesFloat_IsSame_m13A1F5F28A1BC71D2BEA07DB4F1BC27F7BC24809_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_m5CE5F1D9F61E3AF72965AA1A75B51EED016BD774(__this, Values_1__ctor_m5CE5F1D9F61E3AF72965AA1A75B51EED016BD774_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.Func`3<System.Int32,System.Int32,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69* ValuesInt_get_SameFunc_m2FE61E4A4D67C503BB30B8E05A631C340F376705 (ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::IsSame(System.Int32,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesInt_IsSame_m0BA28D0C5011480BE691A04C6717979B59FD5778 (int32_t ___0_a, int32_t ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
return (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::Lerp(System.Int32,System.Int32,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t ValuesInt_Lerp_mF1026E60C032E0FF4AA8C610FCBB9E2863E53854 (int32_t ___0_a, int32_t ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_a;
|
|
int32_t L_1 = ___1_b;
|
|
float L_2 = ___2_t;
|
|
float L_3;
|
|
L_3 = Mathf_LerpUnclamped_mF35042F9D25A221BDD4B3FD6251224610AFC1F35_inline(((float)L_0), ((float)L_1), L_2, NULL);
|
|
int32_t L_4;
|
|
L_4 = Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline(L_3, NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesInt_UpdateValues_m1051A08981BF49CCF10FF2CEB20E59BBF32D68CA (ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263* V_2 = NULL;
|
|
StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_0 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_2 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
TimingDataU5BU5D_t9253C6811381B1932706D115D067841C7175C077* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_5 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595* L_8 = V_3;
|
|
StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595* L_9 = V_3;
|
|
int32_t L_10 = L_9->___startValue_0;
|
|
StyleData_t8D7506F1365A34AF8BCC7E63AABBB64F8330C595* L_11 = V_3;
|
|
int32_t L_12 = L_11->___endValue_1;
|
|
TimingData_tB9F07E55FE507E685F5E816A57949C38DCD6E263* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
int32_t L_15;
|
|
L_15 = ValuesInt_Lerp_mF1026E60C032E0FF4AA8C610FCBB9E2863E53854(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesInt_UpdateComputedStyle_m8ED6D5E9FD318D5C182450FAC23B9B1AE19137E6 (ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_0 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_2 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_8 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_13 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_18 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
int32_t L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m8BE2C9488B374D0DE6F613E0B9A5E4278C289956(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesInt_UpdateComputedStyle_m3D5FDBF8CC2187D1917FFA59438416AC22E67917 (ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_0 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_6 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_11 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF* L_16 = (AnimationDataSet_2_t85603CE9660948961D59A0333F6A6309C7BB17FF*)(&((Values_1_tF2422B8F8347145D2FE398C58F2EF1EAB96567A5*)__this)->___running_3);
|
|
StyleDataU5BU5D_tDA10AD1016A9574B39F73BE1DBE2E3A55720EAA9* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
int32_t L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m8BE2C9488B374D0DE6F613E0B9A5E4278C289956(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesInt::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesInt__ctor_m06892185B2103C4EA6DB53C5BED0BAB03F73CF5E (ValuesInt_t2D0093355274C731BB6DF9C8933EEEDA42276367* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesInt_IsSame_m0BA28D0C5011480BE691A04C6717979B59FD5778_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_m94B69C26ECEB0D2B15FE237DDF63030D0BC0B910_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69* L_0 = (Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69*)il2cpp_codegen_object_new(Func_3_tE8F85DA3CAC4998201E5C56356280AFAB7185B69_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_m5C0B07EE1619560A43C23CFB2723E33008414AC3(L_0, NULL, (intptr_t)((void*)ValuesInt_IsSame_m0BA28D0C5011480BE691A04C6717979B59FD5778_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_m94B69C26ECEB0D2B15FE237DDF63030D0BC0B910(__this, Values_1__ctor_m94B69C26ECEB0D2B15FE237DDF63030D0BC0B910_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.Func`3<UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10* ValuesLength_get_SameFunc_mF193CA317CDC44C2FAF9383C0C7C648864B3BADA (ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::IsSame(UnityEngine.UIElements.Length,UnityEngine.UIElements.Length)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesLength_IsSame_m1CE2286D0CFDD28167E40403F45C40958964EFF6 (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___0_a, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = Length_get_unit_m35495152DF180B333572A9BB8C24452530BB338E_inline((&___0_a), NULL);
|
|
int32_t L_1;
|
|
L_1 = Length_get_unit_m35495152DF180B333572A9BB8C24452530BB338E_inline((&___1_b), NULL);
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
float L_2;
|
|
L_2 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline((&___0_a), NULL);
|
|
float L_3;
|
|
L_3 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline((&___1_b), NULL);
|
|
bool L_4;
|
|
L_4 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_2, L_3, NULL);
|
|
G_B3_0 = ((int32_t)(L_4));
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return (bool)G_B3_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::ConvertUnits(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Length&,UnityEngine.UIElements.Length&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesLength_ConvertUnits_mDD8570928481EBCE138E7F9CBA41DF2B13F4F805 (ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* ___2_a, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* ___3_b, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
int32_t L_1 = ___1_prop;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_2 = ___2_a;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* L_3 = ___3_b;
|
|
NullCheck(L_0);
|
|
bool L_4;
|
|
L_4 = VisualElement_TryConvertLengthUnits_mD88D65906149EBAD8B51D465F241C52D1CD88C2B(L_0, L_1, L_2, L_3, 0, NULL);
|
|
V_0 = L_4;
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Length UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::Lerp(UnityEngine.UIElements.Length,UnityEngine.UIElements.Length,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ValuesLength_Lerp_mED26D7333C799606336B51C2EFD8B0CC2D32F581 (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___0_a, Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0;
|
|
L_0 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline((&___0_a), NULL);
|
|
float L_1;
|
|
L_1 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline((&___1_b), NULL);
|
|
float L_2 = ___2_t;
|
|
float L_3;
|
|
L_3 = Mathf_LerpUnclamped_mF35042F9D25A221BDD4B3FD6251224610AFC1F35_inline(L_0, L_1, L_2, NULL);
|
|
int32_t L_4;
|
|
L_4 = Length_get_unit_m35495152DF180B333572A9BB8C24452530BB338E_inline((&___1_b), NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_5;
|
|
memset((&L_5), 0, sizeof(L_5));
|
|
Length__ctor_mFF11DAE709F70F30061EF7BDB3E7B4E18BB827CF((&L_5), L_3, L_4, /*hidden argument*/NULL);
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesLength_UpdateValues_mFC885CF7B028D2349CCF4CDC5F09117E450A4062 (ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288* V_2 = NULL;
|
|
StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_0 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_2 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
TimingDataU5BU5D_tA5BE0E019AB587A0072682D5535D2295EC6F04B9* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_5 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628* L_8 = V_3;
|
|
StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628* L_9 = V_3;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_10 = L_9->___startValue_0;
|
|
StyleData_tD9916786C46848BD8A33B29D97785D1FB3886628* L_11 = V_3;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_12 = L_11->___endValue_1;
|
|
TimingData_t9FA7CAC423BACD236FBF49326BDD83D06DF44288* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_15;
|
|
L_15 = ValuesLength_Lerp_mED26D7333C799606336B51C2EFD8B0CC2D32F581(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesLength_UpdateComputedStyle_m023952690F91FF0BFB4FF439CCD8044B0BA70281 (ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_0 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_2 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_8 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_13 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_18 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m61F54501D94D5F64A56D47485B820209AA1B656C(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesLength_UpdateComputedStyle_m2DD507025C6EF5E365CE93107099E838DB3C88C7 (ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_0 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_6 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_11 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0* L_16 = (AnimationDataSet_2_t45555A77E9CCB1712AFAC90FC398811D0DFC89D0*)(&((Values_1_t988DC70C892CC8E803830C5C3A4370F5177CD9A6*)__this)->___running_3);
|
|
StyleDataU5BU5D_t8ACFC9D6C572747CB5326B98E34DEE3AC989D876* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m61F54501D94D5F64A56D47485B820209AA1B656C(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesLength::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesLength__ctor_mE5708A3899603AB90DF4C07CDFCEF203BC8DFDA2 (ValuesLength_tCE4AE0723109EE10076DBD46F7A853F202AF5915* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesLength_IsSame_m1CE2286D0CFDD28167E40403F45C40958964EFF6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_mF2E3EEC44174E391276F9E3F4906DF800C856EA9_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10* L_0 = (Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10*)il2cpp_codegen_object_new(Func_3_tE7691622B78513E3899362D85121DB6D27F6DB10_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_mA1BB586CA38162C3C120F9F49A2C9907C19B854C(L_0, NULL, (intptr_t)((void*)ValuesLength_IsSame_m1CE2286D0CFDD28167E40403F45C40958964EFF6_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_mF2E3EEC44174E391276F9E3F4906DF800C856EA9(__this, Values_1__ctor_mF2E3EEC44174E391276F9E3F4906DF800C856EA9_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.Func`3<UnityEngine.Color,UnityEngine.Color,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E* ValuesColor_get_SameFunc_m29A68D80AF2B37D92509BCCAE6BEAB18856505E0 (ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::IsSame(UnityEngine.Color,UnityEngine.Color)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesColor_IsSame_m0F902ACD681D6809CEAD28F560A481689CC82E9E (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_c, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_d, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_c;
|
|
float L_1 = L_0.___r_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___1_d;
|
|
float L_3 = L_2.___r_0;
|
|
bool L_4;
|
|
L_4 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_1, L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5 = ___0_c;
|
|
float L_6 = L_5.___g_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = ___1_d;
|
|
float L_8 = L_7.___g_1;
|
|
bool L_9;
|
|
L_9 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_6, L_8, NULL);
|
|
if (!L_9)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_10 = ___0_c;
|
|
float L_11 = L_10.___b_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_12 = ___1_d;
|
|
float L_13 = L_12.___b_2;
|
|
bool L_14;
|
|
L_14 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_11, L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_15 = ___0_c;
|
|
float L_16 = L_15.___a_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_17 = ___1_d;
|
|
float L_18 = L_17.___a_3;
|
|
bool L_19;
|
|
L_19 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_16, L_18, NULL);
|
|
G_B5_0 = ((int32_t)(L_19));
|
|
goto IL_004d;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
return (bool)G_B5_0;
|
|
}
|
|
}
|
|
// UnityEngine.Color UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::Lerp(UnityEngine.Color,UnityEngine.Color,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ValuesColor_Lerp_mDED0CAB39FD7194116DE1749F84C83ECF0E847C3 (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_a, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_a;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = ___1_b;
|
|
float L_2 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3;
|
|
L_3 = Color_LerpUnclamped_m91027D026E64424B71959149B942F706FC16B1A2_inline(L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesColor_UpdateValues_mE74AE73D811644F7BD204833EC9405385FF8AA18 (ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE* V_2 = NULL;
|
|
StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_0 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_2 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
TimingDataU5BU5D_t03C8C38B8DBF52B9A23FB2B77BEC41E63D4A3994* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_5 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D* L_8 = V_3;
|
|
StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D* L_9 = V_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_10 = L_9->___startValue_0;
|
|
StyleData_t8548533307092B4D7E241CBD2A66549683A33C1D* L_11 = V_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_12 = L_11->___endValue_1;
|
|
TimingData_t34C4E95C26A0148A8A1940FA3BE460BD371FE5FE* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_15;
|
|
L_15 = ValuesColor_Lerp_mDED0CAB39FD7194116DE1749F84C83ECF0E847C3(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesColor_UpdateComputedStyle_mF99A35D97ACC952E8FBE3BDC094FBAC01D6A3F51 (ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_0 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_2 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_8 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_13 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_18 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mFC305F6A073F93A9E9AD2E961464A6234D997B7D(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesColor_UpdateComputedStyle_mF5B610264955B0A1BF4B3A1F6DB0391553EB1F6E (ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_0 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_6 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_11 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D* L_16 = (AnimationDataSet_2_t05E5B46314C503F32CE3258CA1AF9DF73160F79D*)(&((Values_1_t49C0EEE75C4A46F518DA157D93141A5AA673B5E0*)__this)->___running_3);
|
|
StyleDataU5BU5D_t73BFD33363F897414B879236BE0A0DCA6962B9AB* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mFC305F6A073F93A9E9AD2E961464A6234D997B7D(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesColor::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesColor__ctor_m011DF831B3C186C9BD408869D5387076FFD5A313 (ValuesColor_tDE4E373E9165A21D96B77B831D7663BE93073904* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesColor_IsSame_m0F902ACD681D6809CEAD28F560A481689CC82E9E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_m14E59C062E826E30FCDC4DEF3E693F23E4929089_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E* L_0 = (Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E*)il2cpp_codegen_object_new(Func_3_t694ADFBBF2CEA4DEF1F1F1F9B00D5DCAE200F97E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_mBECF17AD38818C4339F30DB97A29EFAAFC28010A(L_0, NULL, (intptr_t)((void*)ValuesColor_IsSame_m0F902ACD681D6809CEAD28F560A481689CC82E9E_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_m14E59C062E826E30FCDC4DEF3E693F23E4929089(__this, Values_1__ctor_m14E59C062E826E30FCDC4DEF3E693F23E4929089_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.StylePropertyAnimationSystem/ValuesBackground::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesBackground_UpdateComputedStyle_mC8AB9F32F94FB8B49E22D74A72333596C640398C (ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_0 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_2 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_8 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_13 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_18 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mBE4DCABBA186FFCC598D3B284C7D9AD2697D4464(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesBackground_UpdateComputedStyle_mAED92E4FF6E80DA369C886D3BC2607251489D9DC (ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_0 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_6 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_11 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50* L_16 = (AnimationDataSet_2_tA243970D144368E3CCB216CDCA976F7B00517D50*)(&((Values_1_t19A1E2B4752BCDF06B5D68597FF7E74704C6F99F*)__this)->___running_3);
|
|
StyleDataU5BU5D_tF87CDE51588E78D4C87C144731581FB5284776E0* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
Background_t3C720DED4FAF016332D29FB86C9BE8D5D0D8F0C8 L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mBE4DCABBA186FFCC598D3B284C7D9AD2697D4464(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesBackground::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesBackground__ctor_m1912AB7CBE6B8935966A5E30B08D5B3ED4295BD2 (ValuesBackground_tFF4533C18E78BDA24210ECA0967C209A2FD2FB34* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesDiscrete_1__ctor_mFDAFF02FCBE6E8293FD5C7BE340D296D32DF674F_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ValuesDiscrete_1__ctor_mFDAFF02FCBE6E8293FD5C7BE340D296D32DF674F(__this, ValuesDiscrete_1__ctor_mFDAFF02FCBE6E8293FD5C7BE340D296D32DF674F_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.StylePropertyAnimationSystem/ValuesFontDefinition::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFontDefinition_UpdateComputedStyle_m856BB197817C3672D57C5B50DDB08498D4017A21 (ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_0 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_2 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_8 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_13 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_18 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mF271FB5F0A6117CB99634A77BE99618CB7E58039(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFontDefinition_UpdateComputedStyle_m4D6BC3CE01DCD42EA2A1A8FE1E069234198700CC (ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_0 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_6 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_11 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC* L_16 = (AnimationDataSet_2_tEF417861004C34C4652386FBC8E77254726BA9AC*)(&((Values_1_t45BEBFF589B2E0FB589C839603CF54DAFA8EE2B7*)__this)->___running_3);
|
|
StyleDataU5BU5D_tD406BDE6B313334D7A7241DDEA636226CC9C0043* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
FontDefinition_t65281B0E106365C28AD3F2525DE148719AEEA30C L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mF271FB5F0A6117CB99634A77BE99618CB7E58039(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFontDefinition::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFontDefinition__ctor_mCC2351AEAA0ED242012028DF23C40214D260C7B8 (ValuesFontDefinition_t4D0C2DECA9435D3EB901FE70837AD878111678F7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesDiscrete_1__ctor_m0E4BD2599AB0377656A8065339C19DB6E099FC27_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ValuesDiscrete_1__ctor_m0E4BD2599AB0377656A8065339C19DB6E099FC27(__this, ValuesDiscrete_1__ctor_m0E4BD2599AB0377656A8065339C19DB6E099FC27_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.StylePropertyAnimationSystem/ValuesFont::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFont_UpdateComputedStyle_m955E4E611FF9E9269373A1BD37361D9DDF5E2D76 (ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_0 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_2 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_8 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_13 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_18 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m6BE29F60D9A8B3B11EBCB16C83CD043E0BCE5434(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFont_UpdateComputedStyle_m1CA1E447078098A55BA33883C0294F4764424CB5 (ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_0 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_6 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_11 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF* L_16 = (AnimationDataSet_2_t8E5EB9E2247E8F068107485D54A764AE142E23BF*)(&((Values_1_t847FBD1B084B655B0ADE6AE351351F4425943D8E*)__this)->___running_3);
|
|
StyleDataU5BU5D_t2EA8BFBB228BC22ECF5964A1BCC0289725FB4389* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m6BE29F60D9A8B3B11EBCB16C83CD043E0BCE5434(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesFont::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesFont__ctor_m9C9E427A90701EA5969132C5E0B4F9A98CE638B0 (ValuesFont_tD9B58EA95F0D99292A54C9C6C879318BBE3B02A4* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesDiscrete_1__ctor_mA5E3A335CD04AB1496F9C42E7BDA9D6E1551BB66_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ValuesDiscrete_1__ctor_mA5E3A335CD04AB1496F9C42E7BDA9D6E1551BB66(__this, ValuesDiscrete_1__ctor_mA5E3A335CD04AB1496F9C42E7BDA9D6E1551BB66_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.Func`3<UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502* ValuesTextShadow_get_SameFunc_mD61C1134956C947F9ECD334B9F73382CEC8495EB (ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::IsSame(UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesTextShadow_IsSame_m12A6EF005AB770EFA394D733C10782D0CD147CB8 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_a, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_0 = ___0_a;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_1 = ___1_b;
|
|
bool L_2;
|
|
L_2 = TextShadow_op_Equality_m7B840C994A00FDC98F55FAD2BBB395447A29792A(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.TextShadow UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::Lerp(UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ValuesTextShadow_Lerp_mD2F4CC9ECE3B01D2089910A6CDE5C128D32620A4 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_a, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_0 = ___0_a;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_1 = ___1_b;
|
|
float L_2 = ___2_t;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_3;
|
|
L_3 = TextShadow_LerpUnclamped_m829CC5260DC0A0CA1DFF6E8EF93B188F2C013D8F(L_0, L_1, L_2, NULL);
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTextShadow_UpdateValues_m877A4F8F3A80AD62107147D75C0117EB406A7DE9 (ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE* V_2 = NULL;
|
|
StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_0 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_2 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
TimingDataU5BU5D_tE92E1403336542C4CF4B76824A22545D0EB14E14* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_5 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8* L_8 = V_3;
|
|
StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8* L_9 = V_3;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_10 = L_9->___startValue_0;
|
|
StyleData_t8550AC117CD613FE87B52CC3540296500B7F3DF8* L_11 = V_3;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_12 = L_11->___endValue_1;
|
|
TimingData_t70F8D4FF0A51972717A1ED53525241240EF457FE* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_15;
|
|
L_15 = ValuesTextShadow_Lerp_mD2F4CC9ECE3B01D2089910A6CDE5C128D32620A4(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTextShadow_UpdateComputedStyle_mC4AC24492A9184D27522E6F22CB396710F1C5437 (ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_0 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_2 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_8 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_13 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_18 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mF351823AE017CED5C2CB01A99AAD4B5A05251DA3(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTextShadow_UpdateComputedStyle_m77D7B958FAD6C4FB3E0715E5481C4DE41E468539 (ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_0 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_6 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_11 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437* L_16 = (AnimationDataSet_2_t9B3435A0C6251F2602B478702F4F7EC8CEDBC437*)(&((Values_1_tFB112CD52331C038F6B928FEAFAB19A06FD2F62C*)__this)->___running_3);
|
|
StyleDataU5BU5D_t597C3C3BF0BFFC87AB6037E85E0829D999602263* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mF351823AE017CED5C2CB01A99AAD4B5A05251DA3(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTextShadow::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTextShadow__ctor_m32E38ECF9D70CA0E2DF1F9AFD9C2A3740C4D0A82 (ValuesTextShadow_t50CB05DF0E7770164252616605C61B37DB4A966C* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesTextShadow_IsSame_m12A6EF005AB770EFA394D733C10782D0CD147CB8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_mDBBD3320F73277C566561C33397418535A8371EE_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502* L_0 = (Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502*)il2cpp_codegen_object_new(Func_3_t6745994E8BE66E70CABFC83E108BB6BB52414502_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_m1E4B2F1F5895BCD897ED20F06995E856566152FD(L_0, NULL, (intptr_t)((void*)ValuesTextShadow_IsSame_m12A6EF005AB770EFA394D733C10782D0CD147CB8_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_mDBBD3320F73277C566561C33397418535A8371EE(__this, Values_1__ctor_mDBBD3320F73277C566561C33397418535A8371EE_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.Func`3<UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC* ValuesScale_get_SameFunc_m6CA5D7BA45F32B272AD5A0929F9B0959DECEEFC4 (ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::IsSame(UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesScale_IsSame_m2ABB12E9EB1701498D672B9DC5D2E24375818242 (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___0_a, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_0 = ___0_a;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_1 = ___1_b;
|
|
bool L_2;
|
|
L_2 = Scale_op_Equality_mCF310871A942D356F82D2A2F4E23B5BC3C248F65(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesScale_UpdateComputedStyle_mD4A038D6E4595B6A6D4C0B498B7C7BEC26BB5E94 (ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_0 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_2 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_8 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_13 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_18 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mAB80BA3A40F4C5A5F9C9EFA5CEAECE4BD050F21F(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesScale_UpdateComputedStyle_m5FC048569365EEFDE89720FA472D59584424D555 (ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_0 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_6 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_11 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_16 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mAB80BA3A40F4C5A5F9C9EFA5CEAECE4BD050F21F(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Scale UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::Lerp(UnityEngine.UIElements.Scale,UnityEngine.UIElements.Scale,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ValuesScale_Lerp_mE08D434C6E9329653F7DB559E882815DD4729A4A (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___0_a, Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0;
|
|
L_0 = Scale_get_value_m27CE2F2A3DD1A14DE72EE744A3817BFE3D3DDD96_inline((&___0_a), NULL);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_1;
|
|
L_1 = Scale_get_value_m27CE2F2A3DD1A14DE72EE744A3817BFE3D3DDD96_inline((&___1_b), NULL);
|
|
float L_2 = ___2_t;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_3;
|
|
L_3 = Vector3_LerpUnclamped_m4109A459C1DB823310A10B8B1E80CB6877418347_inline(L_0, L_1, L_2, NULL);
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
Scale__ctor_m39E255041BE0B30F8B48F55FED46CF90855D8DC0((&L_4), L_3, /*hidden argument*/NULL);
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesScale_UpdateValues_m3536CF08A11978DC1E22048A511C13918567A5C2 (ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49* V_2 = NULL;
|
|
StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_0 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_2 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
TimingDataU5BU5D_t0BCD78985159E6EF1D974E34B209EDE880E06269* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE* L_5 = (AnimationDataSet_2_t295398C1274FE0EB846F0554EBF4EF36A80BCDBE*)(&((Values_1_tD710D214E4D407A033AE57CE091D4C4FBB293714*)__this)->___running_3);
|
|
StyleDataU5BU5D_t988DBB7FAB3D7D4E114C94A5CF2E305E3FFB2A7F* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1* L_8 = V_3;
|
|
StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1* L_9 = V_3;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_10 = L_9->___startValue_0;
|
|
StyleData_t81910989C0A6416625FEA66A143ED9AA9CE6EAD1* L_11 = V_3;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_12 = L_11->___endValue_1;
|
|
TimingData_t098AB9F533C2FCADF814F88C5A5C79F7AF2FCF49* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7 L_15;
|
|
L_15 = ValuesScale_Lerp_mE08D434C6E9329653F7DB559E882815DD4729A4A(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesScale::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesScale__ctor_m4B47E844E75357C7008B73DA62C9FEF994B5C3A2 (ValuesScale_t21E6FC5B09789CB4974FC2ED15C3F83B863FCF8A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesScale_IsSame_m2ABB12E9EB1701498D672B9DC5D2E24375818242_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_m516D4E8920F3D100B223855A347BD87B06985666_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC* L_0 = (Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC*)il2cpp_codegen_object_new(Func_3_t21FE404F1FF5BB9658AD8FC7A60BC71347B096BC_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_m6AF5E013428BF0FCF444506AA0ABFC642FEBF399(L_0, NULL, (intptr_t)((void*)ValuesScale_IsSame_m2ABB12E9EB1701498D672B9DC5D2E24375818242_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_m516D4E8920F3D100B223855A347BD87B06985666(__this, Values_1__ctor_m516D4E8920F3D100B223855A347BD87B06985666_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.Func`3<UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D* ValuesRotate_get_SameFunc_mE23505E99C18D9959C05BC21AD0A50D591DE7ED6 (ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::IsSame(UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesRotate_IsSame_m68450D57ACE7A544B50126120BABB410658B8887 (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___0_a, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_0 = ___0_a;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_1 = ___1_b;
|
|
bool L_2;
|
|
L_2 = Rotate_op_Equality_m17193DD52205405DE23ADA71B1E19AFF8A4364AD(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesRotate_UpdateComputedStyle_mAC170ADADA12DEE7A0041E067D2B8A0DF09A7C15 (ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_0 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_2 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_8 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_13 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_18 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m170AFD22B09900C90A263FAA3DC59CBA524A5312(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesRotate_UpdateComputedStyle_m7E32BF77ECC2976A833336A30310CBC718CA404E (ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_0 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_6 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_11 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_16 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m170AFD22B09900C90A263FAA3DC59CBA524A5312(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Rotate UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::Lerp(UnityEngine.UIElements.Rotate,UnityEngine.UIElements.Rotate,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ValuesRotate_Lerp_m3289325A54C19AC54DBEBAED8C3B163B534B9D86 (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___0_a, Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC L_0;
|
|
L_0 = Rotate_get_angle_mF31EBAC339112FEEB451FC221CD60909745E7324_inline((&___0_a), NULL);
|
|
V_0 = L_0;
|
|
float L_1;
|
|
L_1 = Angle_ToDegrees_m287B1A6F3D500CD2E9A4583D1E31B4179EF5E434((&V_0), NULL);
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC L_2;
|
|
L_2 = Rotate_get_angle_mF31EBAC339112FEEB451FC221CD60909745E7324_inline((&___1_b), NULL);
|
|
V_0 = L_2;
|
|
float L_3;
|
|
L_3 = Angle_ToDegrees_m287B1A6F3D500CD2E9A4583D1E31B4179EF5E434((&V_0), NULL);
|
|
float L_4 = ___2_t;
|
|
float L_5;
|
|
L_5 = Mathf_LerpUnclamped_mF35042F9D25A221BDD4B3FD6251224610AFC1F35_inline(L_1, L_3, L_4, NULL);
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC L_6;
|
|
L_6 = Angle_op_Implicit_m99D983290F15EACAFD646580FBA3093AC1333173(L_5, NULL);
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_7;
|
|
memset((&L_7), 0, sizeof(L_7));
|
|
Rotate__ctor_mC2FF8DC5F131DDA8027CE5CD2EA36B7B0D8F01B4((&L_7), L_6, /*hidden argument*/NULL);
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesRotate_UpdateValues_mCAE54E123F5E4916887D64A995A84A5D23DE522C (ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11* V_2 = NULL;
|
|
StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_0 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_2 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
TimingDataU5BU5D_tE963FB40D15F6761CC687300F7A3EFCD58A8505A* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA* L_5 = (AnimationDataSet_2_t0C85CDF29C591FFB68A31A73E030182698C727FA*)(&((Values_1_t1B84258FDB622ABECA26BA9E2E8F638E1B6B213F*)__this)->___running_3);
|
|
StyleDataU5BU5D_tBB18CE54D6B9B54229E01AFF7CCB44B8305F2386* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C* L_8 = V_3;
|
|
StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C* L_9 = V_3;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_10 = L_9->___startValue_0;
|
|
StyleData_tF4F082E86CEF208DCF726577323A81818B156F1C* L_11 = V_3;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_12 = L_11->___endValue_1;
|
|
TimingData_t9F5BE2ECB5F5FDBD04072B4459F64CB033858F11* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7 L_15;
|
|
L_15 = ValuesRotate_Lerp_m3289325A54C19AC54DBEBAED8C3B163B534B9D86(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesRotate::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesRotate__ctor_m063A28C27171CD49322F02CE86D6F5E1FE0A5DD2 (ValuesRotate_t90582D6825FCBEF3C2A68160CCEC275C51217C63* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesRotate_IsSame_m68450D57ACE7A544B50126120BABB410658B8887_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_m93E0C4785A19CAE7F9E6AF562B3AC151F93C467E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D* L_0 = (Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D*)il2cpp_codegen_object_new(Func_3_t91DB6FD7FB36205E9CF7A442EB7A337299776A3D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_mAD7AD1AC8461C375DEEB8E29A6AF11A1205F3718(L_0, NULL, (intptr_t)((void*)ValuesRotate_IsSame_m68450D57ACE7A544B50126120BABB410658B8887_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_m93E0C4785A19CAE7F9E6AF562B3AC151F93C467E(__this, Values_1__ctor_m93E0C4785A19CAE7F9E6AF562B3AC151F93C467E_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.Func`3<UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6* ValuesTranslate_get_SameFunc_m9DE5B88AE545D554B155CD7AC0C00546B0233ABC (ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::IsSame(UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesTranslate_IsSame_m2B3B9BE0D5E39F9BD9AB5EC22DAE697A71F30C3B (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___0_a, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_0 = ___0_a;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_1 = ___1_b;
|
|
bool L_2;
|
|
L_2 = Translate_op_Equality_m320CFAF67C0BEF258338E5529C9E5921A3C822F1(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::ConvertUnits(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.Translate&,UnityEngine.UIElements.Translate&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesTranslate_ConvertUnits_m4BEEA239FDD62FF9EA9E6AF66F976E8E263B30BF (ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* ___2_a, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* ___3_b, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* L_1 = ___2_a;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* L_2 = ___3_b;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = VisualElement_TryConvertTranslateUnits_mC5A191DF5E7F93ACBC948ACAE3D32FCD61526962(L_0, L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTranslate_UpdateComputedStyle_mCD603AA023C12E26387905497FC5D7DF9438E358 (ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_0 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_2 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_8 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_13 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_18 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m9C08F6D4F2A01E64132952B3597DA23175F640F8(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTranslate_UpdateComputedStyle_m093660691F2C41140D25A023AF87EF09983DEF02 (ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_0 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_6 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_11 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_16 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_m9C08F6D4F2A01E64132952B3597DA23175F640F8(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Translate UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::Lerp(UnityEngine.UIElements.Translate,UnityEngine.UIElements.Translate,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ValuesTranslate_Lerp_mE20FB2B219398D83C286BD2C4B4C89072A26D21E (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___0_a, Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_0;
|
|
L_0 = Translate_get_x_m20B598ADBC230B32AA055FF13B07038E629AA599_inline((&___0_a), NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_1;
|
|
L_1 = Translate_get_x_m20B598ADBC230B32AA055FF13B07038E629AA599_inline((&___1_b), NULL);
|
|
float L_2 = ___2_t;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_3;
|
|
L_3 = ValuesLength_Lerp_mED26D7333C799606336B51C2EFD8B0CC2D32F581(L_0, L_1, L_2, NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_4;
|
|
L_4 = Translate_get_y_m587EA6A26C8B48C4B7D44B9B914A8DE3FAB42D80_inline((&___0_a), NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_5;
|
|
L_5 = Translate_get_y_m587EA6A26C8B48C4B7D44B9B914A8DE3FAB42D80_inline((&___1_b), NULL);
|
|
float L_6 = ___2_t;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_7;
|
|
L_7 = ValuesLength_Lerp_mED26D7333C799606336B51C2EFD8B0CC2D32F581(L_4, L_5, L_6, NULL);
|
|
float L_8;
|
|
L_8 = Translate_get_z_mB2327E142162E26835FB78D9E48E0CAA1C387854_inline((&___0_a), NULL);
|
|
float L_9;
|
|
L_9 = Translate_get_z_mB2327E142162E26835FB78D9E48E0CAA1C387854_inline((&___1_b), NULL);
|
|
float L_10 = ___2_t;
|
|
float L_11;
|
|
L_11 = Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline(L_8, L_9, L_10, NULL);
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
Translate__ctor_mA8F128A2982F876C29861342C68C70C2D16B5094((&L_12), L_3, L_7, L_11, /*hidden argument*/NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTranslate_UpdateValues_m4F64434C6A9B5085DE2CC1A1A27DCF766D9375CF (ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3* V_2 = NULL;
|
|
StyleData_t516B303180A937637806C9C217FE06E3AACDEE23* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_0 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_2 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
TimingDataU5BU5D_t634CA6261A1EDA23867D38722881D8D9610065E3* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880* L_5 = (AnimationDataSet_2_t22FC41AC7166F393727321C212FD541AA7DC4880*)(&((Values_1_tF515CA326AF84CBBA1A40F1C76BC6D39AA409215*)__this)->___running_3);
|
|
StyleDataU5BU5D_tAD21796096D8CBCE199118430F1C659AA1DFB822* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_t516B303180A937637806C9C217FE06E3AACDEE23* L_8 = V_3;
|
|
StyleData_t516B303180A937637806C9C217FE06E3AACDEE23* L_9 = V_3;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_10 = L_9->___startValue_0;
|
|
StyleData_t516B303180A937637806C9C217FE06E3AACDEE23* L_11 = V_3;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_12 = L_11->___endValue_1;
|
|
TimingData_tD402D38A47B4E24DECDDD6B9725E579AD10131F3* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E L_15;
|
|
L_15 = ValuesTranslate_Lerp_mE20FB2B219398D83C286BD2C4B4C89072A26D21E(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTranslate::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTranslate__ctor_m253E0631125BF50ED7969D9A349B7C8BF1545690 (ValuesTranslate_tFB5B432755E0DAA7DD8C95E78FDCC78C4885940B* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesTranslate_IsSame_m2B3B9BE0D5E39F9BD9AB5EC22DAE697A71F30C3B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_m6C0823FA2DEF3358FC7605F415298C25AB5A0792_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6* L_0 = (Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6*)il2cpp_codegen_object_new(Func_3_t5853662BEAC371606CF3B0A970C0C364071786A6_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_m6F7F6F1DD17AA5951817C143CD9CC73B3813398D(L_0, NULL, (intptr_t)((void*)ValuesTranslate_IsSame_m2B3B9BE0D5E39F9BD9AB5EC22DAE697A71F30C3B_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_m6C0823FA2DEF3358FC7605F415298C25AB5A0792(__this, Values_1__ctor_m6C0823FA2DEF3358FC7605F415298C25AB5A0792_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.Func`3<UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Boolean> UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::get_SameFunc()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F* ValuesTransformOrigin_get_SameFunc_m061C0964F20685F9D1D8A7A3E64E68EE0CD61549 (ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F* L_0 = __this->___U3CSameFuncU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::IsSame(UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesTransformOrigin_IsSame_m09C19414464EE548C1E6A6EC5562670AAFE4AAA0 (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___0_a, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___1_b, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_0 = ___0_a;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_1 = ___1_b;
|
|
bool L_2;
|
|
L_2 = TransformOrigin_op_Equality_mD0114AF86353C451148D3E0EB2287FE3BCD87B1D(L_0, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::ConvertUnits(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.StyleSheets.StylePropertyId,UnityEngine.UIElements.TransformOrigin&,UnityEngine.UIElements.TransformOrigin&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ValuesTransformOrigin_ConvertUnits_mC4254636D8892B9F637E4CD5C7E2C9C23F2E28E8 (ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_owner, int32_t ___1_prop, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* ___2_a, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* ___3_b, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_owner;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* L_1 = ___2_a;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* L_2 = ___3_b;
|
|
NullCheck(L_0);
|
|
bool L_3;
|
|
L_3 = VisualElement_TryConvertTransformOriginUnits_m5B6E5BD6EB79DC275F2DC4EB5D8BE312106FEFC9(L_0, L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::UpdateComputedStyle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTransformOrigin_UpdateComputedStyle_m65C5714529ADC0FD2AA8AA73149965F41A60B05E (ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
{
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_0 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_2 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_3 = L_2->___elements_0;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
int32_t L_5 = L_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = (L_3)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
NullCheck(L_6);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_7;
|
|
L_7 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_6, NULL);
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_8 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_9 = L_8->___elements_0;
|
|
int32_t L_10 = V_1;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_13 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_14 = L_13->___properties_1;
|
|
int32_t L_15 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
int32_t L_17 = (int32_t)(L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_18 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC* L_19 = L_18->___style_3;
|
|
int32_t L_20 = V_1;
|
|
NullCheck(L_19);
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_21 = ((L_19)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_20)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mBA513685BCD35183C77A000841D86FD36A4FFFD3(L_7, L_12, L_17, L_21, NULL);
|
|
int32_t L_22 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
int32_t L_23 = V_1;
|
|
int32_t L_24 = V_0;
|
|
V_2 = (bool)((((int32_t)L_23) < ((int32_t)L_24))? 1 : 0);
|
|
bool L_25 = V_2;
|
|
if (L_25)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::UpdateComputedStyle(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTransformOrigin_UpdateComputedStyle_m486088496608E42015E68B446B05C209E7D99A20 (ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* __this, int32_t ___0_i, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_0 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_1 = L_0->___elements_0;
|
|
int32_t L_2 = ___0_i;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
NullCheck(L_4);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_5;
|
|
L_5 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_4, NULL);
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_6 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
VisualElementU5BU5D_tCAE8038767BF0FBEE26B3470C0FC4AE60E5229DF* L_7 = L_6->___elements_0;
|
|
int32_t L_8 = ___0_i;
|
|
NullCheck(L_7);
|
|
int32_t L_9 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = (L_7)->GetAt(static_cast<il2cpp_array_size_t>(L_9));
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_11 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
StylePropertyIdU5BU5D_t6A118EB2D7976A5AE0C4E89D3F53D4454EC7E359* L_12 = L_11->___properties_1;
|
|
int32_t L_13 = ___0_i;
|
|
NullCheck(L_12);
|
|
int32_t L_14 = L_13;
|
|
int32_t L_15 = (int32_t)(L_12)->GetAt(static_cast<il2cpp_array_size_t>(L_14));
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_16 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC* L_17 = L_16->___style_3;
|
|
int32_t L_18 = ___0_i;
|
|
NullCheck(L_17);
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_19 = ((L_17)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_18)))->___currentValue_3;
|
|
ComputedStyle_ApplyPropertyAnimation_mBA513685BCD35183C77A000841D86FD36A4FFFD3(L_5, L_10, L_15, L_19, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.TransformOrigin UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::Lerp(UnityEngine.UIElements.TransformOrigin,UnityEngine.UIElements.TransformOrigin,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ValuesTransformOrigin_Lerp_mBFDA5F5AFE153322997485F08BB15CDD223447D4 (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___0_a, TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_0;
|
|
L_0 = TransformOrigin_get_x_m45B713C35F41919099DFE89257682A47EA02EB1C_inline((&___0_a), NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_1;
|
|
L_1 = TransformOrigin_get_x_m45B713C35F41919099DFE89257682A47EA02EB1C_inline((&___1_b), NULL);
|
|
float L_2 = ___2_t;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_3;
|
|
L_3 = ValuesLength_Lerp_mED26D7333C799606336B51C2EFD8B0CC2D32F581(L_0, L_1, L_2, NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_4;
|
|
L_4 = TransformOrigin_get_y_m2B16F6E4821E20812F1A091AB94F88558FA7EE44_inline((&___0_a), NULL);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_5;
|
|
L_5 = TransformOrigin_get_y_m2B16F6E4821E20812F1A091AB94F88558FA7EE44_inline((&___1_b), NULL);
|
|
float L_6 = ___2_t;
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_7;
|
|
L_7 = ValuesLength_Lerp_mED26D7333C799606336B51C2EFD8B0CC2D32F581(L_4, L_5, L_6, NULL);
|
|
float L_8;
|
|
L_8 = TransformOrigin_get_z_m1B0602F587F9B7DF875C751BE1DA610E0CFBFAD7_inline((&___0_a), NULL);
|
|
float L_9;
|
|
L_9 = TransformOrigin_get_z_m1B0602F587F9B7DF875C751BE1DA610E0CFBFAD7_inline((&___1_b), NULL);
|
|
float L_10 = ___2_t;
|
|
float L_11;
|
|
L_11 = Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline(L_8, L_9, L_10, NULL);
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_12;
|
|
memset((&L_12), 0, sizeof(L_12));
|
|
TransformOrigin__ctor_m8C94539319C6C02DFFC9178F4D6572DB15A6C563((&L_12), L_3, L_7, L_11, /*hidden argument*/NULL);
|
|
return L_12;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::UpdateValues()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTransformOrigin_UpdateValues_mF42A8E3C340F9CA6F15C15AD778247855982934E (ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92* V_2 = NULL;
|
|
StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167* V_3 = NULL;
|
|
bool V_4 = false;
|
|
{
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_0 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
int32_t L_1 = L_0->___count_4;
|
|
V_0 = L_1;
|
|
V_1 = 0;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_2 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
TimingDataU5BU5D_t1C0E9B6D937D57C27438BFA33BC2DB905EE4973E* L_3 = L_2->___timing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
V_2 = ((L_3)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_4)));
|
|
AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513* L_5 = (AnimationDataSet_2_t51062A50DDCEFF7458A164F033D211C9E0701513*)(&((Values_1_t4B3725FE6B9D8A60439FC42ABC27E2FAE91ACBA5*)__this)->___running_3);
|
|
StyleDataU5BU5D_tDCCCED3D71A0A84CDB77E5222463121D4EB611CC* L_6 = L_5->___style_3;
|
|
int32_t L_7 = V_1;
|
|
NullCheck(L_6);
|
|
V_3 = ((L_6)->GetAddressAt(static_cast<il2cpp_array_size_t>(L_7)));
|
|
StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167* L_8 = V_3;
|
|
StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167* L_9 = V_3;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_10 = L_9->___startValue_0;
|
|
StyleData_tDA8B8711D8BD18C0D6EB99A929976DDC956DD167* L_11 = V_3;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_12 = L_11->___endValue_1;
|
|
TimingData_t0F88AE7B3D3525F39CAAED92C1983CCCF4961B92* L_13 = V_2;
|
|
float L_14 = L_13->___easedProgress_3;
|
|
TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502 L_15;
|
|
L_15 = ValuesTransformOrigin_Lerp_mBFDA5F5AFE153322997485F08BB15CDD223447D4(L_10, L_12, L_14, NULL);
|
|
L_8->___currentValue_3 = L_15;
|
|
int32_t L_16 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
int32_t L_17 = V_1;
|
|
int32_t L_18 = V_0;
|
|
V_4 = (bool)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0);
|
|
bool L_19 = V_4;
|
|
if (L_19)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.StylePropertyAnimationSystem/ValuesTransformOrigin::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ValuesTransformOrigin__ctor_m87A9D674246E01D2E479AF7099EF195C1F341A6C (ValuesTransformOrigin_tB46EC0F073E360E1431CCD4E580BA675D716823F* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ValuesTransformOrigin_IsSame_m09C19414464EE548C1E6A6EC5562670AAFE4AAA0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Values_1__ctor_mFFEF26A8BD0E03F73FCD1306CBAD763A96908EC3_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F* L_0 = (Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F*)il2cpp_codegen_object_new(Func_3_tB92C805F866D2EB9A48A2CC06AAF77E333340E9F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
Func_3__ctor_m2F359B22A6AE9B07F6A1B28BA8E0B93638366352(L_0, NULL, (intptr_t)((void*)ValuesTransformOrigin_IsSame_m09C19414464EE548C1E6A6EC5562670AAFE4AAA0_RuntimeMethod_var), NULL);
|
|
__this->___U3CSameFuncU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CSameFuncU3Ek__BackingField_5), (void*)L_0);
|
|
Values_1__ctor_mFFEF26A8BD0E03F73FCD1306CBAD763A96908EC3(__this, Values_1__ctor_mFFEF26A8BD0E03F73FCD1306CBAD763A96908EC3_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.Vector2 UnityEngine.UIElements.VisualElementExtensions::WorldToLocal(UnityEngine.UIElements.VisualElement,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 VisualElementExtensions_WorldToLocal_m9AB4674D3198B2C87E9D53DB56077BA769059EF9 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_p, const RuntimeMethod* method)
|
|
{
|
|
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;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ele;
|
|
V_0 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral27F4E38F96E25FC6A303C61D7E1304CAF64B7541)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VisualElementExtensions_WorldToLocal_m9AB4674D3198B2C87E9D53DB56077BA769059EF9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ele;
|
|
NullCheck(L_3);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_4;
|
|
L_4 = VisualElement_get_worldTransformInverse_m3F6A138010EDD0ADB850092717003E8E38226980(L_3, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = ___1_p;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = VisualElement_MultiplyMatrix44Point2_m0D9B66607EF7792AA21696927BAA8404C403EA60_inline(L_4, L_5, NULL);
|
|
V_1 = L_6;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.VisualElementExtensions::LocalToWorld(UnityEngine.UIElements.VisualElement,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 VisualElementExtensions_LocalToWorld_mDDE4378293C3CC8A99E8EA2AA0984BBF30C8FDCD (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_p, 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;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ele;
|
|
V_0 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral27F4E38F96E25FC6A303C61D7E1304CAF64B7541)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VisualElementExtensions_LocalToWorld_mDDE4378293C3CC8A99E8EA2AA0984BBF30C8FDCD_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ele;
|
|
NullCheck(L_3);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_4;
|
|
L_4 = VisualElement_get_worldTransformRef_m25AB63C70B9C7965FEC38C1711316A47608D5276(L_3, NULL);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5 = ___1_p;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = VisualElement_MultiplyMatrix44Point2_m0D9B66607EF7792AA21696927BAA8404C403EA60_inline(L_4, L_5, NULL);
|
|
V_1 = L_6;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.VisualElementExtensions::WorldToLocal(UnityEngine.UIElements.VisualElement,UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D VisualElementExtensions_WorldToLocal_m6F92CEAE8BF73F6729262B535191AD1437DC1A9F (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___1_r, 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;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ele;
|
|
V_0 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral27F4E38F96E25FC6A303C61D7E1304CAF64B7541)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VisualElementExtensions_WorldToLocal_m6F92CEAE8BF73F6729262B535191AD1437DC1A9F_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ele;
|
|
NullCheck(L_3);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_4;
|
|
L_4 = VisualElement_get_worldTransformInverse_m3F6A138010EDD0ADB850092717003E8E38226980(L_3, NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_5 = ___1_r;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_6;
|
|
L_6 = VisualElement_CalculateConservativeRect_mA2F03F761381779D00E25C96C1DCE61A181A77EA(L_4, L_5, NULL);
|
|
V_1 = L_6;
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementExtensions::AddManipulator(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IManipulator)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementExtensions_AddManipulator_m3579CA75D8F76245DC3B7C9F5FCB9B769D69E27D (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, RuntimeObject* ___1_manipulator, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___1_manipulator;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___1_manipulator;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ele;
|
|
NullCheck(L_2);
|
|
InterfaceActionInvoker1< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* System.Void UnityEngine.UIElements.IManipulator::set_target(UnityEngine.UIElements.VisualElement) */, IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708_il2cpp_TypeInfo_var, L_2, L_3);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementExtensions::RemoveManipulator(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IManipulator)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementExtensions_RemoveManipulator_m7FF368767CDA311BA47F56729AA68B173F1BED35 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ele, RuntimeObject* ___1_manipulator, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___1_manipulator;
|
|
V_0 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_2 = ___1_manipulator;
|
|
NullCheck(L_2);
|
|
InterfaceActionInvoker1< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(0 /* System.Void UnityEngine.UIElements.IManipulator::set_target(UnityEngine.UIElements.VisualElement) */, IManipulator_t72ADA8E9221C6883C2EAF66532E4C88914018708_il2cpp_TypeInfo_var, L_2, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL);
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Boolean UnityEngine.UIElements.Clickable::get_active()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CactiveU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::set_active(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CactiveU3Ek__BackingField_8 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.Clickable::get_lastMousePosition()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Clickable_get_lastMousePosition_m44881B6F9DFBD98ECBA7DE638D4894220B61BCDF (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3ClastMousePositionU3Ek__BackingField_9;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::set_lastMousePosition(UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_set_lastMousePosition_m62DECE599D6299F5C39D0D9807595C7172BAEA9D (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3ClastMousePositionU3Ek__BackingField_9 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Clickable::get_acceptClicksIfDisabled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_get_acceptClicksIfDisabled_mA0E7C1A446C04D7998C902BAA933460DA3D3C18B (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_AcceptClicksIfDisabled_11;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.InvokePolicy UnityEngine.UIElements.Clickable::get_invokePolicy()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Clickable_get_invokePolicy_mB16CCE5A5E6FD2D0C217FA720974BE1EA11E7DCD (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_acceptClicksIfDisabled_mA0E7C1A446C04D7998C902BAA933460DA3D3C18B_inline(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_000b;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
return (int32_t)(G_B3_0);
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::.ctor(System.Action,System.Int64,System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable__ctor_m8B94EAD6E8E850602AD61A0FE7ABD80190BAF88E (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_handler, int64_t ___1_delay, int64_t ___2_interval, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ___0_handler;
|
|
Clickable__ctor_mCB2B71EB5818A9A1BB1916BBA2FE4BC983575DEB(__this, L_0, NULL);
|
|
int64_t L_1 = ___1_delay;
|
|
__this->___m_Delay_6 = L_1;
|
|
int64_t L_2 = ___2_interval;
|
|
__this->___m_Interval_7 = L_2;
|
|
Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE_inline(__this, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::.ctor(System.Action`1<UnityEngine.UIElements.EventBase>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable__ctor_m98DC43EA0FE6BFAAF1AB55AEEF38F15DD1F2FB99 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* ___0_handler, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
__this->___m_ActivePointerId_10 = (-1);
|
|
PointerManipulator__ctor_m3601286974D5012B87BC27898ADC9E80B28EF451(__this, NULL);
|
|
Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* L_0 = ___0_handler;
|
|
__this->___clickedWithEventInfo_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___clickedWithEventInfo_4), (void*)L_0);
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_1;
|
|
L_1 = MouseManipulator_get_activators_mAB6DB832B06575DF49E23F84AE0B79EACE0509C9_inline(__this, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81));
|
|
ManipulatorActivationFilter_set_button_m7D270A0FB7BF8D63EE26483770D72A0676374769_inline((&V_0), 0, NULL);
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 L_2 = V_0;
|
|
NullCheck(L_1);
|
|
List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_inline(L_1, L_2, List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::.ctor(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable__ctor_mCB2B71EB5818A9A1BB1916BBA2FE4BC983575DEB (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_handler, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
__this->___m_ActivePointerId_10 = (-1);
|
|
PointerManipulator__ctor_m3601286974D5012B87BC27898ADC9E80B28EF451(__this, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ___0_handler;
|
|
__this->___clicked_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___clicked_5), (void*)L_0);
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_1;
|
|
L_1 = MouseManipulator_get_activators_mAB6DB832B06575DF49E23F84AE0B79EACE0509C9_inline(__this, NULL);
|
|
il2cpp_codegen_initobj((&V_0), sizeof(ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81));
|
|
ManipulatorActivationFilter_set_button_m7D270A0FB7BF8D63EE26483770D72A0676374769_inline((&V_0), 0, NULL);
|
|
ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81 L_2 = V_0;
|
|
NullCheck(L_1);
|
|
List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_inline(L_1, L_2, List_1_Add_m312FE437F125C20E59CB1E48C69BF7F40ADE12C0_RuntimeMethod_var);
|
|
Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE_inline(__this, (bool)0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnTimer(UnityEngine.UIElements.TimerState)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnTimer_m0DB36FB7BE7DEED6ABCEF027453E7DB5A5F1679C (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE ___0_timerState, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___clicked_5;
|
|
if (L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* L_1 = __this->___clickedWithEventInfo_4;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
bool L_2;
|
|
L_2 = Clickable_IsRepeatable_m02FD0CC8471886B591B8E31B2135AF58F33948DD(__this, NULL);
|
|
G_B4_0 = ((int32_t)(L_2));
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = __this->___m_ActivePointerId_10;
|
|
bool L_5;
|
|
L_5 = Clickable_ContainsPointer_m0BD6507CF4D41C5EA255A4FDE08A5D7F1CF77670(__this, L_4, NULL);
|
|
V_1 = L_5;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_004f;
|
|
}
|
|
}
|
|
{
|
|
Clickable_Invoke_mD6F0CC4768D3E91318853985DBDEB37EDC49A283(__this, (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)NULL, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_8, NULL);
|
|
NullCheck(L_8);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_8, ((int32_t)((int32_t)L_9|1)), NULL);
|
|
goto IL_0066;
|
|
}
|
|
|
|
IL_004f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = L_10;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_11, NULL);
|
|
NullCheck(L_11);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_11, ((int32_t)((int32_t)L_12&((int32_t)-2))), NULL);
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Clickable::IsRepeatable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_IsRepeatable_m02FD0CC8471886B591B8E31B2135AF58F33948DD (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int64_t L_0 = __this->___m_Delay_6;
|
|
if ((((int64_t)L_0) > ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_1 = __this->___m_Interval_7;
|
|
G_B3_0 = ((((int64_t)L_1) > ((int64_t)((int64_t)0)))? 1 : 0);
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::RegisterCallbacksOnTarget()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_RegisterCallbacksOnTarget_m69AB13DDCF11EC6A02AA986894EEAEF2AAC4825D (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_m81C10E53CAC3EFE4C8A66ACC3CF4D2BA06A01A04_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_m973B21C3368658DD783507954107DBB7A0D4BA7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_mF457ADEA74CE4B568350D53896F186F482F473C0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8269D1AF3457E7474A8EB8A380D6F2DBCDA2E649_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4261C8B7CCD0487DCB444E9F1D99595D3F0417EE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m1436561BBA8BC9BFF0E0F4374906B6D7F67D2265_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m31B47377B2600C76864A89BB9F281B73D042B4F7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mE3153A790D51A1FBD515EBF3FE36AF9D4DCD1BD7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_mF32CB6B5935957C0761E707801C9062199B61786_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t074F374661507958319B62431E9384D959AA1B09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17* L_1 = (EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17*)il2cpp_codegen_object_new(EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
EventCallback_1__ctor_m709C5400BF973916ABE27FC11BD3B70EA36C5CE1(L_1, __this, (intptr_t)((void*)Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25_RuntimeMethod_var), NULL);
|
|
int32_t L_2;
|
|
L_2 = Clickable_get_invokePolicy_mB16CCE5A5E6FD2D0C217FA720974BE1EA11E7DCD(__this, NULL);
|
|
NullCheck(L_0);
|
|
CallbackEventHandler_RegisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_m973B21C3368658DD783507954107DBB7A0D4BA7C(L_0, L_1, L_2, 0, CallbackEventHandler_RegisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_m973B21C3368658DD783507954107DBB7A0D4BA7C_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t074F374661507958319B62431E9384D959AA1B09* L_4 = (EventCallback_1_t074F374661507958319B62431E9384D959AA1B09*)il2cpp_codegen_object_new(EventCallback_1_t074F374661507958319B62431E9384D959AA1B09_il2cpp_TypeInfo_var);
|
|
NullCheck(L_4);
|
|
EventCallback_1__ctor_mCA0DCF43EAD18240BC82AE75C53976B3B168D12B(L_4, __this, (intptr_t)((void*)Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9_RuntimeMethod_var), NULL);
|
|
int32_t L_5;
|
|
L_5 = Clickable_get_invokePolicy_mB16CCE5A5E6FD2D0C217FA720974BE1EA11E7DCD(__this, NULL);
|
|
NullCheck(L_3);
|
|
CallbackEventHandler_RegisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_mF457ADEA74CE4B568350D53896F186F482F473C0(L_3, L_4, L_5, 0, CallbackEventHandler_RegisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_mF457ADEA74CE4B568350D53896F186F482F473C0_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA* L_7 = (EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA*)il2cpp_codegen_object_new(EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
EventCallback_1__ctor_m1A63B71064E62E50488869A1FEDA9E3F2F231257(L_7, __this, (intptr_t)((void*)Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E_RuntimeMethod_var), NULL);
|
|
NullCheck(L_6);
|
|
CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8269D1AF3457E7474A8EB8A380D6F2DBCDA2E649(L_6, L_7, 1, 0, CallbackEventHandler_RegisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8269D1AF3457E7474A8EB8A380D6F2DBCDA2E649_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8;
|
|
L_8 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B* L_9 = (EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B*)il2cpp_codegen_object_new(EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
EventCallback_1__ctor_m076456FB06343B8982243DCB7572A7199E506263(L_9, __this, (intptr_t)((void*)Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D_RuntimeMethod_var), NULL);
|
|
NullCheck(L_8);
|
|
CallbackEventHandler_RegisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_m81C10E53CAC3EFE4C8A66ACC3CF4D2BA06A01A04(L_8, L_9, 1, 0, CallbackEventHandler_RegisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_m81C10E53CAC3EFE4C8A66ACC3CF4D2BA06A01A04_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* L_11 = (EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*)il2cpp_codegen_object_new(EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
EventCallback_1__ctor_mCDF2316FE391D783EF33C433EB59E5DF474C5398(L_11, __this, (intptr_t)((void*)Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95_RuntimeMethod_var), NULL);
|
|
int32_t L_12;
|
|
L_12 = Clickable_get_invokePolicy_mB16CCE5A5E6FD2D0C217FA720974BE1EA11E7DCD(__this, NULL);
|
|
NullCheck(L_10);
|
|
CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m31B47377B2600C76864A89BB9F281B73D042B4F7(L_10, L_11, L_12, 0, CallbackEventHandler_RegisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m31B47377B2600C76864A89BB9F281B73D042B4F7_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* L_14 = (EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*)il2cpp_codegen_object_new(EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_14);
|
|
EventCallback_1__ctor_mF3F9B006713A25FE54BB4DD7611B7A56ABDC7596(L_14, __this, (intptr_t)((void*)Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7_RuntimeMethod_var), NULL);
|
|
int32_t L_15;
|
|
L_15 = Clickable_get_invokePolicy_mB16CCE5A5E6FD2D0C217FA720974BE1EA11E7DCD(__this, NULL);
|
|
NullCheck(L_13);
|
|
CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mE3153A790D51A1FBD515EBF3FE36AF9D4DCD1BD7(L_13, L_14, L_15, 0, CallbackEventHandler_RegisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_mE3153A790D51A1FBD515EBF3FE36AF9D4DCD1BD7_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* L_17 = (EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*)il2cpp_codegen_object_new(EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
EventCallback_1__ctor_mE64B79996B25171AA5DCBD2AFBB71A1A8C38B6E5(L_17, __this, (intptr_t)((void*)Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44_RuntimeMethod_var), NULL);
|
|
NullCheck(L_16);
|
|
CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_mF32CB6B5935957C0761E707801C9062199B61786(L_16, L_17, 1, 0, CallbackEventHandler_RegisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_mF32CB6B5935957C0761E707801C9062199B61786_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18;
|
|
L_18 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* L_19 = (EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*)il2cpp_codegen_object_new(EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_19);
|
|
EventCallback_1__ctor_m24CD07E9D8DA8BCAE0446636AB9C0622C36DF10C(L_19, __this, (intptr_t)((void*)Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718_RuntimeMethod_var), NULL);
|
|
NullCheck(L_18);
|
|
CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4261C8B7CCD0487DCB444E9F1D99595D3F0417EE(L_18, L_19, 1, 0, CallbackEventHandler_RegisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m4261C8B7CCD0487DCB444E9F1D99595D3F0417EE_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20;
|
|
L_20 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF* L_21 = (EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF*)il2cpp_codegen_object_new(EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_21);
|
|
EventCallback_1__ctor_m03D5D6D2A51BFDF58AF3F2307AD44B24B60A7B1B(L_21, __this, (intptr_t)((void*)Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F_RuntimeMethod_var), NULL);
|
|
NullCheck(L_20);
|
|
CallbackEventHandler_RegisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m1436561BBA8BC9BFF0E0F4374906B6D7F67D2265(L_20, L_21, 1, 0, CallbackEventHandler_RegisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m1436561BBA8BC9BFF0E0F4374906B6D7F67D2265_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::UnregisterCallbacksFromTarget()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_UnregisterCallbacksFromTarget_m35EA69CAB5376A4BF2B64125B3EC8BC976265B38 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_mEB2BBAD218BC5F310A502DB49C1487C9DBCCCDE7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_mC9D851A09DE940C7F3D8C12F74FFB775C9483948_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_m2596702F982363AAE007826D14FFF28641A8AEBB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8D4200FB7F0D6DD78D774B7384306E96798C184B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m96B8A002675366436500646208EB3C2FBAE3502A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t074F374661507958319B62431E9384D959AA1B09_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17* L_1 = (EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17*)il2cpp_codegen_object_new(EventCallback_1_tED92C39D3D539693A36E8EB8A1D9EE15E2CBEB17_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
EventCallback_1__ctor_m709C5400BF973916ABE27FC11BD3B70EA36C5CE1(L_1, __this, (intptr_t)((void*)Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25_RuntimeMethod_var), NULL);
|
|
NullCheck(L_0);
|
|
CallbackEventHandler_UnregisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_mC9D851A09DE940C7F3D8C12F74FFB775C9483948(L_0, L_1, 0, CallbackEventHandler_UnregisterCallback_TisMouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD_mC9D851A09DE940C7F3D8C12F74FFB775C9483948_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2;
|
|
L_2 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t074F374661507958319B62431E9384D959AA1B09* L_3 = (EventCallback_1_t074F374661507958319B62431E9384D959AA1B09*)il2cpp_codegen_object_new(EventCallback_1_t074F374661507958319B62431E9384D959AA1B09_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
EventCallback_1__ctor_mCA0DCF43EAD18240BC82AE75C53976B3B168D12B(L_3, __this, (intptr_t)((void*)Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9_RuntimeMethod_var), NULL);
|
|
NullCheck(L_2);
|
|
CallbackEventHandler_UnregisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_m2596702F982363AAE007826D14FFF28641A8AEBB(L_2, L_3, 0, CallbackEventHandler_UnregisterCallback_TisMouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5_m2596702F982363AAE007826D14FFF28641A8AEBB_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA* L_5 = (EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA*)il2cpp_codegen_object_new(EventCallback_1_t1A2780DC339B518A24303A44432644AB7D578DEA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
EventCallback_1__ctor_m1A63B71064E62E50488869A1FEDA9E3F2F231257(L_5, __this, (intptr_t)((void*)Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
CallbackEventHandler_UnregisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8D4200FB7F0D6DD78D774B7384306E96798C184B(L_4, L_5, 0, CallbackEventHandler_UnregisterCallback_TisMouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811_m8D4200FB7F0D6DD78D774B7384306E96798C184B_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B* L_7 = (EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B*)il2cpp_codegen_object_new(EventCallback_1_t2625C042BC2C4D0937381CA343BA7BA0796D531B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
EventCallback_1__ctor_m076456FB06343B8982243DCB7572A7199E506263(L_7, __this, (intptr_t)((void*)Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D_RuntimeMethod_var), NULL);
|
|
NullCheck(L_6);
|
|
CallbackEventHandler_UnregisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_mEB2BBAD218BC5F310A502DB49C1487C9DBCCCDE7(L_6, L_7, 0, CallbackEventHandler_UnregisterCallback_TisMouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5_mEB2BBAD218BC5F310A502DB49C1487C9DBCCCDE7_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8;
|
|
L_8 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C* L_9 = (EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C*)il2cpp_codegen_object_new(EventCallback_1_tBC1DA4FF1E26FC091E77AD11B6F780C5D237AF2C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
EventCallback_1__ctor_mCDF2316FE391D783EF33C433EB59E5DF474C5398(L_9, __this, (intptr_t)((void*)Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95_RuntimeMethod_var), NULL);
|
|
NullCheck(L_8);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509(L_8, L_9, 0, CallbackEventHandler_UnregisterCallback_TisPointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_m3289E47B906D6F66490543857408759250B0F509_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA* L_11 = (EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA*)il2cpp_codegen_object_new(EventCallback_1_t7C6768AD962B0B50514570724A38E07DA18FB1FA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
EventCallback_1__ctor_mF3F9B006713A25FE54BB4DD7611B7A56ABDC7596(L_11, __this, (intptr_t)((void*)Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7_RuntimeMethod_var), NULL);
|
|
NullCheck(L_10);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1(L_10, L_11, 0, CallbackEventHandler_UnregisterCallback_TisPointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_m6F47F7C447568B774EE45E245D99CBD6CDEC3CC1_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12;
|
|
L_12 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913* L_13 = (EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913*)il2cpp_codegen_object_new(EventCallback_1_tE2BCC4FFB156A2716749F7BDD0036A743B039913_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
EventCallback_1__ctor_mE64B79996B25171AA5DCBD2AFBB71A1A8C38B6E5(L_13, __this, (intptr_t)((void*)Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44_RuntimeMethod_var), NULL);
|
|
NullCheck(L_12);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A(L_12, L_13, 0, CallbackEventHandler_UnregisterCallback_TisPointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_m6260930D0C12A5DFCA80D6D299023CA1A157680A_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7* L_15 = (EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7*)il2cpp_codegen_object_new(EventCallback_1_tCF242F8E93BCF576DC25DFA8544DC8816F42CFE7_il2cpp_TypeInfo_var);
|
|
NullCheck(L_15);
|
|
EventCallback_1__ctor_m24CD07E9D8DA8BCAE0446636AB9C0622C36DF10C(L_15, __this, (intptr_t)((void*)Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718_RuntimeMethod_var), NULL);
|
|
NullCheck(L_14);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18(L_14, L_15, 0, CallbackEventHandler_UnregisterCallback_TisPointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51_m5F10C8DEFC75B4A190E365536DEE17FE5E5A3A18_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF* L_17 = (EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF*)il2cpp_codegen_object_new(EventCallback_1_t3A7B85AD96E3BB6F407AAFF594E222FBD5B713EF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
EventCallback_1__ctor_m03D5D6D2A51BFDF58AF3F2307AD44B24B60A7B1B(L_17, __this, (intptr_t)((void*)Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F_RuntimeMethod_var), NULL);
|
|
NullCheck(L_16);
|
|
CallbackEventHandler_UnregisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m96B8A002675366436500646208EB3C2FBAE3502A(L_16, L_17, 0, CallbackEventHandler_UnregisterCallback_TisPointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5_m96B8A002675366436500646208EB3C2FBAE3502A_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnMouseDown(UnityEngine.UIElements.MouseDownEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnMouseDown_m9C2AB952A328E4EBDB6DB513DBAF0FF92104FD25 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_get_localMousePosition_m7E2B067F4C1294AAA0B5AB391297BCF04C990ED4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_0 = ___0_evt;
|
|
bool L_1;
|
|
L_1 = MouseManipulator_CanStartManipulation_mA8982ABD8ECE0F529EF47AE8065D1AF8DF523DC1(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_3 = ___0_evt;
|
|
MouseDownEvent_tD798610B9C34C7D1CA93C66034A67D330D4A83CD* L_4 = ___0_evt;
|
|
NullCheck(L_4);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = MouseEventBase_1_get_localMousePosition_m7E2B067F4C1294AAA0B5AB391297BCF04C990ED4_inline(L_4, MouseEventBase_1_get_localMousePosition_m7E2B067F4C1294AAA0B5AB391297BCF04C990ED4_RuntimeMethod_var);
|
|
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;
|
|
VirtualActionInvoker3< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(8 /* System.Void UnityEngine.UIElements.Clickable::ProcessDownEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2,System.Int32) */, __this, L_3, L_5, L_6);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnMouseMove(UnityEngine.UIElements.MouseMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnMouseMove_mF22776A88FA61BA7D14EA9FD26D694E121D50EA9 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_get_localMousePosition_mE5C3F1309BEB0619604BFA1B5039816FE73A10E5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_2 = ___0_evt;
|
|
MouseMoveEvent_t1B41ADBDD7458D2369BF45AD02EE8FBE29F8E8A5* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4;
|
|
L_4 = MouseEventBase_1_get_localMousePosition_mE5C3F1309BEB0619604BFA1B5039816FE73A10E5_inline(L_3, MouseEventBase_1_get_localMousePosition_mE5C3F1309BEB0619604BFA1B5039816FE73A10E5_RuntimeMethod_var);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(9 /* System.Void UnityEngine.UIElements.Clickable::ProcessMoveEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2) */, __this, L_2, L_4);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnMouseUp(UnityEngine.UIElements.MouseUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnMouseUp_m91AE050EADCB6B6D655D3A57DBE51C1E1A4DCD4E (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventBase_1_get_localMousePosition_mDE94950434E8550D10DCF82EBDDFAD9FA6999DF1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_1 = ___0_evt;
|
|
bool L_2;
|
|
L_2 = MouseManipulator_CanStopManipulation_m6BDD39352CCB9AEBC632B876072F616A5693136C(__this, L_1, NULL);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
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;
|
|
}
|
|
}
|
|
{
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_4 = ___0_evt;
|
|
MouseUpEvent_t3AC6C6A7A9CDB075A5FFE0C0F5E9B7C5D561A811* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = MouseEventBase_1_get_localMousePosition_mDE94950434E8550D10DCF82EBDDFAD9FA6999DF1_inline(L_5, MouseEventBase_1_get_localMousePosition_mDE94950434E8550D10DCF82EBDDFAD9FA6999DF1_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_7 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
VirtualActionInvoker3< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(10 /* System.Void UnityEngine.UIElements.Clickable::ProcessUpEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2,System.Int32) */, __this, L_4, L_6, L_7);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnMouseCaptureOut(UnityEngine.UIElements.MouseCaptureOutEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnMouseCaptureOut_m8A0603C7BA0E647BF029AC34C22FAFAB4D01729D (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* L_2 = ___0_evt;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_3 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(11 /* System.Void UnityEngine.UIElements.Clickable::ProcessCancelEvent(UnityEngine.UIElements.EventBase,System.Int32) */, __this, L_2, L_3);
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnPointerDown(UnityEngine.UIElements.PointerDownEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnPointerDown_mE73634C853F5F17C2264CF74D72C7A1DEC9D0E95 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_localPosition_m9E543CA223482A9514B0F78D60360D65EC8E3FD4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_0 = ___0_evt;
|
|
bool L_1;
|
|
L_1 = PointerManipulator_CanStartManipulation_m9D53C068740EA802585EA65B19AA4AC7B3251387(__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_0011;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(L_3, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_5 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_7 = ___0_evt;
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_8 = ___0_evt;
|
|
NullCheck(L_8);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9;
|
|
L_9 = PointerEventBase_1_get_localPosition_m9E543CA223482A9514B0F78D60360D65EC8E3FD4_inline(L_8, PointerEventBase_1_get_localPosition_m9E543CA223482A9514B0F78D60360D65EC8E3FD4_RuntimeMethod_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10;
|
|
L_10 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_9, NULL);
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_11 = ___0_evt;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(L_11, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
VirtualActionInvoker3< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(8 /* System.Void UnityEngine.UIElements.Clickable::ProcessDownEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2,System.Int32) */, __this, L_7, L_10, L_12);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13;
|
|
L_13 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_13);
|
|
RuntimeObject* L_14;
|
|
L_14 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_13, NULL);
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(L_15, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_14, L_16, NULL);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17;
|
|
L_17 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_18;
|
|
L_18 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_17, NULL);
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_19 = ___0_evt;
|
|
NullCheck(L_19);
|
|
int32_t L_20;
|
|
L_20 = PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_inline(L_19, PointerEventBase_1_get_pointerId_m2666488A68716BD85D3277905899BDE7CF3826C8_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_18, L_20, NULL);
|
|
PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51* L_21 = ___0_evt;
|
|
NullCheck(L_21);
|
|
EventBase_StopImmediatePropagation_m2D6646624DDC02AE96657F5EAD5BC0361380A8DA(L_21, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnPointerMove(UnityEngine.UIElements.PointerMoveEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnPointerMove_m76F45142599C9CEFA025DCC49BB81938AECBBDA7 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_localPosition_m38DF70FA116B536F7D26200F9947A0F04105F6BF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_inline(L_2, PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_RuntimeMethod_var);
|
|
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;
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_3) == ((int32_t)L_4))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_6 = ___0_evt;
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_8;
|
|
L_8 = PointerEventBase_1_get_localPosition_m38DF70FA116B536F7D26200F9947A0F04105F6BF_inline(L_7, PointerEventBase_1_get_localPosition_m38DF70FA116B536F7D26200F9947A0F04105F6BF_RuntimeMethod_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_8, NULL);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 >::Invoke(9 /* System.Void UnityEngine.UIElements.Clickable::ProcessMoveEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2) */, __this, L_6, L_9);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10;
|
|
L_10 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_10);
|
|
RuntimeObject* L_11;
|
|
L_11 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_10, NULL);
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_12 = ___0_evt;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_inline(L_12, PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_11, L_13, NULL);
|
|
goto IL_0072;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_14, NULL);
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_16 = ___0_evt;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_inline(L_16, PointerEventBase_1_get_pointerId_mD0FD52357DFDC016B39149C06C87B3FA2F786783_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_15, L_17, NULL);
|
|
PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_18, NULL);
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnPointerUp(UnityEngine.UIElements.PointerUpEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnPointerUp_m912689B569AE2869391592DD6723B7E9B7E57D44 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_localPosition_m3941BBAAC0355C583681F3A5ECBA8FCAB5F1DACC_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_1 = ___0_evt;
|
|
bool L_2;
|
|
L_2 = PointerManipulator_CanStopManipulation_mD4ECC120E2162AE51EA28C5292C97203D3C0A48E(__this, L_1, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_4 = ___0_evt;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(L_4, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
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;
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_5) == ((int32_t)L_6))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_8 = ___0_evt;
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_9 = ___0_evt;
|
|
NullCheck(L_9);
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_10;
|
|
L_10 = PointerEventBase_1_get_localPosition_m3941BBAAC0355C583681F3A5ECBA8FCAB5F1DACC_inline(L_9, PointerEventBase_1_get_localPosition_m3941BBAAC0355C583681F3A5ECBA8FCAB5F1DACC_RuntimeMethod_var);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11;
|
|
L_11 = Vector2_op_Implicit_mE8EBEE9291F11BB02F062D6E000F4798968CBD96_inline(L_10, NULL);
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_12 = ___0_evt;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(L_12, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
VirtualActionInvoker3< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7, int32_t >::Invoke(10 /* System.Void UnityEngine.UIElements.Clickable::ProcessUpEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2,System.Int32) */, __this, L_8, L_11, L_13);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_14);
|
|
RuntimeObject* L_15;
|
|
L_15 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_14, NULL);
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_16 = ___0_evt;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(L_16, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_15, L_17, NULL);
|
|
goto IL_0084;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18;
|
|
L_18 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_18);
|
|
RuntimeObject* L_19;
|
|
L_19 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_18, NULL);
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_inline(L_20, PointerEventBase_1_get_pointerId_m494A184CC32780C69FAE61D8361DE5F4A53FF2C6_RuntimeMethod_var);
|
|
PointerCaptureHelper_PreventCompatibilityMouseEvents_m96F0763D51B20EE438DE8C927CBD1EB480F7A751(L_19, L_21, NULL);
|
|
PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9* L_22 = ___0_evt;
|
|
NullCheck(L_22);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_22, NULL);
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnPointerCancel(UnityEngine.UIElements.PointerCancelEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnPointerCancel_mAC1EAC3512F72B6F708F84F7D18334D59FB79718 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_1 = ___0_evt;
|
|
bool L_2;
|
|
L_2 = PointerManipulator_CanStopManipulation_mD4ECC120E2162AE51EA28C5292C97203D3C0A48E(__this, L_1, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_4 = ___0_evt;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline(L_4, PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
bool L_6;
|
|
L_6 = Clickable_IsNotMouseEvent_m999E171FF52AE833AA69692BC67EEEC6C47E9FE9(L_5, NULL);
|
|
V_1 = L_6;
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_8 = ___0_evt;
|
|
PointerCancelEvent_t566D42065C3B376AD49A44A406AFE929A6CFEE51* L_9 = ___0_evt;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_inline(L_9, PointerEventBase_1_get_pointerId_m10A301E89D623BE4E099DC7CE768AE0D12ADF5B4_RuntimeMethod_var);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(11 /* System.Void UnityEngine.UIElements.Clickable::ProcessCancelEvent(UnityEngine.UIElements.EventBase,System.Int32) */, __this, L_8, L_10);
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::OnPointerCaptureOut(UnityEngine.UIElements.PointerCaptureOutEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_OnPointerCaptureOut_mD116254D306487990547171C5207A6AEA18CAB3F (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
bool L_0;
|
|
L_0 = Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline(__this, NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
int32_t L_3;
|
|
L_3 = PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_inline(L_2, PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_RuntimeMethod_var);
|
|
bool L_4;
|
|
L_4 = Clickable_IsNotMouseEvent_m999E171FF52AE833AA69692BC67EEEC6C47E9FE9(L_3, NULL);
|
|
V_1 = L_4;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* L_6 = ___0_evt;
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_inline(L_7, PointerCaptureEventBase_1_get_pointerId_m807E1CA35DCA449386CC6C80A29FEE3ECFA04D93_RuntimeMethod_var);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(11 /* System.Void UnityEngine.UIElements.Clickable::ProcessCancelEvent(UnityEngine.UIElements.EventBase,System.Int32) */, __this, L_6, L_8);
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Clickable::ContainsPointer(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_ContainsPointer_m0BD6507CF4D41C5EA255A4FDE08A5D7F1CF77670 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_0);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_1;
|
|
L_1 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(L_0, NULL);
|
|
int32_t L_2 = ___0_pointerId;
|
|
NullCheck(L_1);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = BaseVisualElementPanel_GetTopElementUnderPointer_mDB876CD969BE130AC4E687554E08334ECBEB6B30(L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = V_0;
|
|
if ((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_4) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_5)))
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = V_0;
|
|
NullCheck(L_6);
|
|
bool L_8;
|
|
L_8 = VisualElement_Contains_m67C850F752124028022996B851C2008877C19D3D(L_6, L_7, NULL);
|
|
G_B3_0 = ((int32_t)(L_8));
|
|
goto IL_002b;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
bool L_9 = V_1;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Clickable::IsNotMouseEvent(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Clickable_IsNotMouseEvent_m999E171FF52AE833AA69692BC67EEEC6C47E9FE9 (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);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
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)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::Invoke(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_Invoke_mD6F0CC4768D3E91318853985DBDEB37EDC49A283 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B2_0 = NULL;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* G_B1_0 = NULL;
|
|
Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* G_B5_0 = NULL;
|
|
Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* G_B4_0 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___clicked_5;
|
|
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:
|
|
{
|
|
Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* L_2 = __this->___clickedWithEventInfo_4;
|
|
Action_1_t741CBBCB28E18BDBDEED4AE3BD7DBEEEA526DA43* L_3 = L_2;
|
|
G_B4_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B5_0 = L_3;
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
NullCheck(G_B5_0);
|
|
Action_1_Invoke_m214EB2FECBDDD2E7E84E7E03926BE2C12188B648_inline(G_B5_0, L_4, NULL);
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::SimulateSingleClick(UnityEngine.UIElements.EventBase,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_SimulateSingleClick_m46100C6C1273C052169382FE289B0A60CF16A29F (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, int32_t ___1_delayMs, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_U3CSimulateSingleClickU3Eb__43_0_mFA30E64FB9FEE2B9A509FD6FDC0641DCCEA28C04_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_1, NULL);
|
|
NullCheck(L_1);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_1, ((int32_t)((int32_t)L_2|1)), NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = VisualElement_get_schedule_m2BFE6967ED82371ACE1CD1FC32B8D8B93646ED76(L_3, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_5, __this, (intptr_t)((void*)Clickable_U3CSimulateSingleClickU3Eb__43_0_mFA30E64FB9FEE2B9A509FD6FDC0641DCCEA28C04_RuntimeMethod_var), NULL);
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_6;
|
|
L_6 = InterfaceFuncInvoker1< RuntimeObject*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* >::Invoke(1 /* UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.IVisualElementScheduler::Execute(System.Action) */, IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var, L_4, L_5);
|
|
int32_t L_7 = ___1_delayMs;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker1< int64_t >::Invoke(2 /* System.Void UnityEngine.UIElements.IVisualElementScheduledItem::ExecuteLater(System.Int64) */, IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var, L_6, ((int64_t)L_7));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___0_evt;
|
|
Clickable_Invoke_mD6F0CC4768D3E91318853985DBDEB37EDC49A283(__this, L_8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::ProcessDownEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_ProcessDownEvent_m8893F1058785A2B22EE01A3B368BF26F34CCF5B3 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_localPosition, int32_t ___2_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Clickable_OnTimer_m0DB36FB7BE7DEED6ABCEF027453E7DB5A5F1679C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE_inline(__this, (bool)1, NULL);
|
|
int32_t L_0 = ___2_pointerId;
|
|
__this->___m_ActivePointerId_10 = L_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1;
|
|
L_1 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
int32_t L_2 = ___2_pointerId;
|
|
PointerCaptureHelper_CapturePointer_m7A647567160ADA0E052A7277C5B531D7A01E5F7F(L_1, L_2, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_3, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5;
|
|
L_5 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_6;
|
|
L_6 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_5, NULL);
|
|
int32_t L_7 = ___2_pointerId;
|
|
PointerCaptureHelper_ProcessPointerCapture_mD1AE918F21A8FA12782FDDB44BC51B4449F0B160(L_6, L_7, NULL);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_8 = ___1_localPosition;
|
|
Clickable_set_lastMousePosition_m62DECE599D6299F5C39D0D9807595C7172BAEA9D_inline(__this, L_8, NULL);
|
|
bool L_9;
|
|
L_9 = Clickable_IsRepeatable_m02FD0CC8471886B591B8E31B2135AF58F33948DD(__this, NULL);
|
|
V_1 = L_9;
|
|
bool L_10 = V_1;
|
|
if (!L_10)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___2_pointerId;
|
|
bool L_12;
|
|
L_12 = Clickable_ContainsPointer_m0BD6507CF4D41C5EA255A4FDE08A5D7F1CF77670(__this, L_11, NULL);
|
|
V_2 = L_12;
|
|
bool L_13 = V_2;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = ___0_evt;
|
|
Clickable_Invoke_mD6F0CC4768D3E91318853985DBDEB37EDC49A283(__this, L_14, NULL);
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
RuntimeObject* L_15 = __this->___m_Repeater_12;
|
|
V_3 = (bool)((((RuntimeObject*)(RuntimeObject*)L_15) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_16 = V_3;
|
|
if (!L_16)
|
|
{
|
|
goto IL_00b0;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17;
|
|
L_17 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_17);
|
|
RuntimeObject* L_18;
|
|
L_18 = VisualElement_get_schedule_m2BFE6967ED82371ACE1CD1FC32B8D8B93646ED76(L_17, NULL);
|
|
Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB* L_19 = (Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB*)il2cpp_codegen_object_new(Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_19);
|
|
Action_1__ctor_mE69EF7642D4840F2095C4588AAFAC6E9F09C2BC4(L_19, __this, (intptr_t)((void*)Clickable_OnTimer_m0DB36FB7BE7DEED6ABCEF027453E7DB5A5F1679C_RuntimeMethod_var), NULL);
|
|
NullCheck(L_18);
|
|
RuntimeObject* L_20;
|
|
L_20 = InterfaceFuncInvoker1< RuntimeObject*, Action_1_t05F6A7FC9FBB588EC4A828E23375838E340354CB* >::Invoke(0 /* UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.IVisualElementScheduler::Execute(System.Action`1<UnityEngine.UIElements.TimerState>) */, IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var, L_18, L_19);
|
|
int64_t L_21 = __this->___m_Interval_7;
|
|
NullCheck(L_20);
|
|
RuntimeObject* L_22;
|
|
L_22 = InterfaceFuncInvoker1< RuntimeObject*, int64_t >::Invoke(4 /* UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.IVisualElementScheduledItem::Every(System.Int64) */, IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var, L_20, L_21);
|
|
int64_t L_23 = __this->___m_Delay_6;
|
|
NullCheck(L_22);
|
|
RuntimeObject* L_24;
|
|
L_24 = InterfaceFuncInvoker1< RuntimeObject*, int64_t >::Invoke(3 /* UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.IVisualElementScheduledItem::StartingIn(System.Int64) */, IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var, L_22, L_23);
|
|
__this->___m_Repeater_12 = L_24;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Repeater_12), (void*)L_24);
|
|
goto IL_00c4;
|
|
}
|
|
|
|
IL_00b0:
|
|
{
|
|
RuntimeObject* L_25 = __this->___m_Repeater_12;
|
|
int64_t L_26 = __this->___m_Delay_6;
|
|
NullCheck(L_25);
|
|
InterfaceActionInvoker1< int64_t >::Invoke(2 /* System.Void UnityEngine.UIElements.IVisualElementScheduledItem::ExecuteLater(System.Int64) */, IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var, L_25, L_26);
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27;
|
|
L_27 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_28 = L_27;
|
|
NullCheck(L_28);
|
|
int32_t L_29;
|
|
L_29 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_28, NULL);
|
|
NullCheck(L_28);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_28, ((int32_t)((int32_t)L_29|1)), NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = ___0_evt;
|
|
NullCheck(L_30);
|
|
EventBase_StopImmediatePropagation_m2D6646624DDC02AE96657F5EAD5BC0361380A8DA(L_30, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::ProcessMoveEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_ProcessMoveEvent_m5535C7C4A7EDEC4F41FBD411498C79943F9EF727 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_localPosition, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___1_localPosition;
|
|
Clickable_set_lastMousePosition_m62DECE599D6299F5C39D0D9807595C7172BAEA9D_inline(__this, L_0, NULL);
|
|
int32_t L_1 = __this->___m_ActivePointerId_10;
|
|
bool L_2;
|
|
L_2 = Clickable_ContainsPointer_m0BD6507CF4D41C5EA255A4FDE08A5D7F1CF77670(__this, L_1, NULL);
|
|
V_0 = L_2;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
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|1)), NULL);
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_8, NULL);
|
|
NullCheck(L_8);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_8, ((int32_t)((int32_t)L_9&((int32_t)-2))), NULL);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_10, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::ProcessUpEvent(UnityEngine.UIElements.EventBase,UnityEngine.Vector2,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_ProcessUpEvent_m836CA6678712F2783DD141BA0A5A2C2DA92EDD3C (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_localPosition, int32_t ___2_pointerId, 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*)&IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE_inline(__this, (bool)0, NULL);
|
|
__this->___m_ActivePointerId_10 = (-1);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
int32_t L_1 = ___2_pointerId;
|
|
PointerCaptureHelper_ReleasePointer_m0FF47D46D610A94601B72E011344700B0EA7E1B9(L_0, L_1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_4, NULL);
|
|
int32_t L_6 = ___2_pointerId;
|
|
PointerCaptureHelper_ProcessPointerCapture_mD1AE918F21A8FA12782FDDB44BC51B4449F0B160(L_5, L_6, NULL);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_8, NULL);
|
|
NullCheck(L_8);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_8, ((int32_t)((int32_t)L_9&((int32_t)-2))), NULL);
|
|
bool L_10;
|
|
L_10 = Clickable_IsRepeatable_m02FD0CC8471886B591B8E31B2135AF58F33948DD(__this, NULL);
|
|
V_1 = L_10;
|
|
bool L_11 = V_1;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0074;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = __this->___m_Repeater_12;
|
|
RuntimeObject* L_13 = L_12;
|
|
G_B4_0 = L_13;
|
|
if (L_13)
|
|
{
|
|
G_B5_0 = L_13;
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
InterfaceActionInvoker0::Invoke(1 /* System.Void UnityEngine.UIElements.IVisualElementScheduledItem::Pause() */, IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var, G_B5_0);
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
goto IL_009b;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
int32_t L_14 = ___2_pointerId;
|
|
bool L_15;
|
|
L_15 = Clickable_ContainsPointer_m0BD6507CF4D41C5EA255A4FDE08A5D7F1CF77670(__this, L_14, NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_16);
|
|
bool L_17;
|
|
L_17 = VisualElement_get_enabledInHierarchy_mBC4E983E9FD848277D6820F4D7A2743BA38BC412(L_16, NULL);
|
|
G_B10_0 = ((int32_t)(L_17));
|
|
goto IL_008c;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
V_2 = (bool)G_B10_0;
|
|
bool L_18 = V_2;
|
|
if (!L_18)
|
|
{
|
|
goto IL_009a;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
Clickable_Invoke_mD6F0CC4768D3E91318853985DBDEB37EDC49A283(__this, L_19, NULL);
|
|
}
|
|
|
|
IL_009a:
|
|
{
|
|
}
|
|
|
|
IL_009b:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_20, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::ProcessCancelEvent(UnityEngine.UIElements.EventBase,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_ProcessCancelEvent_m883FEA72687D2F85090D4B3252A472A42C0EE4A9 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, int32_t ___1_pointerId, 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*)&IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
{
|
|
Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE_inline(__this, (bool)0, NULL);
|
|
__this->___m_ActivePointerId_10 = (-1);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
int32_t L_1 = ___1_pointerId;
|
|
PointerCaptureHelper_ReleasePointer_m0FF47D46D610A94601B72E011344700B0EA7E1B9(L_0, L_1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
V_0 = (bool)((((int32_t)((!(((RuntimeObject*)(RuntimeObject*)((RuntimeObject*)IsInst((RuntimeObject*)L_2, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_5;
|
|
L_5 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_4, NULL);
|
|
int32_t L_6 = ___1_pointerId;
|
|
PointerCaptureHelper_ProcessPointerCapture_mD1AE918F21A8FA12782FDDB44BC51B4449F0B160(L_5, L_6, NULL);
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7;
|
|
L_7 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
int32_t L_9;
|
|
L_9 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_8, NULL);
|
|
NullCheck(L_8);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_8, ((int32_t)((int32_t)L_9&((int32_t)-2))), NULL);
|
|
bool L_10;
|
|
L_10 = Clickable_IsRepeatable_m02FD0CC8471886B591B8E31B2135AF58F33948DD(__this, NULL);
|
|
V_1 = L_10;
|
|
bool L_11 = V_1;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_12 = __this->___m_Repeater_12;
|
|
RuntimeObject* L_13 = L_12;
|
|
G_B4_0 = L_13;
|
|
if (L_13)
|
|
{
|
|
G_B5_0 = L_13;
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
InterfaceActionInvoker0::Invoke(1 /* System.Void UnityEngine.UIElements.IVisualElementScheduledItem::Pause() */, IVisualElementScheduledItem_t309F1A5445514122A9E3F64182D0D8A4DE34C48F_il2cpp_TypeInfo_var, G_B5_0);
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_14 = ___0_evt;
|
|
NullCheck(L_14);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_14, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Clickable::<SimulateSingleClick>b__43_0()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Clickable_U3CSimulateSingleClickU3Eb__43_0_mFA30E64FB9FEE2B9A509FD6FDC0641DCCEA28C04 (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0;
|
|
L_0 = Manipulator_get_target_m2B0E5AA5012E1DCACBC74A10E582733128E7935B(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = VisualElement_get_pseudoStates_m097622852345CD39779967BAC5F0351E472AEC6E(L_1, NULL);
|
|
NullCheck(L_1);
|
|
VisualElement_set_pseudoStates_m58F2D1B61692BA0DC7E4F5F98864E8B6F78989BB(L_1, ((int32_t)((int32_t)L_2&((int32_t)-2))), 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.ImmediateModeException::.ctor(System.Exception)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ImmediateModeException__ctor_mB1863A2577598143D489C8FC956A89EB7BE45D74 (ImmediateModeException_t7A6F44A9035C26E64FF8BCD4964F7189506F063D* __this, Exception_t* ___0_inner, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Exception_t* L_0 = ___0_inner;
|
|
il2cpp_codegen_runtime_class_init_inline(Exception_t_il2cpp_TypeInfo_var);
|
|
Exception__ctor_m9BC141AAB08F47C34B7ED40C1A6C0C1ADDEC5CB3(__this, _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void UnityEngine.UIElements.DefaultGroupManager::OnOptionSelectionChanged(UnityEngine.UIElements.IGroupBoxOption)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultGroupManager_OnOptionSelectionChanged_m75693A6C54DA8614C56F0DB429427ACAB42397CF (DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157* __this, RuntimeObject* ___0_selectedOption, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m54D61812DE105E7F4C24E076AB25CEF9584EA380_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m3D3EF5A0D29EF3803BF56A7CEA227F429DF6B908_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mD71C654327EF0D36B08754E1B2E88D98B0C072FB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mB81904DD9F8BBAD002BD6BDFC99AB65DD09C64D5_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
RuntimeObject* V_2 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_SelectedOption_1;
|
|
RuntimeObject* L_1 = ___0_selectedOption;
|
|
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_005a;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
RuntimeObject* L_3 = ___0_selectedOption;
|
|
__this->___m_SelectedOption_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_SelectedOption_1), (void*)L_3);
|
|
List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* L_4 = __this->___m_GroupOptions_0;
|
|
NullCheck(L_4);
|
|
Enumerator_t362D96725DFEFD23AACF154B663C30BD0E4F09C4 L_5;
|
|
L_5 = List_1_GetEnumerator_mB81904DD9F8BBAD002BD6BDFC99AB65DD09C64D5(L_4, List_1_GetEnumerator_mB81904DD9F8BBAD002BD6BDFC99AB65DD09C64D5_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004b:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m54D61812DE105E7F4C24E076AB25CEF9584EA380((&V_1), Enumerator_Dispose_m54D61812DE105E7F4C24E076AB25CEF9584EA380_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0040_1;
|
|
}
|
|
|
|
IL_0026_1:
|
|
{
|
|
RuntimeObject* L_6;
|
|
L_6 = Enumerator_get_Current_mD71C654327EF0D36B08754E1B2E88D98B0C072FB_inline((&V_1), Enumerator_get_Current_mD71C654327EF0D36B08754E1B2E88D98B0C072FB_RuntimeMethod_var);
|
|
V_2 = L_6;
|
|
RuntimeObject* L_7 = V_2;
|
|
RuntimeObject* L_8 = V_2;
|
|
RuntimeObject* L_9 = __this->___m_SelectedOption_1;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker1< bool >::Invoke(0 /* System.Void UnityEngine.UIElements.IGroupBoxOption::SetSelected(System.Boolean) */, IGroupBoxOption_t87C0253B1BAC4D10D10F1A020EEC0DAA52D2F5B7_il2cpp_TypeInfo_var, L_7, (bool)((((RuntimeObject*)(RuntimeObject*)L_8) == ((RuntimeObject*)(RuntimeObject*)L_9))? 1 : 0));
|
|
}
|
|
|
|
IL_0040_1:
|
|
{
|
|
bool L_10;
|
|
L_10 = Enumerator_MoveNext_m3D3EF5A0D29EF3803BF56A7CEA227F429DF6B908((&V_1), Enumerator_MoveNext_m3D3EF5A0D29EF3803BF56A7CEA227F429DF6B908_RuntimeMethod_var);
|
|
if (L_10)
|
|
{
|
|
goto IL_0026_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.DefaultGroupManager::RegisterOption(UnityEngine.UIElements.IGroupBoxOption)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultGroupManager_RegisterOption_m415C309AF41595A4195CEDF2153C454028649A0A (DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157* __this, RuntimeObject* ___0_option, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mEC4AFB1C1B47B80C8CE673FC608034E0E1EE11FA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m79D8EB0D7DDAC8DBBB1AB267B3A968D575204315_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* L_0 = __this->___m_GroupOptions_0;
|
|
RuntimeObject* L_1 = ___0_option;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Contains_m79D8EB0D7DDAC8DBBB1AB267B3A968D575204315(L_0, L_1, List_1_Contains_m79D8EB0D7DDAC8DBBB1AB267B3A968D575204315_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* L_4 = __this->___m_GroupOptions_0;
|
|
RuntimeObject* L_5 = ___0_option;
|
|
NullCheck(L_4);
|
|
List_1_Add_mEC4AFB1C1B47B80C8CE673FC608034E0E1EE11FA_inline(L_4, L_5, List_1_Add_mEC4AFB1C1B47B80C8CE673FC608034E0E1EE11FA_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.DefaultGroupManager::UnregisterOption(UnityEngine.UIElements.IGroupBoxOption)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultGroupManager_UnregisterOption_m8B788A910DD823327F111B0150AB8236665B72AD (DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157* __this, RuntimeObject* ___0_option, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_mC512258925EB9D29B979DDA7BAFFFB9841276117_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* L_0 = __this->___m_GroupOptions_0;
|
|
RuntimeObject* L_1 = ___0_option;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Remove_mC512258925EB9D29B979DDA7BAFFFB9841276117(L_0, L_1, List_1_Remove_mC512258925EB9D29B979DDA7BAFFFB9841276117_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.DefaultGroupManager::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DefaultGroupManager__ctor_m94200A8E4477B3E5652C35E3C143DC2AEE9C1ED4 (DefaultGroupManager_t74642D7322ED5B8113DA5C8C35F66E302D701157* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m738CDEA3CD6005CFD260118E692A8B3B5FB9AE88_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941* L_0 = (List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941*)il2cpp_codegen_object_new(List_1_tA4AD03C94B5D6110E0839034F4906B6B022EF941_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m738CDEA3CD6005CFD260118E692A8B3B5FB9AE88(L_0, List_1__ctor_m738CDEA3CD6005CFD260118E692A8B3B5FB9AE88_RuntimeMethod_var);
|
|
__this->___m_GroupOptions_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_GroupOptions_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.Action UnityEngine.UIElements.IMGUIContainer::get_onGUIHandler()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* IMGUIContainer_get_onGUIHandler_mB8C7886B0E2B094D2D42F6E2C5CCAD4B131D64FA (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* V_0 = NULL;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___m_OnGUIHandler_65;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::set_onGUIHandler(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_set_onGUIHandler_mB08A4DDA7AE1A37E6BE5FAF1002DF87C1E291966 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = __this->___m_OnGUIHandler_65;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___0_value;
|
|
bool L_2;
|
|
L_2 = Delegate_op_Inequality_mA9EAADBA0C976289CCD49DC5A4BEDBB060B579E0(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = ___0_value;
|
|
__this->___m_OnGUIHandler_65 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_OnGUIHandler_65), (void*)L_4);
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, 8, NULL);
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, ((int32_t)2048), NULL);
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.ObjectGUIState UnityEngine.UIElements.IMGUIContainer::get_guiState()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* IMGUIContainer_get_guiState_mD3E0D5BD01664CB731040043A9C78B08C573BFD2 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __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*)&ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* V_1 = NULL;
|
|
{
|
|
bool L_0 = __this->___useOwnerObjectGUIState_67;
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0), NULL);
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* L_1 = __this->___m_ObjectGUIState_66;
|
|
V_0 = (bool)((((RuntimeObject*)(ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* L_3 = (ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15*)il2cpp_codegen_object_new(ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
ObjectGUIState__ctor_mA9AB2887ABAF5102164545D7F0CE59BCF05618B4(L_3, NULL);
|
|
__this->___m_ObjectGUIState_66 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ObjectGUIState_66), (void*)L_3);
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* L_4 = __this->___m_ObjectGUIState_66;
|
|
V_1 = L_4;
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.IMGUIContainer::get_lastWorldClip()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D IMGUIContainer_get_lastWorldClip_m8C52B289F6A977B23F442ADA3D3E6250D8115C6D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = __this->___U3ClastWorldClipU3Ek__BackingField_68;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::set_lastWorldClip(UnityEngine.Rect)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_set_lastWorldClip_mC822DD231DA4F87845FB5FAD4F5BB36CDE429AF6 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3ClastWorldClipU3Ek__BackingField_68 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::get_cullingEnabled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_get_cullingEnabled_mEDAF2AB7C37F2AB11C268BDFFB33718618FA237E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_CullingEnabled_69;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// UnityEngine.GUILayoutUtility/LayoutCache UnityEngine.UIElements.IMGUIContainer::get_cache()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* IMGUIContainer_get_cache_m69FF965A5AB8DE696430288B4E5EB2D3CB711969 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* V_1 = NULL;
|
|
{
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_0 = __this->___m_Cache_72;
|
|
V_0 = (bool)((((RuntimeObject*)(LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_2 = (LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60*)il2cpp_codegen_object_new(LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
LayoutCache__ctor_m73B4DC62A0A7669976C8444DDB54EF8D55BF3E0B(L_2, (-1), NULL);
|
|
__this->___m_Cache_72 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Cache_72), (void*)L_2);
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_3 = __this->___m_Cache_72;
|
|
V_1 = L_3;
|
|
goto IL_0023;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.IMGUIContainer::get_layoutMeasuredWidth()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float IMGUIContainer_get_layoutMeasuredWidth_mAEC590B17A0768CC86B13C3E574C725752881C64 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_0;
|
|
L_0 = IMGUIContainer_get_cache_m69FF965A5AB8DE696430288B4E5EB2D3CB711969(__this, NULL);
|
|
NullCheck(L_0);
|
|
GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D* L_1 = L_0->___topLevel_1;
|
|
NullCheck(L_1);
|
|
float L_2 = ((GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F*)L_1)->___maxWidth_1;
|
|
float L_3;
|
|
L_3 = ceilf(L_2);
|
|
V_0 = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Single UnityEngine.UIElements.IMGUIContainer::get_layoutMeasuredHeight()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float IMGUIContainer_get_layoutMeasuredHeight_m720CFD0987486CB4D9417004EE3D6B5D0ADFB76D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_0;
|
|
L_0 = IMGUIContainer_get_cache_m69FF965A5AB8DE696430288B4E5EB2D3CB711969(__this, NULL);
|
|
NullCheck(L_0);
|
|
GUILayoutGroup_tD08496E80F283C290B5B90D7BFB3C9C7CC33CD8D* L_1 = L_0->___topLevel_1;
|
|
NullCheck(L_1);
|
|
float L_2 = ((GUILayoutEntry_tDF59F19DD000820F64B356D5092C4BEDFE109D5F*)L_1)->___maxHeight_3;
|
|
float L_3;
|
|
L_3 = ceilf(L_2);
|
|
V_0 = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ContextType UnityEngine.UIElements.IMGUIContainer::get_contextType()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t IMGUIContainer_get_contextType_mAFDC442EF43FF0BB0DBD167A92B531DA8C6D290D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CcontextTypeU3Ek__BackingField_75;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::set_contextType(UnityEngine.UIElements.ContextType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_set_contextType_m937F47F6F399E6A209CFB3A25DDE6BCB0A2FB17F (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcontextTypeU3Ek__BackingField_75 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::get_focusOnlyIfHasFocusableControls()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_get_focusOnlyIfHasFocusableControls_mC1087D0F8DA51A70FD651042D1D8795DB4BE9E80 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CfocusOnlyIfHasFocusableControlsU3Ek__BackingField_81;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::get_canGrabFocus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_get_canGrabFocus_m41203D0EF4B7B8C60E95858ED70C38283899B118 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = IMGUIContainer_get_focusOnlyIfHasFocusableControls_mC1087D0F8DA51A70FD651042D1D8795DB4BE9E80_inline(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
bool L_1;
|
|
L_1 = VisualElement_get_canGrabFocus_m448AC85544D4CC6AD51B90AA08DECC90CF9725F4(__this, NULL);
|
|
G_B5_0 = ((int32_t)(L_1));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_2 = __this->___hasFocusableControls_79;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
bool L_3;
|
|
L_3 = VisualElement_get_canGrabFocus_m448AC85544D4CC6AD51B90AA08DECC90CF9725F4(__this, NULL);
|
|
G_B5_0 = ((int32_t)(L_3));
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
return (bool)G_B5_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer__cctor_m55023FA3ABEB43CF42FA46BF1D7C88CC44DB537D (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral209554CD387B18A1A4B25A7C3A6CF49F7B3B59C7);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral42A4AE30C0BBF599A8EA85A9DB39E3F2EE8F852C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral461F9F39B44884AD0FB62320475F3B244EF6E29B);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9981E7534F608A8FB12450BB6935B0079C0F8431);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA520348FB133A5E1587448A220CADEA2B6584782);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussClassName_82 = _stringLiteralA520348FB133A5E1587448A220CADEA2B6584782;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussClassName_82), (void*)_stringLiteralA520348FB133A5E1587448A220CADEA2B6584782);
|
|
il2cpp_codegen_runtime_class_init_inline(Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var);
|
|
String_t* L_0 = ((Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_StaticFields*)il2cpp_codegen_static_fields_for(Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var))->___ussClassName_70;
|
|
String_t* L_1 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussClassName_82;
|
|
String_t* L_2;
|
|
L_2 = String_Concat_m093934F71A9B351911EE46311674ED463B180006(L_0, _stringLiteral461F9F39B44884AD0FB62320475F3B244EF6E29B, L_1, _stringLiteral42A4AE30C0BBF599A8EA85A9DB39E3F2EE8F852C, NULL);
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassName_83 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassName_83), (void*)L_2);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_3), _stringLiteral9981E7534F608A8FB12450BB6935B0079C0F8431, /*hidden argument*/NULL);
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___k_OnGUIMarker_86 = L_3;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_4;
|
|
memset((&L_4), 0, sizeof(L_4));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_4), _stringLiteral209554CD387B18A1A4B25A7C3A6CF49F7B3B59C7, /*hidden argument*/NULL);
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___k_ImmediateCallbackMarker_87 = L_4;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_5 = (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)il2cpp_codegen_object_new(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4(L_5, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6 = L_5;
|
|
NullCheck(L_6);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_6, 8, NULL);
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_DefaultMeasureEvent_88 = L_6;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_DefaultMeasureEvent_88), (void*)L_6);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)il2cpp_codegen_object_new(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4(L_7, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_8 = L_7;
|
|
NullCheck(L_8);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_8, 8, NULL);
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_MeasureEvent_89 = L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_MeasureEvent_89), (void*)L_8);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_9 = (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)il2cpp_codegen_object_new(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4(L_9, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_10 = L_9;
|
|
NullCheck(L_10);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_10, 8, NULL);
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_CurrentEvent_90 = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_CurrentEvent_90), (void*)L_10);
|
|
int32_t L_11 = ((Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_StaticFields*)il2cpp_codegen_static_fields_for(Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var))->___ussFoldoutMaxDepth_77;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_12 = (List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD*)il2cpp_codegen_object_new(List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD_il2cpp_TypeInfo_var);
|
|
NullCheck(L_12);
|
|
List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF(L_12, ((int32_t)il2cpp_codegen_add(L_11, 1)), List_1__ctor_m1A062F45FE926079CE2D4FD38A3BF15F7AEB89AF_RuntimeMethod_var);
|
|
((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84), (void*)L_12);
|
|
V_0 = 0;
|
|
goto IL_00b4;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_13 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84;
|
|
String_t* L_14 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassName_83;
|
|
String_t* L_15;
|
|
L_15 = Int32_ToString_m030E01C24E294D6762FB0B6F37CB541581F55CA5((&V_0), NULL);
|
|
String_t* L_16;
|
|
L_16 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_14, L_15, NULL);
|
|
NullCheck(L_13);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_13, L_16, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
int32_t L_17 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_17, 1));
|
|
}
|
|
|
|
IL_00b4:
|
|
{
|
|
int32_t L_18 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var);
|
|
int32_t L_19 = ((Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_StaticFields*)il2cpp_codegen_static_fields_for(Foldout_t150CF00C27D0C105EC2831E0BA1C5D8A96EF5DC3_il2cpp_TypeInfo_var))->___ussFoldoutMaxDepth_77;
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_18) > ((int32_t)L_19))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_20 = V_1;
|
|
if (L_20)
|
|
{
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_21 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84;
|
|
String_t* L_22 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassName_83;
|
|
String_t* L_23;
|
|
L_23 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_22, _stringLiteral499284EE1D3CD7FE549A05AE5F4E78D079B96018, NULL);
|
|
NullCheck(L_21);
|
|
List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_inline(L_21, L_23, List_1_Add_mF10DB1D3CBB0B14215F0E4F8AB4934A1955E5351_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer__ctor_m9DE0C09521C25466BCA81033F5F622D3CCFB56A4 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
IMGUIContainer__ctor_m2700E6D656455D1D78D9A4AFEBADC1168D49198E(__this, (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)NULL, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::.ctor(System.Action)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer__ctor_m2700E6D656455D1D78D9A4AFEBADC1168D49198E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___0_onGUIHandler, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_OnGenerateVisualContent_m7FC27DE2A87FBAF5D7B20B246829C9789042CC49_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
__this->___m_CullingEnabled_69 = (bool)0;
|
|
__this->___m_IsFocusDelegated_70 = (bool)0;
|
|
__this->___m_RefreshCachedLayout_71 = (bool)1;
|
|
__this->___m_Cache_72 = (LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Cache_72), (void*)(LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60*)NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0;
|
|
L_0 = Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D(NULL);
|
|
__this->___m_CachedClippingRect_73 = L_0;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_1;
|
|
L_1 = Matrix4x4_get_identity_m6568A73831F3E2D587420D20FF423959D7D8AB56_inline(NULL);
|
|
__this->___m_CachedTransform_74 = L_1;
|
|
__this->___lostFocus_76 = (bool)0;
|
|
__this->___receivedFocus_77 = (bool)0;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2;
|
|
L_2 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
__this->___focusChangeDirection_78 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___focusChangeDirection_78), (void*)L_2);
|
|
__this->___hasFocusableControls_79 = (bool)0;
|
|
__this->___newKeyboardFocusControlID_80 = 0;
|
|
__this->___U3CfocusOnlyIfHasFocusableControlsU3Ek__BackingField_81 = (bool)1;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(__this, NULL);
|
|
((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)__this)->___isIMGUIContainer_5 = (bool)1;
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
String_t* L_3 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussClassName_82;
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(__this, L_3, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_4 = ___0_onGUIHandler;
|
|
IMGUIContainer_set_onGUIHandler_mB08A4DDA7AE1A37E6BE5FAF1002DF87C1E291966(__this, L_4, NULL);
|
|
IMGUIContainer_set_contextType_m937F47F6F399E6A209CFB3A25DDE6BCB0A2FB17F_inline(__this, 1, NULL);
|
|
Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline(__this, (bool)1, NULL);
|
|
VisualElement_set_requireMeasureFunction_mE3D5BF29B294B0BBB7422D53743A5A5B6E35178B(__this, (bool)1, NULL);
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* L_5;
|
|
L_5 = VisualElement_get_generateVisualContent_m11390D5634144E49934046B08681F7B7F0A94986_inline(__this, NULL);
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* L_6 = (Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B*)il2cpp_codegen_object_new(Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_6);
|
|
Action_1__ctor_m5C07588C369385A2FE8666A6C07F46762049C6AC(L_6, __this, (intptr_t)((void*)IMGUIContainer_OnGenerateVisualContent_m7FC27DE2A87FBAF5D7B20B246829C9789042CC49_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_7;
|
|
L_7 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_5, L_6, NULL);
|
|
VisualElement_set_generateVisualContent_m1D95FEC130DF500C82FAAC2537BBF7FEE2519C15_inline(__this, ((Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B*)Castclass((RuntimeObject*)L_7, Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var)), NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::OnGenerateVisualContent(UnityEngine.UIElements.MeshGenerationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_OnGenerateVisualContent_m7FC27DE2A87FBAF5D7B20B246829C9789042CC49 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62* ___0_mgc, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_DoIMGUIRepaint_m0BAA4611CEBEA76DDA64F0202943CE283BC6CB24_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStylePainter_t0B2A07F3DA2AD05641C95841817F32B352E464E6_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_0;
|
|
L_0 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
RepaintData_t90534752135661579EC254884F550545D001B5EA* L_1;
|
|
L_1 = VirtualFuncInvoker0< RepaintData_t90534752135661579EC254884F550545D001B5EA* >::Invoke(30 /* UnityEngine.UIElements.RepaintData UnityEngine.UIElements.BaseVisualElementPanel::get_repaintData() */, L_0);
|
|
NullCheck(L_1);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_2;
|
|
L_2 = RepaintData_get_currentWorldClip_mE52CAF22424660749DDE20C3E02B15E735FC05DF_inline(L_1, NULL);
|
|
IMGUIContainer_set_lastWorldClip_mC822DD231DA4F87845FB5FAD4F5BB36CDE429AF6_inline(__this, L_2, NULL);
|
|
MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62* L_3 = ___0_mgc;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4 = L_3->___painter_0;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_5 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_5, __this, (intptr_t)((void*)IMGUIContainer_DoIMGUIRepaint_m0BAA4611CEBEA76DDA64F0202943CE283BC6CB24_RuntimeMethod_var), NULL);
|
|
bool L_6;
|
|
L_6 = IMGUIContainer_get_cullingEnabled_mEDAF2AB7C37F2AB11C268BDFFB33718618FA237E(__this, NULL);
|
|
NullCheck(L_4);
|
|
InterfaceActionInvoker2< Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*, bool >::Invoke(2 /* System.Void UnityEngine.UIElements.IStylePainter::DrawImmediate(System.Action,System.Boolean) */, IStylePainter_t0B2A07F3DA2AD05641C95841817F32B352E464E6_il2cpp_TypeInfo_var, L_4, L_5, L_6);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::SaveGlobals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_SaveGlobals_m7662036CE69A8680EE0F3E9FF4B761A2388E6A3C (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_0 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
il2cpp_codegen_runtime_class_init_inline(GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_1;
|
|
L_1 = GUI_get_matrix_m3CA02DED0598EE32BD9E66CA533A78EFB0A246FC(NULL);
|
|
L_0->___matrix_0 = L_1;
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_2 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3;
|
|
L_3 = GUI_get_color_m15488B4AD785D10DEB5C66398D0FA9A0C0EA7ABB(NULL);
|
|
L_2->___color_1 = L_3;
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_4 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5;
|
|
L_5 = GUI_get_contentColor_m32B15C8D6BEEFEBCE667ECD3CF664C83224F103F(NULL);
|
|
L_4->___contentColor_2 = L_5;
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_6 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7;
|
|
L_7 = GUI_get_backgroundColor_mCAA42085DAB8A1B71E2D0C6C8D86F93CD311FA33(NULL);
|
|
L_6->___backgroundColor_3 = L_7;
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_8 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
bool L_9;
|
|
L_9 = GUI_get_enabled_m336E115A84DBD8D18A925D0755B51746B98B516D(NULL);
|
|
L_8->___enabled_4 = L_9;
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_10 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
bool L_11;
|
|
L_11 = GUI_get_changed_m3473B2964DCE8C2ADE081517093168C171BBE448(NULL);
|
|
L_10->___changed_5 = L_11;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_12;
|
|
L_12 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_12) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_13 = V_0;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_14 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_15;
|
|
L_15 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = Event_get_displayIndex_m7DBF1B18DD9B5E5B4EEA979FCA87351E3E5B16C3(L_15, NULL);
|
|
L_14->___displayIndex_6 = L_16;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::RestoreGlobals()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_RestoreGlobals_m04BA5ACEE189911C1CFF951701BF0BDB191E1026 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_0 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_1 = L_0->___matrix_0;
|
|
il2cpp_codegen_runtime_class_init_inline(GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var);
|
|
GUI_set_matrix_m7759FEC96FBCB97E02B1BA44D2EC1B3FEEFA257F(L_1, NULL);
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_2 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_3 = L_2->___color_1;
|
|
GUI_set_color_mA44927D3F2ACB1E228815F10042A6F62B7645648(L_3, NULL);
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_4 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5 = L_4->___contentColor_2;
|
|
GUI_set_contentColor_m3CDC4D626AC8B6D487AD19765D79C593B98AEF26(L_5, NULL);
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_6 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = L_6->___backgroundColor_3;
|
|
GUI_set_backgroundColor_m4ED80300A7DE3EAF923E3344E22D6682FA75B264(L_7, NULL);
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_8 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
bool L_9 = L_8->___enabled_4;
|
|
GUI_set_enabled_mF2F99A6870ACAFAEFB5E8FF1B69C684951D390C9(L_9, NULL);
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_10 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
bool L_11 = L_10->___changed_5;
|
|
GUI_set_changed_mBD91A44AFA77D2BF883B3150AF4AE6AC3ED121DC(L_11, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_12;
|
|
L_12 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
V_0 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_12) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_13 = V_0;
|
|
if (!L_13)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_14;
|
|
L_14 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10* L_15 = (GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10*)(&__this->___m_GUIGlobals_85);
|
|
int32_t L_16 = L_15->___displayIndex_6;
|
|
NullCheck(L_14);
|
|
Event_set_displayIndex_m8208F1B0471C0B45C0BB248F9A0178EB40FBE100(L_14, L_16, NULL);
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::DoOnGUI(UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Boolean,UnityEngine.Rect,System.Action,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_DoOnGUI_mDF396AFB9BB8C4E4738AECA40F7F5A6192F9C645 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_evt, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_parentTransform, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___2_clippingRect, bool ___3_isComputingLayout, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___4_layoutSize, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___5_onGUIHandler, bool ___6_canAffectFocus, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_U3CDoOnGUIU3Eb__56_0_mC0F063A87D4918330ECE340E3D170D023520F2F9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_GetPooled_m2A3CDA8BEAE1A4DD06BD2B6FDF65F77F27369F45_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA9E0268649535EDEE2FE85B30622276BD85E302C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC00C92E779AF7F150507676512B2BC5D20A14BDE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
float V_1 = 0.0f;
|
|
float V_2 = 0.0f;
|
|
int32_t V_3 = 0;
|
|
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;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52 V_18;
|
|
memset((&V_18), 0, sizeof(V_18));
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_20;
|
|
memset((&V_20), 0, sizeof(V_20));
|
|
Exception_t* V_21 = NULL;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
bool V_24 = false;
|
|
int32_t V_25 = 0;
|
|
int32_t V_26 = 0;
|
|
bool V_27 = false;
|
|
bool V_28 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_29 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_30 = NULL;
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* V_31 = NULL;
|
|
bool V_32 = false;
|
|
bool V_33 = false;
|
|
bool V_34 = false;
|
|
bool V_35 = false;
|
|
bool V_36 = false;
|
|
bool V_37 = false;
|
|
bool V_38 = false;
|
|
bool V_39 = false;
|
|
bool V_40 = false;
|
|
bool V_41 = false;
|
|
bool V_42 = false;
|
|
bool V_43 = false;
|
|
bool V_44 = false;
|
|
bool V_45 = false;
|
|
int32_t V_46 = 0;
|
|
bool V_47 = false;
|
|
bool V_48 = false;
|
|
bool V_49 = false;
|
|
bool V_50 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B17_0 = 0;
|
|
int32_t G_B26_0 = 0;
|
|
int32_t G_B33_0 = 0;
|
|
int32_t G_B58_0 = 0;
|
|
int32_t G_B58_1 = 0;
|
|
int32_t G_B57_0 = 0;
|
|
int32_t G_B57_1 = 0;
|
|
int32_t G_B59_0 = 0;
|
|
int32_t G_B59_1 = 0;
|
|
int32_t G_B59_2 = 0;
|
|
int32_t G_B80_0 = 0;
|
|
int32_t G_B85_0 = 0;
|
|
int32_t G_B100_0 = 0;
|
|
int32_t G_B102_0 = 0;
|
|
int32_t G_B106_0 = 0;
|
|
int32_t G_B114_0 = 0;
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_0 = ___5_onGUIHandler;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1;
|
|
L_1 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(__this, NULL);
|
|
G_B3_0 = ((((RuntimeObject*)(RuntimeObject*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
V_5 = (bool)G_B3_0;
|
|
bool L_2 = V_5;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0592;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_3;
|
|
L_3 = GUIClip_Internal_GetCount_m83C187F97642C73B9241C9A026CDA89A7A9EB8D1(NULL);
|
|
V_0 = L_3;
|
|
IMGUIContainer_SaveGlobals_m7662036CE69A8680EE0F3E9FF4B761A2388E6A3C(__this, NULL);
|
|
float L_4;
|
|
L_4 = IMGUIContainer_get_layoutMeasuredWidth_mAEC590B17A0768CC86B13C3E574C725752881C64(__this, NULL);
|
|
V_1 = L_4;
|
|
float L_5;
|
|
L_5 = IMGUIContainer_get_layoutMeasuredHeight_m720CFD0987486CB4D9417004EE3D6B5D0ADFB76D(__this, NULL);
|
|
V_2 = L_5;
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_6;
|
|
L_6 = IMGUIContainer_get_cache_m69FF965A5AB8DE696430288B4E5EB2D3CB711969(__this, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ___0_evt;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_il2cpp_TypeInfo_var);
|
|
UIElementsUtility_BeginContainerGUI_m5C6B184089BBDF8BA384DF8C77FBBC7040539FB9(L_6, L_7, __this, NULL);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_8 = ((UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_StaticFields*)il2cpp_codegen_static_fields_for(UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_il2cpp_TypeInfo_var))->___editorPlayModeTintColor_3;
|
|
il2cpp_codegen_runtime_class_init_inline(GUI_tA9CDB3D69DB13D51AD83ABDB587EF95947EC2D2A_il2cpp_TypeInfo_var);
|
|
GUI_set_color_mA44927D3F2ACB1E228815F10042A6F62B7645648(L_8, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_9;
|
|
L_9 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_9, NULL);
|
|
V_6 = (bool)((((int32_t)((((int32_t)L_10) == ((int32_t)8))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_11 = V_6;
|
|
if (!L_11)
|
|
{
|
|
goto IL_01c6;
|
|
}
|
|
}
|
|
{
|
|
bool L_12 = __this->___lostFocus_76;
|
|
V_7 = L_12;
|
|
bool L_13 = V_7;
|
|
if (!L_13)
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_14;
|
|
L_14 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
V_8 = (bool)((!(((RuntimeObject*)(FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)L_14) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_15 = V_8;
|
|
if (!L_15)
|
|
{
|
|
goto IL_00af;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_16;
|
|
L_16 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
bool L_17;
|
|
L_17 = GUIUtility_OwnsId_m46FE01F2CEF3A94173A1DB64A888E4DB1EBC74D2(L_16, NULL);
|
|
V_9 = L_17;
|
|
bool L_18 = V_9;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00ae;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_set_keyboardControl_m10F53FE5B292C2DC3C9A55CB504CC0DF36139465(0, NULL);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_19;
|
|
L_19 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
NullCheck(L_19);
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(L_19, 0, NULL);
|
|
}
|
|
|
|
IL_00ae:
|
|
{
|
|
}
|
|
|
|
IL_00af:
|
|
{
|
|
__this->___lostFocus_76 = (bool)0;
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
bool L_20 = __this->___receivedFocus_77;
|
|
V_10 = L_20;
|
|
bool L_21 = V_10;
|
|
if (!L_21)
|
|
{
|
|
goto IL_01c5;
|
|
}
|
|
}
|
|
{
|
|
bool L_22 = __this->___hasFocusableControls_79;
|
|
V_11 = L_22;
|
|
bool L_23 = V_11;
|
|
if (!L_23)
|
|
{
|
|
goto IL_0158;
|
|
}
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_24 = __this->___focusChangeDirection_78;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_25;
|
|
L_25 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
if ((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_24) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_25)))
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_26 = __this->___focusChangeDirection_78;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_27;
|
|
L_27 = FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline(NULL);
|
|
G_B17_0 = ((((int32_t)((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_26) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_27))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00f7;
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
G_B17_0 = 0;
|
|
}
|
|
|
|
IL_00f7:
|
|
{
|
|
V_12 = (bool)G_B17_0;
|
|
bool L_28 = V_12;
|
|
if (!L_28)
|
|
{
|
|
goto IL_0139;
|
|
}
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_29 = __this->___focusChangeDirection_78;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_30;
|
|
L_30 = VisualElementFocusChangeDirection_get_left_mC921347E5D037C1D96D254C565831368C7C00183_inline(NULL);
|
|
V_13 = (bool)((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_29) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_30))? 1 : 0);
|
|
bool L_31 = V_13;
|
|
if (!L_31)
|
|
{
|
|
goto IL_011b;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_SetKeyboardControlToLastControlId_mB7A3C208ADDF009FB9C3C522998459BCD9B107EB(NULL);
|
|
goto IL_0136;
|
|
}
|
|
|
|
IL_011b:
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_32 = __this->___focusChangeDirection_78;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_33;
|
|
L_33 = VisualElementFocusChangeDirection_get_right_m7ABCCCB1E11E601279097312838B4CB93AC9BD9F_inline(NULL);
|
|
V_14 = (bool)((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_32) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_33))? 1 : 0);
|
|
bool L_34 = V_14;
|
|
if (!L_34)
|
|
{
|
|
goto IL_0136;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_SetKeyboardControlToFirstControlId_m02DF215A0F07822021E17AF4153B4C31468287C0(NULL);
|
|
}
|
|
|
|
IL_0136:
|
|
{
|
|
goto IL_0157;
|
|
}
|
|
|
|
IL_0139:
|
|
{
|
|
int32_t L_35;
|
|
L_35 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
if (L_35)
|
|
{
|
|
goto IL_0148;
|
|
}
|
|
}
|
|
{
|
|
bool L_36 = __this->___m_IsFocusDelegated_70;
|
|
G_B26_0 = ((int32_t)(L_36));
|
|
goto IL_0149;
|
|
}
|
|
|
|
IL_0148:
|
|
{
|
|
G_B26_0 = 0;
|
|
}
|
|
|
|
IL_0149:
|
|
{
|
|
V_15 = (bool)G_B26_0;
|
|
bool L_37 = V_15;
|
|
if (!L_37)
|
|
{
|
|
goto IL_0157;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_SetKeyboardControlToFirstControlId_m02DF215A0F07822021E17AF4153B4C31468287C0(NULL);
|
|
}
|
|
|
|
IL_0157:
|
|
{
|
|
}
|
|
|
|
IL_0158:
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_38;
|
|
L_38 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
V_16 = (bool)((!(((RuntimeObject*)(FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)L_38) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_39 = V_16;
|
|
if (!L_39)
|
|
{
|
|
goto IL_01b2;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_40;
|
|
L_40 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
NullCheck(L_40);
|
|
int32_t L_41;
|
|
L_41 = FocusController_get_imguiKeyboardControl_mE4C649D44C402954EE90C4B648A0EA349A999AEA_inline(L_40, NULL);
|
|
int32_t L_42;
|
|
L_42 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
if ((((int32_t)L_41) == ((int32_t)L_42)))
|
|
{
|
|
goto IL_018c;
|
|
}
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_43 = __this->___focusChangeDirection_78;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_44;
|
|
L_44 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
G_B33_0 = ((((int32_t)((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_43) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_44))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_018d;
|
|
}
|
|
|
|
IL_018c:
|
|
{
|
|
G_B33_0 = 0;
|
|
}
|
|
|
|
IL_018d:
|
|
{
|
|
V_17 = (bool)G_B33_0;
|
|
bool L_45 = V_17;
|
|
if (!L_45)
|
|
{
|
|
goto IL_01a0;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_46;
|
|
L_46 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
__this->___newKeyboardFocusControlID_80 = L_46;
|
|
}
|
|
|
|
IL_01a0:
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_47;
|
|
L_47 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
int32_t L_48;
|
|
L_48 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
NullCheck(L_47);
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(L_47, L_48, NULL);
|
|
}
|
|
|
|
IL_01b2:
|
|
{
|
|
__this->___receivedFocus_77 = (bool)0;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_49;
|
|
L_49 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
__this->___focusChangeDirection_78 = L_49;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___focusChangeDirection_78), (void*)L_49);
|
|
}
|
|
|
|
IL_01c5:
|
|
{
|
|
}
|
|
|
|
IL_01c6:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_50;
|
|
L_50 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
NullCheck(L_50);
|
|
int32_t L_51;
|
|
L_51 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_50, NULL);
|
|
V_3 = L_51;
|
|
V_4 = (bool)0;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0259:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_52;
|
|
L_52 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
NullCheck(L_52);
|
|
int32_t L_53;
|
|
L_53 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_52, NULL);
|
|
bool L_54 = ___6_canAffectFocus;
|
|
V_24 = (bool)((int32_t)(((((int32_t)((((int32_t)L_53) == ((int32_t)8))? 1 : 0)) == ((int32_t)0))? 1 : 0)&(int32_t)L_54));
|
|
bool L_55 = V_24;
|
|
if (!L_55)
|
|
{
|
|
goto IL_047a;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_56;
|
|
L_56 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
V_25 = L_56;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_57;
|
|
L_57 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
int32_t L_58;
|
|
L_58 = GUIUtility_CheckForTabEvent_m6AC98E67A89330ACB330CBBC135E3DFBFCAC2C49(L_57, NULL);
|
|
V_26 = L_58;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_59;
|
|
L_59 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
V_27 = (bool)((!(((RuntimeObject*)(FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)L_59) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_60 = V_27;
|
|
if (!L_60)
|
|
{
|
|
goto IL_046e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_61 = V_26;
|
|
V_28 = (bool)((((int32_t)L_61) < ((int32_t)0))? 1 : 0);
|
|
bool L_62 = V_28;
|
|
if (!L_62)
|
|
{
|
|
goto IL_036d;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_63;
|
|
L_63 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
NullCheck(L_63);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_64;
|
|
L_64 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_63, NULL);
|
|
V_29 = L_64;
|
|
V_30 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
int32_t L_65 = V_26;
|
|
G_B57_0 = ((int32_t)9);
|
|
G_B57_1 = ((int32_t)9);
|
|
if ((((int32_t)L_65) == ((int32_t)(-1))))
|
|
{
|
|
G_B58_0 = ((int32_t)9);
|
|
G_B58_1 = ((int32_t)9);
|
|
goto IL_02c8;
|
|
}
|
|
}
|
|
{
|
|
G_B59_0 = 1;
|
|
G_B59_1 = G_B57_0;
|
|
G_B59_2 = G_B57_1;
|
|
goto IL_02c9;
|
|
}
|
|
|
|
IL_02c8:
|
|
{
|
|
G_B59_0 = 0;
|
|
G_B59_1 = G_B58_0;
|
|
G_B59_2 = G_B58_1;
|
|
}
|
|
|
|
IL_02c9:
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_66;
|
|
L_66 = KeyboardEventBase_1_GetPooled_m2A3CDA8BEAE1A4DD06BD2B6FDF65F77F27369F45(G_B59_2, G_B59_1, G_B59_0, KeyboardEventBase_1_GetPooled_m2A3CDA8BEAE1A4DD06BD2B6FDF65F77F27369F45_RuntimeMethod_var);
|
|
V_31 = L_66;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_02e3:
|
|
{// begin finally (depth: 2)
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_67 = V_31;
|
|
if (!L_67)
|
|
{
|
|
goto IL_02ef;
|
|
}
|
|
}
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_68 = V_31;
|
|
NullCheck(L_68);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_68);
|
|
}
|
|
|
|
IL_02ef:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_69;
|
|
L_69 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_70 = V_31;
|
|
NullCheck(L_69);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_71;
|
|
L_71 = FocusController_SwitchFocusOnEvent_m232D08BF98D608576E1B00506B02C21B37B09FFD(L_69, L_70, NULL);
|
|
V_30 = L_71;
|
|
goto IL_02f0;
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_02f0:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_72 = V_29;
|
|
V_32 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_72) == ((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)__this))? 1 : 0);
|
|
bool L_73 = V_32;
|
|
if (!L_73)
|
|
{
|
|
goto IL_0367;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_74 = V_30;
|
|
V_33 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_74) == ((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)__this))? 1 : 0);
|
|
bool L_75 = V_33;
|
|
if (!L_75)
|
|
{
|
|
goto IL_0350;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_76 = V_26;
|
|
V_34 = (bool)((((int32_t)L_76) == ((int32_t)((int32_t)-2)))? 1 : 0);
|
|
bool L_77 = V_34;
|
|
if (!L_77)
|
|
{
|
|
goto IL_031e;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_SetKeyboardControlToLastControlId_mB7A3C208ADDF009FB9C3C522998459BCD9B107EB(NULL);
|
|
goto IL_0331;
|
|
}
|
|
|
|
IL_031e:
|
|
{
|
|
int32_t L_78 = V_26;
|
|
V_35 = (bool)((((int32_t)L_78) == ((int32_t)(-1)))? 1 : 0);
|
|
bool L_79 = V_35;
|
|
if (!L_79)
|
|
{
|
|
goto IL_0331;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_SetKeyboardControlToFirstControlId_m02DF215A0F07822021E17AF4153B4C31468287C0(NULL);
|
|
}
|
|
|
|
IL_0331:
|
|
{
|
|
int32_t L_80;
|
|
L_80 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
__this->___newKeyboardFocusControlID_80 = L_80;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_81;
|
|
L_81 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
int32_t L_82;
|
|
L_82 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
NullCheck(L_81);
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(L_81, L_82, NULL);
|
|
goto IL_0366;
|
|
}
|
|
|
|
IL_0350:
|
|
{
|
|
GUIUtility_set_keyboardControl_m10F53FE5B292C2DC3C9A55CB504CC0DF36139465(0, NULL);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_83;
|
|
L_83 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
NullCheck(L_83);
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(L_83, 0, NULL);
|
|
}
|
|
|
|
IL_0366:
|
|
{
|
|
}
|
|
|
|
IL_0367:
|
|
{
|
|
goto IL_046d;
|
|
}
|
|
|
|
IL_036d:
|
|
{
|
|
int32_t L_84 = V_26;
|
|
V_36 = (bool)((((int32_t)L_84) > ((int32_t)0))? 1 : 0);
|
|
bool L_85 = V_36;
|
|
if (!L_85)
|
|
{
|
|
goto IL_039b;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_86;
|
|
L_86 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
int32_t L_87;
|
|
L_87 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
NullCheck(L_86);
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(L_86, L_87, NULL);
|
|
int32_t L_88;
|
|
L_88 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
__this->___newKeyboardFocusControlID_80 = L_88;
|
|
goto IL_046d;
|
|
}
|
|
|
|
IL_039b:
|
|
{
|
|
int32_t L_89 = V_26;
|
|
V_37 = (bool)((((int32_t)L_89) == ((int32_t)0))? 1 : 0);
|
|
bool L_90 = V_37;
|
|
if (!L_90)
|
|
{
|
|
goto IL_046d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_91 = V_3;
|
|
if (L_91)
|
|
{
|
|
goto IL_03b8;
|
|
}
|
|
}
|
|
{
|
|
bool L_92;
|
|
L_92 = IMGUIContainer_get_focusOnlyIfHasFocusableControls_mC1087D0F8DA51A70FD651042D1D8795DB4BE9E80_inline(__this, NULL);
|
|
G_B80_0 = ((((int32_t)L_92) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03b9;
|
|
}
|
|
|
|
IL_03b8:
|
|
{
|
|
G_B80_0 = 0;
|
|
}
|
|
|
|
IL_03b9:
|
|
{
|
|
V_38 = (bool)G_B80_0;
|
|
bool L_93 = V_38;
|
|
if (!L_93)
|
|
{
|
|
goto IL_03d9;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_94;
|
|
L_94 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
int32_t L_95;
|
|
L_95 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
NullCheck(L_94);
|
|
FocusController_SyncIMGUIFocus_m3F9F2EB6DAE3E833A9D8299A55B171EEB823ACEF(L_94, L_95, __this, (bool)1, NULL);
|
|
goto IL_046c;
|
|
}
|
|
|
|
IL_03d9:
|
|
{
|
|
int32_t L_96 = V_25;
|
|
int32_t L_97;
|
|
L_97 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
if ((!(((uint32_t)L_96) == ((uint32_t)L_97))))
|
|
{
|
|
goto IL_03e8;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_98 = V_3;
|
|
G_B85_0 = ((((int32_t)L_98) == ((int32_t)0))? 1 : 0);
|
|
goto IL_03e9;
|
|
}
|
|
|
|
IL_03e8:
|
|
{
|
|
G_B85_0 = 1;
|
|
}
|
|
|
|
IL_03e9:
|
|
{
|
|
V_39 = (bool)G_B85_0;
|
|
bool L_99 = V_39;
|
|
if (!L_99)
|
|
{
|
|
goto IL_0406;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_100;
|
|
L_100 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
int32_t L_101;
|
|
L_101 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
NullCheck(L_100);
|
|
FocusController_SyncIMGUIFocus_m3F9F2EB6DAE3E833A9D8299A55B171EEB823ACEF(L_100, L_101, __this, (bool)0, NULL);
|
|
goto IL_046c;
|
|
}
|
|
|
|
IL_0406:
|
|
{
|
|
int32_t L_102;
|
|
L_102 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_103;
|
|
L_103 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
NullCheck(L_103);
|
|
int32_t L_104;
|
|
L_104 = FocusController_get_imguiKeyboardControl_mE4C649D44C402954EE90C4B648A0EA349A999AEA_inline(L_103, NULL);
|
|
V_40 = (bool)((((int32_t)((((int32_t)L_102) == ((int32_t)L_104))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_105 = V_40;
|
|
if (!L_105)
|
|
{
|
|
goto IL_046c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_106;
|
|
L_106 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
__this->___newKeyboardFocusControlID_80 = L_106;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_107;
|
|
L_107 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
NullCheck(L_107);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_108;
|
|
L_108 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(L_107, NULL);
|
|
V_41 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_108) == ((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)__this))? 1 : 0);
|
|
bool L_109 = V_41;
|
|
if (!L_109)
|
|
{
|
|
goto IL_0456;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_110;
|
|
L_110 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
int32_t L_111;
|
|
L_111 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
NullCheck(L_110);
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(L_110, L_111, NULL);
|
|
goto IL_046b;
|
|
}
|
|
|
|
IL_0456:
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_112;
|
|
L_112 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
int32_t L_113;
|
|
L_113 = GUIUtility_get_keyboardControl_mB0FAC848390B7F163CD2EE0A911FADD5CAD70B1E(NULL);
|
|
NullCheck(L_112);
|
|
FocusController_SyncIMGUIFocus_m3F9F2EB6DAE3E833A9D8299A55B171EEB823ACEF(L_112, L_113, __this, (bool)0, NULL);
|
|
}
|
|
|
|
IL_046b:
|
|
{
|
|
}
|
|
|
|
IL_046c:
|
|
{
|
|
}
|
|
|
|
IL_046d:
|
|
{
|
|
}
|
|
|
|
IL_046e:
|
|
{
|
|
bool L_114;
|
|
L_114 = GUIUtility_HasFocusableControls_mE149711C5695D4DB44940D8073487992F1ACB883(NULL);
|
|
__this->___hasFocusableControls_79 = L_114;
|
|
}
|
|
|
|
IL_047a:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_115 = ___1_parentTransform;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_116 = ___2_clippingRect;
|
|
ParentClipScope_tDAB1300C623213518730D926A970098BECFD9C52 L_117;
|
|
memset((&L_117), 0, sizeof(L_117));
|
|
ParentClipScope__ctor_m5251E311D308625C438134442CA69D75E872DCD4((&L_117), L_115, L_116, /*hidden argument*/NULL);
|
|
V_18 = L_117;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_020d_2:
|
|
{// begin finally (depth: 3)
|
|
ParentClipScope_Dispose_m39F5E11A8E9346D5ADE850A5A600A675589E786D((&V_18), NULL);
|
|
return;
|
|
}// end finally (depth: 3)
|
|
});
|
|
try
|
|
{// begin try (depth: 3)
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_118 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___k_OnGUIMarker_86;
|
|
V_20 = L_118;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_119;
|
|
L_119 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_20), NULL);
|
|
V_19 = L_119;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01fb_3:
|
|
{// begin finally (depth: 4)
|
|
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_19), NULL);
|
|
return;
|
|
}// end finally (depth: 4)
|
|
});
|
|
try
|
|
{// begin try (depth: 4)
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_120 = ___5_onGUIHandler;
|
|
NullCheck(L_120);
|
|
Action_Invoke_m7126A54DACA72B845424072887B5F3A51FC3808E_inline(L_120, NULL);
|
|
goto IL_020a_3;
|
|
}// end try (depth: 4)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_020a_3:
|
|
{
|
|
goto IL_021c_2;
|
|
}
|
|
}// end try (depth: 3)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_021c_2:
|
|
{
|
|
goto IL_0254_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Exception_t_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_021f_1;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_021f_1:
|
|
{// begin catch(System.Exception)
|
|
{
|
|
Exception_t* L_121 = ((Exception_t*)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t*));;
|
|
V_21 = L_121;
|
|
int32_t L_122 = V_3;
|
|
V_22 = (bool)((((int32_t)L_122) == ((int32_t)8))? 1 : 0);
|
|
bool L_123 = V_22;
|
|
if (!L_123)
|
|
{
|
|
goto IL_024e_1;
|
|
}
|
|
}
|
|
{
|
|
Exception_t* L_124 = V_21;
|
|
bool L_125;
|
|
L_125 = GUIUtility_IsExitGUIException_mB887DAF961E8C1124916777B812FBF2324F5265F(L_124, NULL);
|
|
V_4 = L_125;
|
|
bool L_126 = V_4;
|
|
V_23 = (bool)((((int32_t)L_126) == ((int32_t)0))? 1 : 0);
|
|
bool L_127 = V_23;
|
|
if (!L_127)
|
|
{
|
|
goto IL_024b_1;
|
|
}
|
|
}
|
|
{
|
|
Exception_t* L_128 = V_21;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_LogException_mAB3F4DC7297ED8FBB49DAA718B70E59A6B0171B0(L_128, NULL);
|
|
}
|
|
|
|
IL_024b_1:
|
|
{
|
|
goto IL_0251_1;
|
|
}
|
|
|
|
IL_024e_1:
|
|
{
|
|
IL2CPP_RETHROW_MANAGED_EXCEPTION(IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*));
|
|
}
|
|
|
|
IL_0251_1:
|
|
{
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_0254_1;
|
|
}
|
|
}// end catch (depth: 2)
|
|
|
|
IL_0254_1:
|
|
{
|
|
goto IL_047c;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_047c:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_129 = ___0_evt;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_130 = ___4_layoutSize;
|
|
il2cpp_codegen_runtime_class_init_inline(UIElementsUtility_t03323144D50362C6BF96652D3355728749769293_il2cpp_TypeInfo_var);
|
|
UIElementsUtility_EndContainerGUI_m7E5929AE50C4DB7194E3B8613980F75F89CA6310(L_129, L_130, NULL);
|
|
IMGUIContainer_RestoreGlobals_m04BA5ACEE189911C1CFF951701BF0BDB191E1026(__this, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_131 = ___0_evt;
|
|
NullCheck(L_131);
|
|
int32_t L_132;
|
|
L_132 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_131, NULL);
|
|
if ((!(((uint32_t)L_132) == ((uint32_t)8))))
|
|
{
|
|
goto IL_04b7;
|
|
}
|
|
}
|
|
{
|
|
float L_133 = V_1;
|
|
float L_134;
|
|
L_134 = IMGUIContainer_get_layoutMeasuredWidth_mAEC590B17A0768CC86B13C3E574C725752881C64(__this, NULL);
|
|
bool L_135;
|
|
L_135 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_133, L_134, NULL);
|
|
if (!L_135)
|
|
{
|
|
goto IL_04b4;
|
|
}
|
|
}
|
|
{
|
|
float L_136 = V_2;
|
|
float L_137;
|
|
L_137 = IMGUIContainer_get_layoutMeasuredHeight_m720CFD0987486CB4D9417004EE3D6B5D0ADFB76D(__this, NULL);
|
|
bool L_138;
|
|
L_138 = Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline(L_136, L_137, NULL);
|
|
G_B100_0 = ((((int32_t)L_138) == ((int32_t)0))? 1 : 0);
|
|
goto IL_04b5;
|
|
}
|
|
|
|
IL_04b4:
|
|
{
|
|
G_B100_0 = 1;
|
|
}
|
|
|
|
IL_04b5:
|
|
{
|
|
G_B102_0 = G_B100_0;
|
|
goto IL_04b8;
|
|
}
|
|
|
|
IL_04b7:
|
|
{
|
|
G_B102_0 = 0;
|
|
}
|
|
|
|
IL_04b8:
|
|
{
|
|
V_42 = (bool)G_B102_0;
|
|
bool L_139 = V_42;
|
|
if (!L_139)
|
|
{
|
|
goto IL_04fa;
|
|
}
|
|
}
|
|
{
|
|
bool L_140 = ___3_isComputingLayout;
|
|
if (!L_140)
|
|
{
|
|
goto IL_04d0;
|
|
}
|
|
}
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_141 = ___2_clippingRect;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_142;
|
|
L_142 = Rect_get_zero_m5341D8B63DEF1F4C308A685EEC8CFEA12A396C8D(NULL);
|
|
bool L_143;
|
|
L_143 = Rect_op_Equality_mF2A038255CAF5F1E86079B9EE0FC96DE54307C1F(L_141, L_142, NULL);
|
|
G_B106_0 = ((int32_t)(L_143));
|
|
goto IL_04d1;
|
|
}
|
|
|
|
IL_04d0:
|
|
{
|
|
G_B106_0 = 0;
|
|
}
|
|
|
|
IL_04d1:
|
|
{
|
|
V_43 = (bool)G_B106_0;
|
|
bool L_144 = V_43;
|
|
if (!L_144)
|
|
{
|
|
goto IL_04f1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_145;
|
|
L_145 = VisualElement_get_schedule_m2BFE6967ED82371ACE1CD1FC32B8D8B93646ED76(__this, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_146 = (Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07*)il2cpp_codegen_object_new(Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07_il2cpp_TypeInfo_var);
|
|
NullCheck(L_146);
|
|
Action__ctor_mBDC7B0B4A3F583B64C2896F01BDED360772F67DC(L_146, __this, (intptr_t)((void*)IMGUIContainer_U3CDoOnGUIU3Eb__56_0_mC0F063A87D4918330ECE340E3D170D023520F2F9_RuntimeMethod_var), NULL);
|
|
NullCheck(L_145);
|
|
RuntimeObject* L_147;
|
|
L_147 = InterfaceFuncInvoker1< RuntimeObject*, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* >::Invoke(1 /* UnityEngine.UIElements.IVisualElementScheduledItem UnityEngine.UIElements.IVisualElementScheduler::Execute(System.Action) */, IVisualElementScheduler_tA68650FA9218398E77265748741B091638336FD8_il2cpp_TypeInfo_var, L_145, L_146);
|
|
goto IL_04f9;
|
|
}
|
|
|
|
IL_04f1:
|
|
{
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, 8, NULL);
|
|
}
|
|
|
|
IL_04f9:
|
|
{
|
|
}
|
|
|
|
IL_04fa:
|
|
{
|
|
bool L_148 = V_4;
|
|
V_44 = (bool)((((int32_t)L_148) == ((int32_t)0))? 1 : 0);
|
|
bool L_149 = V_44;
|
|
if (!L_149)
|
|
{
|
|
goto IL_055e;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_150 = ___0_evt;
|
|
NullCheck(L_150);
|
|
int32_t L_151;
|
|
L_151 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_150, NULL);
|
|
if ((((int32_t)L_151) == ((int32_t)((int32_t)11))))
|
|
{
|
|
goto IL_051f;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_152 = ___0_evt;
|
|
NullCheck(L_152);
|
|
int32_t L_153;
|
|
L_153 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_152, NULL);
|
|
G_B114_0 = ((((int32_t)((((int32_t)L_153) == ((int32_t)((int32_t)12)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0520;
|
|
}
|
|
|
|
IL_051f:
|
|
{
|
|
G_B114_0 = 0;
|
|
}
|
|
|
|
IL_0520:
|
|
{
|
|
V_45 = (bool)G_B114_0;
|
|
bool L_154 = V_45;
|
|
if (!L_154)
|
|
{
|
|
goto IL_055d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_155;
|
|
L_155 = GUIClip_Internal_GetCount_m83C187F97642C73B9241C9A026CDA89A7A9EB8D1(NULL);
|
|
V_46 = L_155;
|
|
int32_t L_156 = V_46;
|
|
int32_t L_157 = V_0;
|
|
V_47 = (bool)((((int32_t)L_156) > ((int32_t)L_157))? 1 : 0);
|
|
bool L_158 = V_47;
|
|
if (!L_158)
|
|
{
|
|
goto IL_0546;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteralA9E0268649535EDEE2FE85B30622276BD85E302C, NULL);
|
|
goto IL_055c;
|
|
}
|
|
|
|
IL_0546:
|
|
{
|
|
int32_t L_159 = V_46;
|
|
int32_t L_160 = V_0;
|
|
V_48 = (bool)((((int32_t)L_159) < ((int32_t)L_160))? 1 : 0);
|
|
bool L_161 = V_48;
|
|
if (!L_161)
|
|
{
|
|
goto IL_055c;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(_stringLiteralC00C92E779AF7F150507676512B2BC5D20A14BDE, NULL);
|
|
}
|
|
|
|
IL_055c:
|
|
{
|
|
}
|
|
|
|
IL_055d:
|
|
{
|
|
}
|
|
|
|
IL_055e:
|
|
{
|
|
goto IL_0566;
|
|
}
|
|
|
|
IL_0560:
|
|
{
|
|
GUIClip_Internal_Pop_m99B82F9D059E587FD37DEEB41385076E16162E62(NULL);
|
|
}
|
|
|
|
IL_0566:
|
|
{
|
|
int32_t L_162;
|
|
L_162 = GUIClip_Internal_GetCount_m83C187F97642C73B9241C9A026CDA89A7A9EB8D1(NULL);
|
|
int32_t L_163 = V_0;
|
|
V_49 = (bool)((((int32_t)L_162) > ((int32_t)L_163))? 1 : 0);
|
|
bool L_164 = V_49;
|
|
if (L_164)
|
|
{
|
|
goto IL_0560;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_165 = ___0_evt;
|
|
NullCheck(L_165);
|
|
int32_t L_166;
|
|
L_166 = Event_get_type_m8A825D6DA432B967DAA3E22E5C8571620A75F8A8(L_165, NULL);
|
|
V_50 = (bool)((((int32_t)L_166) == ((int32_t)((int32_t)12)))? 1 : 0);
|
|
bool L_167 = V_50;
|
|
if (!L_167)
|
|
{
|
|
goto IL_0592;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, ((int32_t)2048), NULL);
|
|
}
|
|
|
|
IL_0592:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::MarkDirtyLayout()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_MarkDirtyLayout_m432785249F73F828D72AB4261EEB5BE1ADA1DCD8 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___m_RefreshCachedLayout_71 = (bool)1;
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, 8, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::HandleEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_HandleEvent_mF59E3E012C9AFA6039C2D3FA0BB4C5D434A9A679 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
int32_t G_B6_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
CallbackEventHandler_HandleEvent_m730E6D7CF91DB205557C39A7BED1874671FFCEE2(__this, L_0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
V_0 = (bool)((((RuntimeObject*)(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)L_1) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C_inline(L_3, NULL);
|
|
if ((((int32_t)L_4) == ((int32_t)1)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C_inline(L_5, NULL);
|
|
if ((((int32_t)L_6) == ((int32_t)2)))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = EventBase_get_propagationPhase_mB1F61145A8F9ADF7A6730D9E5ABD1A4B50B7EE8C_inline(L_7, NULL);
|
|
G_B6_0 = ((((int32_t)((((int32_t)L_8) == ((int32_t)3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
V_1 = (bool)G_B6_0;
|
|
bool L_9 = V_1;
|
|
if (!L_9)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
NullCheck(L_10);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_11;
|
|
L_11 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_10, NULL);
|
|
V_2 = (bool)((((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_11) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_12 = V_2;
|
|
if (!L_12)
|
|
{
|
|
goto IL_004c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_004c:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_13, NULL);
|
|
V_3 = L_14;
|
|
bool L_15 = V_3;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_16 = ___0_evt;
|
|
bool L_17;
|
|
L_17 = IMGUIContainer_SendEventToIMGUI_m3D953957F70AB7A0AA0F528D134AEB8177033271(__this, L_16, (bool)1, (bool)1, NULL);
|
|
V_4 = L_17;
|
|
bool L_18 = V_4;
|
|
if (!L_18)
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
NullCheck(L_19);
|
|
EventBase_StopPropagation_mEFC7E5AB7164157065FF19064A6ADCBB0D8AF6FB(L_19, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
EventBase_PreventDefault_m083D37ED8DD2662D7C188E8A9480AE4B82F46296(L_20, NULL);
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::DoIMGUIRepaint()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_DoIMGUIRepaint_m0BAA4611CEBEA76DDA64F0202943CE283BC6CB24 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_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));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___k_ImmediateCallbackMarker_87;
|
|
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_0072:
|
|
{// begin finally (depth: 1)
|
|
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_0), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_2;
|
|
L_2 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
NullCheck(L_2);
|
|
RepaintData_t90534752135661579EC254884F550545D001B5EA* L_3;
|
|
L_3 = VirtualFuncInvoker0< RepaintData_t90534752135661579EC254884F550545D001B5EA* >::Invoke(30 /* UnityEngine.UIElements.RepaintData UnityEngine.UIElements.BaseVisualElementPanel::get_repaintData() */, L_2);
|
|
NullCheck(L_3);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_4;
|
|
L_4 = RepaintData_get_currentOffset_m3892F6A8C226B0710B9A149DDAAF87E1B208675F_inline(L_3, NULL);
|
|
V_2 = L_4;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_5;
|
|
L_5 = VisualElement_get_worldClip_m61B2DBE3962B9D3E328933EE88CC7B70DE7B711A(__this, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_6 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_7;
|
|
L_7 = VisualElement_ComputeAAAlignedBound_m6127DD99C85C7AA497C0AC3E58138D9BD4DB32A4(L_5, L_6, NULL);
|
|
__this->___m_CachedClippingRect_73 = L_7;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_8 = V_2;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_9;
|
|
L_9 = VisualElement_get_worldTransform_m706C9ADA6ADFBA381EDCAD418040C9F30D42E96A(__this, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_10;
|
|
L_10 = Matrix4x4_op_Multiply_m75E91775655DCA8DFC8EDE0AB787285BB3935162(L_8, L_9, NULL);
|
|
__this->___m_CachedTransform_74 = L_10;
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_11;
|
|
L_11 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
NullCheck(L_11);
|
|
RepaintData_t90534752135661579EC254884F550545D001B5EA* L_12;
|
|
L_12 = VirtualFuncInvoker0< RepaintData_t90534752135661579EC254884F550545D001B5EA* >::Invoke(30 /* UnityEngine.UIElements.RepaintData UnityEngine.UIElements.BaseVisualElementPanel::get_repaintData() */, L_11);
|
|
NullCheck(L_12);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_13;
|
|
L_13 = RepaintData_get_repaintEvent_mFF94EDCD02BDF49EC4C8DF4A34DA0AADAD177F2E_inline(L_12, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_14 = __this->___m_CachedTransform_74;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_15 = __this->___m_CachedClippingRect_73;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_16;
|
|
L_16 = IMGUIContainer_get_onGUIHandler_mB8C7886B0E2B094D2D42F6E2C5CCAD4B131D64FA(__this, NULL);
|
|
bool L_17;
|
|
L_17 = IMGUIContainer_HandleIMGUIEvent_m9B04CA2F52F62EF5B2151EE5565FD9B7066A3118(__this, L_13, L_14, L_15, L_16, (bool)1, NULL);
|
|
goto IL_0081;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
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*)&PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
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;
|
|
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_B4_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
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);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3;
|
|
L_3 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
NullCheck(L_4);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_5;
|
|
L_5 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_4, NULL);
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = Event_get_isDirectManipulationDevice_m9A72FB2DF7803E189857D24A65FB568B17533ED0(L_5, NULL);
|
|
G_B4_0 = ((int32_t)(L_6));
|
|
goto IL_0028;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
V_1 = (bool)G_B4_0;
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_014b;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___0_evt;
|
|
NullCheck(L_8);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_9;
|
|
L_9 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_8, NULL);
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_9, NULL);
|
|
V_3 = L_10;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
V_4 = (bool)((!(((RuntimeObject*)(PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51*)((PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51*)IsInstSealed((RuntimeObject*)L_11, PointerDownEvent_tABAAD1BACBB98156D6BCCED51E11883EAFE03A51_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_12 = V_4;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_14;
|
|
L_14 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_13, NULL);
|
|
NullCheck(L_14);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_14, ((int32_t)30), NULL);
|
|
goto IL_0124;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
V_5 = (bool)((!(((RuntimeObject*)(PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)((PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9*)IsInstSealed((RuntimeObject*)L_15, PointerUpEvent_tCE779E8B94675B6A2758B82F6A84771CB26913D9_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_16 = V_5;
|
|
if (!L_16)
|
|
{
|
|
goto IL_008a;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_17 = ___0_evt;
|
|
NullCheck(L_17);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_18;
|
|
L_18 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_17, NULL);
|
|
NullCheck(L_18);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_18, ((int32_t)31), NULL);
|
|
goto IL_0124;
|
|
}
|
|
|
|
IL_008a:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___0_evt;
|
|
if (!((PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3*)IsInstSealed((RuntimeObject*)L_19, PointerMoveEvent_t2C1E2E20A07034638F48C3EB94B8520549D770C3_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_21;
|
|
L_21 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_20, NULL);
|
|
NullCheck(L_21);
|
|
int32_t L_22;
|
|
L_22 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_21, NULL);
|
|
G_B12_0 = ((((int32_t)L_22) == ((int32_t)3))? 1 : 0);
|
|
goto IL_00a3;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_00a3:
|
|
{
|
|
V_6 = (bool)G_B12_0;
|
|
bool L_23 = V_6;
|
|
if (!L_23)
|
|
{
|
|
goto IL_00bd;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_24 = ___0_evt;
|
|
NullCheck(L_24);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_25;
|
|
L_25 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_24, NULL);
|
|
NullCheck(L_25);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_25, ((int32_t)32), NULL);
|
|
goto IL_0124;
|
|
}
|
|
|
|
IL_00bd:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_26 = ___0_evt;
|
|
V_7 = (bool)((!(((RuntimeObject*)(PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84*)((PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84*)IsInstSealed((RuntimeObject*)L_26, PointerLeaveEvent_tA2426EF03A82E31DC06960A17E03E88E155AFD84_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_27 = V_7;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00e0;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = ___0_evt;
|
|
NullCheck(L_28);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_29;
|
|
L_29 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_28, NULL);
|
|
NullCheck(L_29);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_29, ((int32_t)34), NULL);
|
|
goto IL_0124;
|
|
}
|
|
|
|
IL_00e0:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_30 = ___0_evt;
|
|
V_8 = (bool)((!(((RuntimeObject*)(PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB*)((PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB*)IsInstSealed((RuntimeObject*)L_30, PointerEnterEvent_t1B003E301A8969E273D1F5163242BE399B9E63DB_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_31 = V_8;
|
|
if (!L_31)
|
|
{
|
|
goto IL_0103;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_32 = ___0_evt;
|
|
NullCheck(L_32);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_33;
|
|
L_33 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_32, NULL);
|
|
NullCheck(L_33);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_33, ((int32_t)33), NULL);
|
|
goto IL_0124;
|
|
}
|
|
|
|
IL_0103:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_34 = ___0_evt;
|
|
V_9 = (bool)((!(((RuntimeObject*)(PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A*)((PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A*)IsInstSealed((RuntimeObject*)L_34, PointerStationaryEvent_t00EDD04F79029C94E4655239AA54AF9024AB151A_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_35 = V_9;
|
|
if (!L_35)
|
|
{
|
|
goto IL_0124;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = ___0_evt;
|
|
NullCheck(L_36);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_37;
|
|
L_37 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_36, NULL);
|
|
NullCheck(L_37);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_37, ((int32_t)35), NULL);
|
|
}
|
|
|
|
IL_0124:
|
|
{
|
|
bool L_38 = V_2;
|
|
V_10 = L_38;
|
|
bool L_39 = V_10;
|
|
if (!L_39)
|
|
{
|
|
goto IL_014a;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_40 = ___0_evt;
|
|
bool L_41 = ___1_canAffectFocus;
|
|
bool L_42 = ___2_verifyBounds;
|
|
bool L_43;
|
|
L_43 = IMGUIContainer_SendEventToIMGUIRaw_mB65CFD99A5904BA6826BE228AA860ABC1988A35E(__this, L_40, L_41, L_42, NULL);
|
|
V_11 = L_43;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_44 = ___0_evt;
|
|
NullCheck(L_44);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_45;
|
|
L_45 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_44, NULL);
|
|
int32_t L_46 = V_3;
|
|
NullCheck(L_45);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_45, L_46, NULL);
|
|
bool L_47 = V_11;
|
|
V_12 = L_47;
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_014a:
|
|
{
|
|
}
|
|
|
|
IL_014b:
|
|
{
|
|
V_12 = (bool)0;
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_48 = ___0_evt;
|
|
bool L_49 = ___1_canAffectFocus;
|
|
bool L_50 = ___2_verifyBounds;
|
|
bool L_51;
|
|
L_51 = IMGUIContainer_SendEventToIMGUIRaw_mB65CFD99A5904BA6826BE228AA860ABC1988A35E(__this, L_48, L_49, L_50, NULL);
|
|
V_12 = L_51;
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_015d:
|
|
{
|
|
bool L_52 = V_12;
|
|
return L_52;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::SendEventToIMGUIRaw(UnityEngine.UIElements.EventBase,System.Boolean,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_SendEventToIMGUIRaw_mB65CFD99A5904BA6826BE228AA860ABC1988A35E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, bool ___1_canAffectFocus, bool ___2_verifyBounds, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
EventDebuggerLogIMGUICall_t1B803273A4B133D61B1FB9289278542A8739C4A8 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0 = ___2_verifyBounds;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
bool L_2;
|
|
L_2 = IMGUIContainer_VerifyBounds_mE7304B71C46FC2C54766E1D1D98BA3EAB17309B3(__this, L_1, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
EventDebuggerLogIMGUICall__ctor_m8181F947BF193F4D2ACD9AB48654C906663A69C4((&V_3), L_4, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0033:
|
|
{// begin finally (depth: 1)
|
|
EventDebuggerLogIMGUICall_Dispose_mC840F6D4E4891BD9853F0E4478739F1AA7B09643((&V_3), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6;
|
|
L_6 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_5, NULL);
|
|
bool L_7 = ___1_canAffectFocus;
|
|
bool L_8;
|
|
L_8 = IMGUIContainer_HandleIMGUIEvent_m4B537F6CFE94EA9276E936B6BF19836F5469498C(__this, L_6, L_7, NULL);
|
|
V_0 = L_8;
|
|
goto IL_0042;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
bool L_9 = V_0;
|
|
V_2 = L_9;
|
|
goto IL_0046;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
bool L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::VerifyBounds(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_VerifyBounds_mE7304B71C46FC2C54766E1D1D98BA3EAB17309B3 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = IMGUIContainer_IsContainerCapturingTheMouse_mA737CB964462D5E5D6BD911AA2AAC79A6F470A0D(__this, NULL);
|
|
if (L_0)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
bool L_2;
|
|
L_2 = IMGUIContainer_IsLocalEvent_m1AB8B062156716F034B30C60FDDC4B2EC83E9E0D(__this, L_1, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
bool L_4;
|
|
L_4 = IMGUIContainer_IsEventInsideLocalWindow_m38CAC057F08045A52782654EDC5FA92A6F6CBF6E(__this, L_3, NULL);
|
|
if (L_4)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
bool L_6;
|
|
L_6 = IMGUIContainer_IsDockAreaMouseUp_m16D8D5C5CA84AE9B3FC3E7D18AF0A764F7594D24(L_5, NULL);
|
|
G_B5_0 = ((int32_t)(L_6));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_0 = (bool)G_B5_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsContainerCapturingTheMouse()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsContainerCapturingTheMouse_mA737CB964462D5E5D6BD911AA2AAC79A6F470A0D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* G_B2_1 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* G_B1_1 = NULL;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* G_B5_1 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B4_0 = NULL;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* G_B4_1 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B3_0 = NULL;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* G_B3_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(__this, NULL);
|
|
RuntimeObject* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
G_B1_1 = __this;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
G_B2_1 = __this;
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = ((RuntimeObject*)(NULL));
|
|
G_B5_1 = G_B1_1;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2;
|
|
L_2 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, G_B2_0);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3 = L_2;
|
|
G_B3_0 = L_3;
|
|
G_B3_1 = G_B2_1;
|
|
if (L_3)
|
|
{
|
|
G_B4_0 = L_3;
|
|
G_B4_1 = G_B2_1;
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = ((RuntimeObject*)(NULL));
|
|
G_B5_1 = G_B3_1;
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_4;
|
|
L_4 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B4_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_5 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_6;
|
|
L_6 = PointerDispatchState_GetCapturingElement_m84B2B033EC3CCAD4613D6A83C13C25EC8907D891(L_4, L_5, NULL);
|
|
G_B5_0 = L_6;
|
|
G_B5_1 = G_B4_1;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
V_0 = (bool)((((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)G_B5_1) == ((RuntimeObject*)(RuntimeObject*)G_B5_0))? 1 : 0);
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
bool L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsLocalEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsLocalEvent_m1AB8B062156716F034B30C60FDDC4B2EC83E9E0D (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
bool V_1 = false;
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
int64_t L_1;
|
|
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_0);
|
|
V_0 = L_1;
|
|
int64_t L_2 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t3863B2426C83CF34F5037FA191495E8B16EDFF6C_il2cpp_TypeInfo_var);
|
|
int64_t L_3;
|
|
L_3 = EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87(EventBase_1_TypeId_m261E1026413090CEA1AAFFCC80404AD7C41FEF87_RuntimeMethod_var);
|
|
if ((((int64_t)L_2) == ((int64_t)L_3)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var);
|
|
int64_t L_5;
|
|
L_5 = EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15(EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var);
|
|
if ((((int64_t)L_4) == ((int64_t)L_5)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_6 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tFF5ADBE25C7FD2806CE67DEAAA69B7AAACA73531_il2cpp_TypeInfo_var);
|
|
int64_t L_7;
|
|
L_7 = EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35(EventBase_1_TypeId_m7CB11804DD1C55969C72BAE45C646AA8D5FF4B35_RuntimeMethod_var);
|
|
if ((((int64_t)L_6) == ((int64_t)L_7)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_8 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_9;
|
|
L_9 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
if ((((int64_t)L_8) == ((int64_t)L_9)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_10 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t2637736704939772A86A2904BCFD1B314097DD1E_il2cpp_TypeInfo_var);
|
|
int64_t L_11;
|
|
L_11 = EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D(EventBase_1_TypeId_mA90FE9E21D00125CFC53652D23DB65FD2574D60D_RuntimeMethod_var);
|
|
if ((((int64_t)L_10) == ((int64_t)L_11)))
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_12 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t4941B5AE834AA028696C83756491CE8884F30DDE_il2cpp_TypeInfo_var);
|
|
int64_t L_13;
|
|
L_13 = EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6(EventBase_1_TypeId_m3FC722D85FBD1538CE6B96AD3364192799BF1CA6_RuntimeMethod_var);
|
|
G_B7_0 = ((((int64_t)L_12) == ((int64_t)L_13))? 1 : 0);
|
|
goto IL_003b;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
G_B7_0 = 1;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
V_1 = (bool)G_B7_0;
|
|
goto IL_003e;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
bool L_14 = V_1;
|
|
return L_14;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsEventInsideLocalWindow(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsEventInsideLocalWindow_m38CAC057F08045A52782654EDC5FA92A6F6CBF6E (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
String_t* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
RuntimeObject* G_B2_0 = NULL;
|
|
RuntimeObject* G_B1_0 = NULL;
|
|
String_t* G_B3_0 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0;
|
|
L_0 = IMGUIContainer_GetCurrentClipRect_mDC9FA62A4A58133960C800981F08FC98CD4448B7(__this, NULL);
|
|
V_0 = L_0;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
RuntimeObject* L_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_1, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var));
|
|
G_B1_0 = L_2;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((String_t*)(NULL));
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
String_t* L_3;
|
|
L_3 = InterfaceFuncInvoker0< String_t* >::Invoke(1 /* System.String UnityEngine.UIElements.IPointerEvent::get_pointerType() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, G_B2_0);
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_1 = G_B3_0;
|
|
String_t* L_4 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_5 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___touch_1;
|
|
bool L_6;
|
|
L_6 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_4, L_5, NULL);
|
|
if (L_6)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_7 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var);
|
|
String_t* L_8 = ((PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_StaticFields*)il2cpp_codegen_static_fields_for(PointerType_t6E813E47699AA9C948D9EFEF36F481B5EDD5BCD4_il2cpp_TypeInfo_var))->___pen_2;
|
|
bool L_9;
|
|
L_9 = String_op_Equality_m030E1B219352228970A076136E455C4E568C02C1(L_7, L_8, NULL);
|
|
G_B6_0 = ((int32_t)(L_9));
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
G_B6_0 = 1;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
V_2 = (bool)G_B6_0;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_10 = V_0;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
NullCheck(L_11);
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12;
|
|
L_12 = EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A_inline(L_11, NULL);
|
|
bool L_13 = V_2;
|
|
bool L_14;
|
|
L_14 = GUIUtility_HitTest_m8C93A1BFB637176154C02F73038A98D1F616A7C2(L_10, L_12, L_13, NULL);
|
|
V_3 = L_14;
|
|
goto IL_0047;
|
|
}
|
|
|
|
IL_0047:
|
|
{
|
|
bool L_15 = V_3;
|
|
return L_15;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::IsDockAreaMouseUp(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_IsDockAreaMouseUp_m16D8D5C5CA84AE9B3FC3E7D18AF0A764F7594D24 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
RuntimeObject* G_B3_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B2_0 = NULL;
|
|
RuntimeObject* G_B2_1 = NULL;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* G_B4_0 = NULL;
|
|
RuntimeObject* G_B4_1 = NULL;
|
|
int32_t G_B6_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
int64_t L_1;
|
|
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_0);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t9ED9D70674CFE9504A67746757FB582440278391_il2cpp_TypeInfo_var);
|
|
int64_t L_2;
|
|
L_2 = EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15(EventBase_1_TypeId_m40F47073954464E3544AE1C74E0B900F54A43A15_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_1) == ((uint64_t)L_2))))
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_3, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
RuntimeObject* L_6;
|
|
L_6 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_5, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_6, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
G_B2_0 = L_7;
|
|
G_B2_1 = L_4;
|
|
if (L_7)
|
|
{
|
|
G_B3_0 = L_7;
|
|
G_B3_1 = L_4;
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)(NULL));
|
|
G_B4_1 = G_B2_1;
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
NullCheck(G_B3_0);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_8;
|
|
L_8 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(G_B3_0, NULL);
|
|
NullCheck(L_8);
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_9;
|
|
L_9 = VirtualFuncInvoker0< IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* >::Invoke(20 /* UnityEngine.UIElements.IMGUIContainer UnityEngine.UIElements.BaseVisualElementPanel::get_rootIMGUIContainer() */, L_8);
|
|
G_B4_0 = L_9;
|
|
G_B4_1 = G_B3_1;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B6_0 = ((((RuntimeObject*)(RuntimeObject*)G_B4_1) == ((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)G_B4_0))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
V_0 = (bool)G_B6_0;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::HandleIMGUIEvent(UnityEngine.Event,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_HandleIMGUIEvent_m4B537F6CFE94EA9276E936B6BF19836F5469498C (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, bool ___1_canAffectFocus, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_e;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1;
|
|
L_1 = IMGUIContainer_get_onGUIHandler_mB8C7886B0E2B094D2D42F6E2C5CCAD4B131D64FA(__this, NULL);
|
|
bool L_2 = ___1_canAffectFocus;
|
|
bool L_3;
|
|
L_3 = IMGUIContainer_HandleIMGUIEvent_m1D6C1113827F41A692360E26043AA7723AF0ADFE(__this, L_0, L_1, L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::HandleIMGUIEvent(UnityEngine.Event,System.Action,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_HandleIMGUIEvent_m1D6C1113827F41A692360E26043AA7723AF0ADFE (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___1_onGUIHandler, bool ___2_canAffectFocus, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_e;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_1 = (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6*)(&__this->___m_CachedTransform_74);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_2 = (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)(&__this->___m_CachedClippingRect_73);
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
IMGUIContainer_GetCurrentTransformAndClip_m145DE31D768985A4D999675B9891B2EFE440DBFC(__this, L_0, L_1, L_2, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3 = ___0_e;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_4 = __this->___m_CachedTransform_74;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_5 = __this->___m_CachedClippingRect_73;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_6 = ___1_onGUIHandler;
|
|
bool L_7 = ___2_canAffectFocus;
|
|
bool L_8;
|
|
L_8 = IMGUIContainer_HandleIMGUIEvent_m9B04CA2F52F62EF5B2151EE5565FD9B7066A3118(__this, L_3, L_4, L_5, L_6, L_7, NULL);
|
|
V_0 = L_8;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
bool L_9 = V_0;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.IMGUIContainer::HandleIMGUIEvent(UnityEngine.Event,UnityEngine.Matrix4x4,UnityEngine.Rect,System.Action,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IMGUIContainer_HandleIMGUIEvent_m9B04CA2F52F62EF5B2151EE5565FD9B7066A3118 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___0_e, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 ___1_worldTransform, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___2_clippingRect, Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* ___3_onGUIHandler, bool ___4_canAffectFocus, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEEB55BE0525DCACC1B1C0AF0229E231F141718EC);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* V_7 = NULL;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
int32_t G_B5_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
int32_t G_B22_0 = 0;
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = ___0_e;
|
|
if (!L_0)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_1 = ___3_onGUIHandler;
|
|
if (!L_1)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_2;
|
|
L_2 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
if (!L_2)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_3;
|
|
L_3 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
NullCheck(L_3);
|
|
EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 L_4;
|
|
L_4 = VirtualFuncInvoker0< EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 >::Invoke(10 /* UnityEngine.EventInterests UnityEngine.UIElements.BaseVisualElementPanel::get_IMGUIEventInterests() */, L_3);
|
|
V_2 = L_4;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_5 = ___0_e;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_5, NULL);
|
|
bool L_7;
|
|
L_7 = EventInterests_WantsEvent_mD34E2AD1F937EE03C9C29882672F400AD3C3E5B6((&V_2), L_6, NULL);
|
|
G_B5_0 = ((((int32_t)L_7) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
bool L_8 = V_1;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)0;
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_9 = ___0_e;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_9, NULL);
|
|
V_0 = L_10;
|
|
int32_t L_11 = V_0;
|
|
V_4 = (bool)((((int32_t)((((int32_t)L_11) == ((int32_t)8))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_12 = V_4;
|
|
if (!L_12)
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
bool L_13 = __this->___m_RefreshCachedLayout_71;
|
|
if (L_13)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_14;
|
|
L_14 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
NullCheck(L_14);
|
|
EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 L_15;
|
|
L_15 = VirtualFuncInvoker0< EventInterests_tF375F3296A6689BC4B016F237123DB5457515EC8 >::Invoke(10 /* UnityEngine.EventInterests UnityEngine.UIElements.BaseVisualElementPanel::get_IMGUIEventInterests() */, L_14);
|
|
V_2 = L_15;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_16 = ___0_e;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_16, NULL);
|
|
bool L_18;
|
|
L_18 = EventInterests_WantsLayoutPass_m403675D6BA834A05764A2C2558ECBCE90C8D066B((&V_2), L_17, NULL);
|
|
G_B11_0 = ((int32_t)(L_18));
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
G_B11_0 = 1;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
V_5 = (bool)G_B11_0;
|
|
bool L_19 = V_5;
|
|
if (!L_19)
|
|
{
|
|
goto IL_00aa;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_20 = ___0_e;
|
|
NullCheck(L_20);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_20, 8, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_21 = ___0_e;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_22 = ___1_worldTransform;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_23 = ___2_clippingRect;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_24;
|
|
L_24 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(__this, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_25 = ___3_onGUIHandler;
|
|
bool L_26 = ___4_canAffectFocus;
|
|
IMGUIContainer_DoOnGUI_mDF396AFB9BB8C4E4738AECA40F7F5A6192F9C645(__this, L_21, L_22, L_23, (bool)0, L_24, L_25, L_26, NULL);
|
|
__this->___m_RefreshCachedLayout_71 = (bool)0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_27 = ___0_e;
|
|
int32_t L_28 = V_0;
|
|
NullCheck(L_27);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_27, L_28, NULL);
|
|
goto IL_00b8;
|
|
}
|
|
|
|
IL_00aa:
|
|
{
|
|
LayoutCache_tF844B2FAD6933B78FD5EFEBDE0529BCBAC19BA60* L_29;
|
|
L_29 = IMGUIContainer_get_cache_m69FF965A5AB8DE696430288B4E5EB2D3CB711969(__this, NULL);
|
|
NullCheck(L_29);
|
|
LayoutCache_ResetCursor_m728841782E13F82B1AE96E40AF16D6C8EBE6D59A(L_29, NULL);
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_30 = ___0_e;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_31 = ___1_worldTransform;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_32 = ___2_clippingRect;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_33;
|
|
L_33 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(__this, NULL);
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_34 = ___3_onGUIHandler;
|
|
bool L_35 = ___4_canAffectFocus;
|
|
IMGUIContainer_DoOnGUI_mDF396AFB9BB8C4E4738AECA40F7F5A6192F9C645(__this, L_30, L_31, L_32, (bool)0, L_33, L_34, L_35, NULL);
|
|
int32_t L_36 = __this->___newKeyboardFocusControlID_80;
|
|
V_6 = (bool)((((int32_t)L_36) > ((int32_t)0))? 1 : 0);
|
|
bool L_37 = V_6;
|
|
if (!L_37)
|
|
{
|
|
goto IL_010c;
|
|
}
|
|
}
|
|
{
|
|
__this->___newKeyboardFocusControlID_80 = 0;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_38 = (Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)il2cpp_codegen_object_new(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_38);
|
|
Event__ctor_m14342F32F62A39A8B8032286E2DCC07FEF72BFF4(L_38, NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_39 = L_38;
|
|
NullCheck(L_39);
|
|
Event_set_type_m16D35A8AF665F4A73A447F9EE7CA36963F34FEC2(L_39, ((int32_t)14), NULL);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_40 = L_39;
|
|
NullCheck(L_40);
|
|
Event_set_commandName_m8DA7262E1CD1005911EAB9777DE9FEC2D97504FA(L_40, _stringLiteralEEB55BE0525DCACC1B1C0AF0229E231F141718EC, NULL);
|
|
V_7 = L_40;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_41 = V_7;
|
|
bool L_42;
|
|
L_42 = IMGUIContainer_HandleIMGUIEvent_m4B537F6CFE94EA9276E936B6BF19836F5469498C(__this, L_41, (bool)1, NULL);
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_43 = ___0_e;
|
|
NullCheck(L_43);
|
|
int32_t L_44;
|
|
L_44 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_43, NULL);
|
|
V_8 = (bool)((((int32_t)L_44) == ((int32_t)((int32_t)12)))? 1 : 0);
|
|
bool L_45 = V_8;
|
|
if (!L_45)
|
|
{
|
|
goto IL_0121;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (bool)1;
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_0121:
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_46 = ___0_e;
|
|
NullCheck(L_46);
|
|
int32_t L_47;
|
|
L_47 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_46, NULL);
|
|
if ((!(((uint32_t)L_47) == ((uint32_t)1))))
|
|
{
|
|
goto IL_0132;
|
|
}
|
|
}
|
|
{
|
|
bool L_48;
|
|
L_48 = MouseCaptureController_HasMouseCapture_mFFD49E6A07FF28D47B66DB9C36CFB011933B9CEA(__this, NULL);
|
|
G_B22_0 = ((int32_t)(L_48));
|
|
goto IL_0133;
|
|
}
|
|
|
|
IL_0132:
|
|
{
|
|
G_B22_0 = 0;
|
|
}
|
|
|
|
IL_0133:
|
|
{
|
|
V_9 = (bool)G_B22_0;
|
|
bool L_49 = V_9;
|
|
if (!L_49)
|
|
{
|
|
goto IL_0142;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_set_hotControl_mFBC648186C83874DE776A508C420183ADB527E9A(0, NULL);
|
|
}
|
|
|
|
IL_0142:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_50;
|
|
L_50 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
V_10 = (bool)((((RuntimeObject*)(BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_50) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_51 = V_10;
|
|
if (!L_51)
|
|
{
|
|
goto IL_0159;
|
|
}
|
|
}
|
|
{
|
|
GUIUtility_ExitGUI_m9B30B2DFC94CC1C04D1F78358D79E9DAC1231B03(NULL);
|
|
}
|
|
|
|
IL_0159:
|
|
{
|
|
V_3 = (bool)0;
|
|
goto IL_015d;
|
|
}
|
|
|
|
IL_015d:
|
|
{
|
|
bool L_52 = V_3;
|
|
return L_52;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::ExecuteDefaultAction(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_ExecuteDefaultAction_m3ECB1D6F2EC5799EE51CD7D864EA99C485CCC279 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_get_IsFocusDelegated_m592E9CB880F68069E1D2C7E1AEB1229ACB0CEFA1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_get_direction_m895C80142080B880EA2AC1FD7F0CA16ACA75866F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* V_3 = NULL;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t V_6 = 0;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
{
|
|
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_000f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_2 = ___0_evt;
|
|
NullCheck(L_2);
|
|
int64_t L_3;
|
|
L_3 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_2);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t5C41C2E79AD8FCCF88671F3DBD081F10EFD3F846_il2cpp_TypeInfo_var);
|
|
int64_t L_4;
|
|
L_4 = EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938(EventBase_1_TypeId_mDAB5B22217A3D6B539DBF6BD3DD61C8712EA5938_RuntimeMethod_var);
|
|
V_1 = (bool)((((int64_t)L_3) == ((int64_t)L_4))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}
|
|
{
|
|
__this->___lostFocus_76 = (bool)1;
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, ((int32_t)2048), NULL);
|
|
goto IL_00fd;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_evt;
|
|
NullCheck(L_6);
|
|
int64_t L_7;
|
|
L_7 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_6);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7187CB27405B98ED004503ABE606225C50E656A0_il2cpp_TypeInfo_var);
|
|
int64_t L_8;
|
|
L_8 = EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745(EventBase_1_TypeId_m6799DD291775EDAF702D8F2DB25B6D53CAA13745_RuntimeMethod_var);
|
|
V_2 = (bool)((((int64_t)L_7) == ((int64_t)L_8))? 1 : 0);
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0078;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
V_3 = ((FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F*)IsInstClass((RuntimeObject*)L_10, FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F_il2cpp_TypeInfo_var));
|
|
__this->___receivedFocus_77 = (bool)1;
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_12;
|
|
L_12 = FocusEventBase_1_get_direction_m895C80142080B880EA2AC1FD7F0CA16ACA75866F_inline(L_11, FocusEventBase_1_get_direction_m895C80142080B880EA2AC1FD7F0CA16ACA75866F_RuntimeMethod_var);
|
|
__this->___focusChangeDirection_78 = L_12;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___focusChangeDirection_78), (void*)L_12);
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = FocusEventBase_1_get_IsFocusDelegated_m592E9CB880F68069E1D2C7E1AEB1229ACB0CEFA1_inline(L_13, FocusEventBase_1_get_IsFocusDelegated_m592E9CB880F68069E1D2C7E1AEB1229ACB0CEFA1_RuntimeMethod_var);
|
|
__this->___m_IsFocusDelegated_70 = L_14;
|
|
goto IL_00fd;
|
|
}
|
|
|
|
IL_0078:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
int64_t L_16;
|
|
L_16 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_15);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6_il2cpp_TypeInfo_var);
|
|
int64_t L_17;
|
|
L_17 = EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0(EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0_RuntimeMethod_var);
|
|
V_4 = (bool)((((int64_t)L_16) == ((int64_t)L_17))? 1 : 0);
|
|
bool L_18 = V_4;
|
|
if (!L_18)
|
|
{
|
|
goto IL_00b8;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_19;
|
|
L_19 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
V_5 = (bool)((!(((RuntimeObject*)(BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_19) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_00b5;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_21;
|
|
L_21 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_22 = L_21;
|
|
NullCheck(L_22);
|
|
int32_t L_23;
|
|
L_23 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 UnityEngine.UIElements.BaseVisualElementPanel::get_IMGUIContainersCount() */, L_22);
|
|
V_6 = L_23;
|
|
int32_t L_24 = V_6;
|
|
NullCheck(L_22);
|
|
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void UnityEngine.UIElements.BaseVisualElementPanel::set_IMGUIContainersCount(System.Int32) */, L_22, ((int32_t)il2cpp_codegen_subtract(L_24, 1)));
|
|
}
|
|
|
|
IL_00b5:
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
|
|
IL_00b8:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = ___0_evt;
|
|
NullCheck(L_25);
|
|
int64_t L_26;
|
|
L_26 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_25);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22_il2cpp_TypeInfo_var);
|
|
int64_t L_27;
|
|
L_27 = EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5(EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5_RuntimeMethod_var);
|
|
V_7 = (bool)((((int64_t)L_26) == ((int64_t)L_27))? 1 : 0);
|
|
bool L_28 = V_7;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_29;
|
|
L_29 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
V_8 = (bool)((!(((RuntimeObject*)(BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_29) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_30 = V_8;
|
|
if (!L_30)
|
|
{
|
|
goto IL_00fc;
|
|
}
|
|
}
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_31;
|
|
L_31 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(__this, NULL);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_32 = L_31;
|
|
NullCheck(L_32);
|
|
int32_t L_33;
|
|
L_33 = VirtualFuncInvoker0< int32_t >::Invoke(16 /* System.Int32 UnityEngine.UIElements.BaseVisualElementPanel::get_IMGUIContainersCount() */, L_32);
|
|
V_6 = L_33;
|
|
int32_t L_34 = V_6;
|
|
NullCheck(L_32);
|
|
VirtualActionInvoker1< int32_t >::Invoke(17 /* System.Void UnityEngine.UIElements.BaseVisualElementPanel::set_IMGUIContainersCount(System.Int32) */, L_32, ((int32_t)il2cpp_codegen_add(L_34, 1)));
|
|
IMGUIContainer_SetFoldoutDepthClass_m6B2F413286FFAE7EAE276B1C2231CC51656A8044(__this, NULL);
|
|
}
|
|
|
|
IL_00fc:
|
|
{
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::SetFoldoutDepthClass()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_SetFoldoutDepthClass_m6B2F413286FFAE7EAE276B1C2231CC51656A8044 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementUtils_t40D4F58B1AA48524658BD0DC09E4CCD7DAAF722C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
V_1 = 0;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_0 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84;
|
|
int32_t L_1 = V_1;
|
|
NullCheck(L_0);
|
|
String_t* L_2;
|
|
L_2 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_0, L_1, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
VisualElement_RemoveFromClassList_mA7A2EC202004DFCBF38C12B70C6218BF40D21220(__this, L_2, NULL);
|
|
int32_t L_3 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_3, 1));
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_4 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_5 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84;
|
|
NullCheck(L_5);
|
|
int32_t L_6;
|
|
L_6 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_5, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
V_2 = (bool)((((int32_t)L_4) < ((int32_t)L_6))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (L_7)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementUtils_t40D4F58B1AA48524658BD0DC09E4CCD7DAAF722C_il2cpp_TypeInfo_var);
|
|
int32_t L_8;
|
|
L_8 = VisualElementUtils_GetFoldoutDepth_mBD40209DEA954F8D8EC866B8C27902AEDAAD60AB(__this, NULL);
|
|
V_0 = L_8;
|
|
int32_t L_9 = V_0;
|
|
V_3 = (bool)((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
|
|
bool L_10 = V_3;
|
|
if (!L_10)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
int32_t L_11 = V_0;
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_12 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_inline(L_12, List_1_get_Count_mB63183A9151F4345A9DD444A7CBE0D6E03F77C7C_RuntimeMethod_var);
|
|
int32_t L_14;
|
|
L_14 = Mathf_Min_m888083F74FF5655778F0403BB5E9608BEFDEA8CB_inline(L_11, ((int32_t)il2cpp_codegen_subtract(L_13, 1)), NULL);
|
|
V_0 = L_14;
|
|
List_1_tF470A3BE5C1B5B68E1325EF3F109D172E60BD7CD* L_15 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___ussFoldoutChildDepthClassNames_84;
|
|
int32_t L_16 = V_0;
|
|
NullCheck(L_15);
|
|
String_t* L_17;
|
|
L_17 = List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8(L_15, L_16, List_1_get_Item_m21AEC50E791371101DC22ABCF96A2E46800811F8_RuntimeMethod_var);
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(__this, L_17, NULL);
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.IMGUIContainer::DoMeasure(System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 IMGUIContainer_DoMeasure_mB3E22C33BD90AF7BC63180FB885B9BA18BDE1467 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, float ___0_desiredWidth, int32_t ___1_widthMode, float ___2_desiredHeight, int32_t ___3_heightMode, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
int32_t V_6 = 0;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
bool V_10 = false;
|
|
int32_t V_11 = 0;
|
|
int32_t V_12 = 0;
|
|
int32_t V_13 = 0;
|
|
int32_t V_14 = 0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_15;
|
|
memset((&V_15), 0, sizeof(V_15));
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
V_0 = (std::numeric_limits<float>::quiet_NaN());
|
|
V_1 = (std::numeric_limits<float>::quiet_NaN());
|
|
V_2 = (bool)0;
|
|
int32_t L_0 = ___1_widthMode;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)1))))
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_1 = ___3_heightMode;
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_1) == ((int32_t)1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
V_3 = (bool)G_B3_0;
|
|
bool L_2 = V_3;
|
|
if (!L_2)
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3;
|
|
L_3 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
V_5 = (bool)((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_3) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_4 = V_5;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_5 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_CurrentEvent_90;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6;
|
|
L_6 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
NullCheck(L_5);
|
|
Event_CopyFrom_m2F9B9704FBE156C5D58FF630F7968568C19821F5(L_5, L_6, NULL);
|
|
V_2 = (bool)1;
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_MeasureEvent_89;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_8 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_DefaultMeasureEvent_88;
|
|
NullCheck(L_7);
|
|
Event_CopyFrom_m2F9B9704FBE156C5D58FF630F7968568C19821F5(L_7, L_8, NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_9;
|
|
L_9 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(__this, NULL);
|
|
V_4 = L_9;
|
|
int32_t L_10 = ___1_widthMode;
|
|
V_7 = L_10;
|
|
int32_t L_11 = V_7;
|
|
V_6 = L_11;
|
|
int32_t L_12 = V_6;
|
|
if ((((int32_t)L_12) == ((int32_t)1)))
|
|
{
|
|
goto IL_006e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
float L_13 = ___0_desiredWidth;
|
|
Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A((&V_4), L_13, NULL);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
int32_t L_14 = ___3_heightMode;
|
|
V_9 = L_14;
|
|
int32_t L_15 = V_9;
|
|
V_8 = L_15;
|
|
int32_t L_16 = V_8;
|
|
if ((((int32_t)L_16) == ((int32_t)1)))
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
float L_17 = ___2_desiredHeight;
|
|
Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03((&V_4), L_17, NULL);
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_18 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_MeasureEvent_89;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_19 = __this->___m_CachedTransform_74;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_20 = __this->___m_CachedClippingRect_73;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_21 = V_4;
|
|
Action_tD00B0A84D7945E50C2DFFC28EFEE6ED44ED2AD07* L_22;
|
|
L_22 = IMGUIContainer_get_onGUIHandler_mB8C7886B0E2B094D2D42F6E2C5CCAD4B131D64FA(__this, NULL);
|
|
IMGUIContainer_DoOnGUI_mDF396AFB9BB8C4E4738AECA40F7F5A6192F9C645(__this, L_18, L_19, L_20, (bool)1, L_21, L_22, (bool)1, NULL);
|
|
float L_23;
|
|
L_23 = IMGUIContainer_get_layoutMeasuredWidth_mAEC590B17A0768CC86B13C3E574C725752881C64(__this, NULL);
|
|
V_0 = L_23;
|
|
float L_24;
|
|
L_24 = IMGUIContainer_get_layoutMeasuredHeight_m720CFD0987486CB4D9417004EE3D6B5D0ADFB76D(__this, NULL);
|
|
V_1 = L_24;
|
|
bool L_25 = V_2;
|
|
V_10 = L_25;
|
|
bool L_26 = V_10;
|
|
if (!L_26)
|
|
{
|
|
goto IL_00da;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_27;
|
|
L_27 = Event_get_current_mBD7135E10C392EAD61AC0A0D2489EF758C8A3FAD(NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_28 = ((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_StaticFields*)il2cpp_codegen_static_fields_for(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))->___s_CurrentEvent_90;
|
|
NullCheck(L_27);
|
|
Event_CopyFrom_m2F9B9704FBE156C5D58FF630F7968568C19821F5(L_27, L_28, NULL);
|
|
}
|
|
|
|
IL_00da:
|
|
{
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
int32_t L_29 = ___1_widthMode;
|
|
V_12 = L_29;
|
|
int32_t L_30 = V_12;
|
|
V_11 = L_30;
|
|
int32_t L_31 = V_11;
|
|
if ((((int32_t)L_31) == ((int32_t)1)))
|
|
{
|
|
goto IL_00f0;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00e9;
|
|
}
|
|
|
|
IL_00e9:
|
|
{
|
|
int32_t L_32 = V_11;
|
|
if ((((int32_t)L_32) == ((int32_t)2)))
|
|
{
|
|
goto IL_00f4;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_00f0:
|
|
{
|
|
float L_33 = ___0_desiredWidth;
|
|
V_0 = L_33;
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_00f4:
|
|
{
|
|
float L_34 = V_0;
|
|
float L_35 = ___0_desiredWidth;
|
|
float L_36;
|
|
L_36 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_34, L_35, NULL);
|
|
V_0 = L_36;
|
|
goto IL_00fe;
|
|
}
|
|
|
|
IL_00fe:
|
|
{
|
|
int32_t L_37 = ___3_heightMode;
|
|
V_14 = L_37;
|
|
int32_t L_38 = V_14;
|
|
V_13 = L_38;
|
|
int32_t L_39 = V_13;
|
|
if ((((int32_t)L_39) == ((int32_t)1)))
|
|
{
|
|
goto IL_0114;
|
|
}
|
|
}
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
int32_t L_40 = V_13;
|
|
if ((((int32_t)L_40) == ((int32_t)2)))
|
|
{
|
|
goto IL_0118;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0122;
|
|
}
|
|
|
|
IL_0114:
|
|
{
|
|
float L_41 = ___2_desiredHeight;
|
|
V_1 = L_41;
|
|
goto IL_0122;
|
|
}
|
|
|
|
IL_0118:
|
|
{
|
|
float L_42 = V_1;
|
|
float L_43 = ___2_desiredHeight;
|
|
float L_44;
|
|
L_44 = Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline(L_42, L_43, NULL);
|
|
V_1 = L_44;
|
|
goto IL_0122;
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
float L_45 = V_0;
|
|
float L_46 = V_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_47;
|
|
memset((&L_47), 0, sizeof(L_47));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_47), L_45, L_46, /*hidden argument*/NULL);
|
|
V_15 = L_47;
|
|
goto IL_012d;
|
|
}
|
|
|
|
IL_012d:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_48 = V_15;
|
|
return L_48;
|
|
}
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.IMGUIContainer::GetCurrentClipRect()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D IMGUIContainer_GetCurrentClipRect_mDC9FA62A4A58133960C800981F08FC98CD4448B7 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
bool V_1 = false;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0;
|
|
L_0 = IMGUIContainer_get_lastWorldClip_m8C52B289F6A977B23F442ADA3D3E6250D8115C6D_inline(__this, NULL);
|
|
V_0 = L_0;
|
|
float L_1;
|
|
L_1 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9((&V_0), NULL);
|
|
if ((((float)L_1) == ((float)(0.0f))))
|
|
{
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
float L_2;
|
|
L_2 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&V_0), NULL);
|
|
G_B3_0 = ((((float)L_2) == ((float)(0.0f)))? 1 : 0);
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_4;
|
|
L_4 = VisualElement_get_worldBound_m2E4AF689F0B4AB06E1316348A1E10D4DB2412AC3(__this, NULL);
|
|
V_0 = L_4;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_5 = V_0;
|
|
V_2 = L_5;
|
|
goto IL_0038;
|
|
}
|
|
|
|
IL_0038:
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_6 = V_2;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::GetCurrentTransformAndClip(UnityEngine.UIElements.IMGUIContainer,UnityEngine.Event,UnityEngine.Matrix4x4&,UnityEngine.Rect&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_GetCurrentTransformAndClip_m145DE31D768985A4D999675B9891B2EFE440DBFC (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* ___0_container, Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* ___1_evt, Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* ___2_transform, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* ___3_clipRect, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_0 = ___3_clipRect;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_1 = ___0_container;
|
|
NullCheck(L_1);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_2;
|
|
L_2 = IMGUIContainer_GetCurrentClipRect_mDC9FA62A4A58133960C800981F08FC98CD4448B7(L_1, NULL);
|
|
*(Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)L_0 = L_2;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_3 = ___2_transform;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_4 = ___0_container;
|
|
NullCheck(L_4);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_5;
|
|
L_5 = VisualElement_get_worldTransform_m706C9ADA6ADFBA381EDCAD418040C9F30D42E96A(L_4, NULL);
|
|
*(Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6*)L_3 = L_5;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6 = ___1_evt;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = ___1_evt;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_7, NULL);
|
|
if ((!(((uint32_t)L_8) == ((uint32_t)7))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_9 = ___0_container;
|
|
NullCheck(L_9);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_10;
|
|
L_10 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(L_9, NULL);
|
|
G_B4_0 = ((!(((RuntimeObject*)(BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303*)L_10) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_11 = V_0;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0058;
|
|
}
|
|
}
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_12 = ___2_transform;
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_13 = ___0_container;
|
|
NullCheck(L_13);
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_14;
|
|
L_14 = VisualElement_get_elementPanel_m4B4A37001D55527E4D015E6C6132607071F32B01_inline(L_13, NULL);
|
|
NullCheck(L_14);
|
|
RepaintData_t90534752135661579EC254884F550545D001B5EA* L_15;
|
|
L_15 = VirtualFuncInvoker0< RepaintData_t90534752135661579EC254884F550545D001B5EA* >::Invoke(30 /* UnityEngine.UIElements.RepaintData UnityEngine.UIElements.BaseVisualElementPanel::get_repaintData() */, L_14);
|
|
NullCheck(L_15);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_16;
|
|
L_16 = RepaintData_get_currentOffset_m3892F6A8C226B0710B9A149DDAAF87E1B208675F_inline(L_15, NULL);
|
|
IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* L_17 = ___0_container;
|
|
NullCheck(L_17);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_18;
|
|
L_18 = VisualElement_get_worldTransform_m706C9ADA6ADFBA381EDCAD418040C9F30D42E96A(L_17, NULL);
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_19;
|
|
L_19 = Matrix4x4_op_Multiply_m75E91775655DCA8DFC8EDE0AB787285BB3935162(L_16, L_18, NULL);
|
|
*(Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6*)L_12 = L_19;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_Dispose_m98123D5A659A67CC7462F9F2206C8719733C16EA (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __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(98 /* System.Void UnityEngine.UIElements.IMGUIContainer::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.IMGUIContainer::Dispose(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_Dispose_mED929BBCF6BB7F35771B90B0D540213EE893BBDB (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, bool ___0_disposeManaged, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* G_B3_0 = NULL;
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* G_B2_0 = NULL;
|
|
{
|
|
bool L_0 = ___0_disposeManaged;
|
|
V_0 = L_0;
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* L_2 = __this->___m_ObjectGUIState_66;
|
|
ObjectGUIState_t7BE88DC8B9C7187A77D63BBCBE9DB7B674863C15* L_3 = L_2;
|
|
G_B2_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B3_0 = L_3;
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
NullCheck(G_B3_0);
|
|
ObjectGUIState_Dispose_m156DC13F33DEFB261C8B13EB98A1A3782D182DE8(G_B3_0, NULL);
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.IMGUIContainer::<DoOnGUI>b__56_0()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void IMGUIContainer_U3CDoOnGUIU3Eb__56_0_mC0F063A87D4918330ECE340E3D170D023520F2F9 (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, 8, 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.IMGUIContainer/UxmlFactory::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlFactory__ctor_mFCDC01C4EEAE569AE83062232F846083A90B16D9 (UxmlFactory_tF9683EC71E4F687E36692AD4C22A0F0A79BA5557* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlFactory_2__ctor_m12F479F7C12F413DC7A6B818E3102EE3F725DD7C_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlFactory_2__ctor_m12F479F7C12F413DC7A6B818E3102EE3F725DD7C(__this, UxmlFactory_2__ctor_m12F479F7C12F413DC7A6B818E3102EE3F725DD7C_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.IMGUIContainer/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_mE4F3738BD8B27C175362CBB355B311C99EE4ADA5 (UxmlTraits_tC22B794B5E43920F0989281BB88F1F4115575065* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
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);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlTraits__ctor_m99053329DC8F0D4087968FCA3C60857B853E4346(__this, NULL);
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_0;
|
|
L_0 = UxmlTraits_get_focusIndex_mA04335E58B6371CEA9F27B3DB87FDBBAD44457C3_inline(__this, NULL);
|
|
NullCheck(L_0);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_inline(L_0, 0, TypedUxmlAttributeDescription_1_set_defaultValue_mFD1C3A72D0C15C3CFA5ADF89C98C1B97C69A25E2_RuntimeMethod_var);
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* L_1;
|
|
L_1 = UxmlTraits_get_focusable_m672D1BF4B4ECA421F11891639C82E4BEF4FBD650_inline(__this, NULL);
|
|
NullCheck(L_1);
|
|
TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_inline(L_1, (bool)1, TypedUxmlAttributeDescription_1_set_defaultValue_mCCFDF65293F595155203C9BD9977733342224870_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
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
IL2CPP_EXTERN_C void GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshal_pinvoke(const GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10& unmarshaled, GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_pinvoke& marshaled)
|
|
{
|
|
marshaled.___matrix_0 = unmarshaled.___matrix_0;
|
|
marshaled.___color_1 = unmarshaled.___color_1;
|
|
marshaled.___contentColor_2 = unmarshaled.___contentColor_2;
|
|
marshaled.___backgroundColor_3 = unmarshaled.___backgroundColor_3;
|
|
marshaled.___enabled_4 = static_cast<int32_t>(unmarshaled.___enabled_4);
|
|
marshaled.___changed_5 = static_cast<int32_t>(unmarshaled.___changed_5);
|
|
marshaled.___displayIndex_6 = unmarshaled.___displayIndex_6;
|
|
}
|
|
IL2CPP_EXTERN_C void GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshal_pinvoke_back(const GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_pinvoke& marshaled, GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10& unmarshaled)
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 unmarshaledmatrix_temp_0;
|
|
memset((&unmarshaledmatrix_temp_0), 0, sizeof(unmarshaledmatrix_temp_0));
|
|
unmarshaledmatrix_temp_0 = marshaled.___matrix_0;
|
|
unmarshaled.___matrix_0 = unmarshaledmatrix_temp_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F unmarshaledcolor_temp_1;
|
|
memset((&unmarshaledcolor_temp_1), 0, sizeof(unmarshaledcolor_temp_1));
|
|
unmarshaledcolor_temp_1 = marshaled.___color_1;
|
|
unmarshaled.___color_1 = unmarshaledcolor_temp_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F unmarshaledcontentColor_temp_2;
|
|
memset((&unmarshaledcontentColor_temp_2), 0, sizeof(unmarshaledcontentColor_temp_2));
|
|
unmarshaledcontentColor_temp_2 = marshaled.___contentColor_2;
|
|
unmarshaled.___contentColor_2 = unmarshaledcontentColor_temp_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F unmarshaledbackgroundColor_temp_3;
|
|
memset((&unmarshaledbackgroundColor_temp_3), 0, sizeof(unmarshaledbackgroundColor_temp_3));
|
|
unmarshaledbackgroundColor_temp_3 = marshaled.___backgroundColor_3;
|
|
unmarshaled.___backgroundColor_3 = unmarshaledbackgroundColor_temp_3;
|
|
bool unmarshaledenabled_temp_4 = false;
|
|
unmarshaledenabled_temp_4 = static_cast<bool>(marshaled.___enabled_4);
|
|
unmarshaled.___enabled_4 = unmarshaledenabled_temp_4;
|
|
bool unmarshaledchanged_temp_5 = false;
|
|
unmarshaledchanged_temp_5 = static_cast<bool>(marshaled.___changed_5);
|
|
unmarshaled.___changed_5 = unmarshaledchanged_temp_5;
|
|
int32_t unmarshaleddisplayIndex_temp_6 = 0;
|
|
unmarshaleddisplayIndex_temp_6 = marshaled.___displayIndex_6;
|
|
unmarshaled.___displayIndex_6 = unmarshaleddisplayIndex_temp_6;
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
IL2CPP_EXTERN_C void GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshal_pinvoke_cleanup(GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
IL2CPP_EXTERN_C void GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshal_com(const GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10& unmarshaled, GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_com& marshaled)
|
|
{
|
|
marshaled.___matrix_0 = unmarshaled.___matrix_0;
|
|
marshaled.___color_1 = unmarshaled.___color_1;
|
|
marshaled.___contentColor_2 = unmarshaled.___contentColor_2;
|
|
marshaled.___backgroundColor_3 = unmarshaled.___backgroundColor_3;
|
|
marshaled.___enabled_4 = static_cast<int32_t>(unmarshaled.___enabled_4);
|
|
marshaled.___changed_5 = static_cast<int32_t>(unmarshaled.___changed_5);
|
|
marshaled.___displayIndex_6 = unmarshaled.___displayIndex_6;
|
|
}
|
|
IL2CPP_EXTERN_C void GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshal_com_back(const GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshaled_com& marshaled, GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10& unmarshaled)
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 unmarshaledmatrix_temp_0;
|
|
memset((&unmarshaledmatrix_temp_0), 0, sizeof(unmarshaledmatrix_temp_0));
|
|
unmarshaledmatrix_temp_0 = marshaled.___matrix_0;
|
|
unmarshaled.___matrix_0 = unmarshaledmatrix_temp_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F unmarshaledcolor_temp_1;
|
|
memset((&unmarshaledcolor_temp_1), 0, sizeof(unmarshaledcolor_temp_1));
|
|
unmarshaledcolor_temp_1 = marshaled.___color_1;
|
|
unmarshaled.___color_1 = unmarshaledcolor_temp_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F unmarshaledcontentColor_temp_2;
|
|
memset((&unmarshaledcontentColor_temp_2), 0, sizeof(unmarshaledcontentColor_temp_2));
|
|
unmarshaledcontentColor_temp_2 = marshaled.___contentColor_2;
|
|
unmarshaled.___contentColor_2 = unmarshaledcontentColor_temp_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F unmarshaledbackgroundColor_temp_3;
|
|
memset((&unmarshaledbackgroundColor_temp_3), 0, sizeof(unmarshaledbackgroundColor_temp_3));
|
|
unmarshaledbackgroundColor_temp_3 = marshaled.___backgroundColor_3;
|
|
unmarshaled.___backgroundColor_3 = unmarshaledbackgroundColor_temp_3;
|
|
bool unmarshaledenabled_temp_4 = false;
|
|
unmarshaledenabled_temp_4 = static_cast<bool>(marshaled.___enabled_4);
|
|
unmarshaled.___enabled_4 = unmarshaledenabled_temp_4;
|
|
bool unmarshaledchanged_temp_5 = false;
|
|
unmarshaledchanged_temp_5 = static_cast<bool>(marshaled.___changed_5);
|
|
unmarshaled.___changed_5 = unmarshaledchanged_temp_5;
|
|
int32_t unmarshaleddisplayIndex_temp_6 = 0;
|
|
unmarshaleddisplayIndex_temp_6 = marshaled.___displayIndex_6;
|
|
unmarshaled.___displayIndex_6 = unmarshaleddisplayIndex_temp_6;
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.IMGUIContainer/GUIGlobals
|
|
IL2CPP_EXTERN_C void GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_marshal_com_cleanup(GUIGlobals_tA6082A955224515E1D82F5B41D84A0CD35A9CF10_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
|
|
// UnityEngine.UIElements.IGenericMenu UnityEngine.UIElements.DropdownUtility::CreateDropdown()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* DropdownUtility_CreateDropdown_m398902B5FC081FECDAC3F53E1729D493DAF27156 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* V_1 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
{
|
|
Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B* L_0 = ((DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_StaticFields*)il2cpp_codegen_static_fields_for(DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_il2cpp_TypeInfo_var))->___MakeDropdownFunc_0;
|
|
if (L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1* L_1 = (GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1*)il2cpp_codegen_object_new(GenericDropdownMenu_t4CD56B241F3F5667305283313EE5BB5DF7D0C6D1_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
GenericDropdownMenu__ctor_mE8DFF74B09DE76E26C5F4352613662ADAC2156C8(L_1, NULL);
|
|
V_0 = L_1;
|
|
RuntimeObject* L_2 = V_0;
|
|
G_B3_0 = L_2;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
Func_1_t19B4AA7D8A9D43C2117CE38228D976097D91CF6B* L_3 = ((DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_StaticFields*)il2cpp_codegen_static_fields_for(DropdownUtility_t1EE27ECEE1A5E2FE3BC8906272A8132D7BA45686_il2cpp_TypeInfo_var))->___MakeDropdownFunc_0;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = Func_1_Invoke_m30938507AE1C1E98A96E14635C5B89CCE625F6A1_inline(L_3, NULL);
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
V_1 = G_B3_0;
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
RuntimeObject* 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
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
IL2CPP_EXTERN_C void CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshal_pinvoke(const CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A& unmarshaled, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___font_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'CursorPositionStylePainterParameters': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___font_2Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshal_pinvoke_back(const CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_pinvoke& marshaled, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A& unmarshaled)
|
|
{
|
|
Exception_t* ___font_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'CursorPositionStylePainterParameters': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___font_2Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
IL2CPP_EXTERN_C void CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshal_pinvoke_cleanup(CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
IL2CPP_EXTERN_C void CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshal_com(const CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A& unmarshaled, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___font_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'CursorPositionStylePainterParameters': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___font_2Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshal_com_back(const CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_com& marshaled, CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A& unmarshaled)
|
|
{
|
|
Exception_t* ___font_2Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'font' of type 'CursorPositionStylePainterParameters': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___font_2Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.CursorPositionStylePainterParameters
|
|
IL2CPP_EXTERN_C void CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshal_com_cleanup(CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// UnityEngine.UIElements.CursorPositionStylePainterParameters UnityEngine.UIElements.CursorPositionStylePainterParameters::GetDefault(UnityEngine.UIElements.VisualElement,System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A CursorPositionStylePainterParameters_GetDefault_mB62005EA970D32B5E1F765FE2765368F93C9DBC6 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, String_t* ___1_text, const RuntimeMethod* method)
|
|
{
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A* G_B2_0 = NULL;
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A* G_B1_0 = NULL;
|
|
float G_B3_0 = 0.0f;
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A* G_B3_1 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_1;
|
|
L_1 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(L_0, NULL);
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C L_2 = (*(ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C*)L_1);
|
|
V_0 = L_2;
|
|
il2cpp_codegen_initobj((&V_2), sizeof(CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ve;
|
|
NullCheck(L_3);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_4;
|
|
L_4 = VisualElement_get_contentRect_m4D3C57AFA3D4DE425103F3AF9F2829EABA741A07(L_3, NULL);
|
|
(&V_2)->___rect_0 = L_4;
|
|
String_t* L_5 = ___1_text;
|
|
(&V_2)->___text_1 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_2)->___text_1), (void*)L_5);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = ___0_ve;
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_7;
|
|
L_7 = TextUtilities_GetFont_mE61706BE8FCD6358404E7251B48FD2E46F13F1DF(L_6, NULL);
|
|
(&V_2)->___font_2 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_2)->___font_2), (void*)L_7);
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_8;
|
|
L_8 = ComputedStyle_get_fontSize_m8EC7665FA467E17E3FF44A3A3AA61B1BB1D79272((&V_0), NULL);
|
|
V_3 = L_8;
|
|
float L_9;
|
|
L_9 = Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline((&V_3), NULL);
|
|
(&V_2)->___fontSize_3 = il2cpp_codegen_cast_double_to_int<int32_t>(L_9);
|
|
int32_t L_10;
|
|
L_10 = ComputedStyle_get_unityFontStyleAndWeight_mE355186855A01D29AB8AD3D424E356D34ACDAD53((&V_0), NULL);
|
|
(&V_2)->___fontStyle_4 = L_10;
|
|
int32_t L_11;
|
|
L_11 = ComputedStyle_get_unityTextAlign_m189359805CF935DB32D33D9C9E42887EBCA63A44((&V_0), NULL);
|
|
(&V_2)->___anchor_5 = L_11;
|
|
int32_t L_12;
|
|
L_12 = ComputedStyle_get_whiteSpace_m4A7A9F132EDFE87B9E119DC21A25FB0FAB4D2D2D((&V_0), NULL);
|
|
G_B1_0 = (&V_2);
|
|
if (!L_12)
|
|
{
|
|
G_B2_0 = (&V_2);
|
|
goto IL_007c;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = (0.0f);
|
|
G_B3_1 = G_B1_0;
|
|
goto IL_008b;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = ___0_ve;
|
|
NullCheck(L_13);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_14;
|
|
L_14 = VisualElement_get_contentRect_m4D3C57AFA3D4DE425103F3AF9F2829EABA741A07(L_13, NULL);
|
|
V_4 = L_14;
|
|
float L_15;
|
|
L_15 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9((&V_4), NULL);
|
|
G_B3_0 = L_15;
|
|
G_B3_1 = G_B2_0;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
G_B3_1->___wordWrapWidth_6 = G_B3_0;
|
|
(&V_2)->___richText_7 = (bool)0;
|
|
(&V_2)->___cursorIndex_8 = 0;
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A L_16 = V_2;
|
|
V_1 = L_16;
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A L_17 = V_1;
|
|
V_5 = L_17;
|
|
goto IL_00a7;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A L_18 = V_5;
|
|
return L_18;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.TextNativeSettings UnityEngine.UIElements.CursorPositionStylePainterParameters::GetTextNativeSettings(System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 CursorPositionStylePainterParameters_GetTextNativeSettings_mFB0A41E2E939BE85A76F31604E8D36B8F0170049 (CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A* __this, float ___0_scaling, const RuntimeMethod* method)
|
|
{
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062));
|
|
String_t* L_0 = __this->___text_1;
|
|
(&V_0)->___text_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___text_0), (void*)L_0);
|
|
Font_tC95270EA3198038970422D78B74A7F2E218A96B6* L_1 = __this->___font_2;
|
|
(&V_0)->___font_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_0)->___font_1), (void*)L_1);
|
|
int32_t L_2 = __this->___fontSize_3;
|
|
(&V_0)->___size_2 = L_2;
|
|
float L_3 = ___0_scaling;
|
|
(&V_0)->___scaling_3 = L_3;
|
|
int32_t L_4 = __this->___fontStyle_4;
|
|
(&V_0)->___style_4 = L_4;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_5;
|
|
L_5 = Color_get_white_m068F5AF879B0FCA584E3693F762EA41BB65532C6_inline(NULL);
|
|
(&V_0)->___color_5 = L_5;
|
|
int32_t L_6 = __this->___anchor_5;
|
|
(&V_0)->___anchor_6 = L_6;
|
|
(&V_0)->___wordWrap_7 = (bool)1;
|
|
float L_7 = __this->___wordWrapWidth_6;
|
|
(&V_0)->___wordWrapWidth_8 = L_7;
|
|
bool L_8 = __this->___richText_7;
|
|
(&V_0)->___richText_9 = L_8;
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_9 = V_0;
|
|
V_1 = L_9;
|
|
goto IL_0084;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 CursorPositionStylePainterParameters_GetTextNativeSettings_mFB0A41E2E939BE85A76F31604E8D36B8F0170049_AdjustorThunk (RuntimeObject* __this, float ___0_scaling, const RuntimeMethod* method)
|
|
{
|
|
CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<CursorPositionStylePainterParameters_tB79C17871EE8D6764B717689E7E93478D54BC81A*>(__this + _offset);
|
|
TextNativeSettings_tE9D302AD381537B4FD42C3D02583F719CFF40062 _returnValue;
|
|
_returnValue = CursorPositionStylePainterParameters_GetTextNativeSettings_mFB0A41E2E939BE85A76F31604E8D36B8F0170049(_thisAdjusted, ___0_scaling, 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.DisposeHelper::NotifyDisposedUsed(System.IDisposable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void DisposeHelper_NotifyDisposedUsed_m7A9C988A4B96B0920E470EEA604BA42C5ABB437F (RuntimeObject* ___0_disposable, 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*)&_stringLiteralD81452C86BFC4304CE462191543453B5531C824C);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDF044C7EBE7E45C9572204BF0DEA5DFD05D06253);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
RuntimeObject* L_0 = ___0_disposable;
|
|
NullCheck(L_0);
|
|
Type_t* L_1;
|
|
L_1 = Object_GetType_mE10A8FC1E57F3DF29972CCBC026C2DC3942263B3(L_0, NULL);
|
|
NullCheck(L_1);
|
|
String_t* L_2;
|
|
L_2 = VirtualFuncInvoker0< String_t* >::Invoke(26 /* System.String System.Type::get_FullName() */, L_1);
|
|
String_t* L_3;
|
|
L_3 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(_stringLiteralD81452C86BFC4304CE462191543453B5531C824C, L_2, _stringLiteralDF044C7EBE7E45C9572204BF0DEA5DFD05D06253, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_3, 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.Focusable::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable__ctor_mF8FE1D904D2C1A153216609D55118A2011F6892F (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
__this->___isIMGUIContainer_5 = (bool)0;
|
|
CallbackEventHandler__ctor_m28A3E3AD860D0F5EAC06F6AA0439D47A32C8303E(__this, NULL);
|
|
Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline(__this, (bool)1, NULL);
|
|
Focusable_set_tabIndex_m1D41B758C7AA057707AE7CC919ED868075575E96_inline(__this, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Focusable::get_focusable()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Focusable_get_focusable_m15258DAA1E80EB42FBCF59298080030DA5360F6F (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CfocusableU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::set_focusable(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CfocusableU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.Focusable::get_tabIndex()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CtabIndexU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::set_tabIndex(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_set_tabIndex_m1D41B758C7AA057707AE7CC919ED868075575E96 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtabIndexU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Focusable::get_delegatesFocus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Focusable_get_delegatesFocus_m3EC6CEC9B7570A921855A9A91291FF4AA45D40AC (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_DelegatesFocus_3;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::set_delegatesFocus(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_set_delegatesFocus_mC691C4199C88BEF0C55A7F7FD2C6ADDD00402D6F (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
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;
|
|
{
|
|
NullCheck(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)__this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)));
|
|
bool L_0;
|
|
L_0 = VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)__this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral6F98B6CA9694ECBEB1966B29924748589F905C16)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Focusable_set_delegatesFocus_mC691C4199C88BEF0C55A7F7FD2C6ADDD00402D6F_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bool L_3 = ___0_value;
|
|
__this->___m_DelegatesFocus_3 = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Focusable::get_excludeFromFocusRing()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Focusable_get_excludeFromFocusRing_m02C43592E42B20FF4E0CABF90F6413F81CEF51DF (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_ExcludeFromFocusRing_4;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::set_excludeFromFocusRing(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_set_excludeFromFocusRing_m965E9967283F246BBFC2839769018AB77B0F90F7 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
NullCheck(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)__this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)));
|
|
bool L_0;
|
|
L_0 = VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)CastclassClass((RuntimeObject*)__this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), NULL);
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB* L_2 = (InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&InvalidOperationException_t5DDE4D49B7405FAAB1E4576F4715A42A3FAD4BAB_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
InvalidOperationException__ctor_mE4CB6F4712AB6D99A2358FBAE2E052B3EE976162(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral3648F9FE5F907A9AE1C04209772C137A134D2939)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Focusable_set_excludeFromFocusRing_m965E9967283F246BBFC2839769018AB77B0F90F7_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
bool L_3 = ___0_value;
|
|
__this->___m_ExcludeFromFocusRing_4 = L_3;
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Focusable_get_canGrabFocus_m82D979EA40D0E002EDA1831FC51781BBB7CC3F47 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0;
|
|
L_0 = Focusable_get_focusable_m15258DAA1E80EB42FBCF59298080030DA5360F6F_inline(__this, NULL);
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::Focus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_Focus_m0F43EE39C2255D0BD7A089227F2AF032BC1FD2C8 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_2 = NULL;
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_0;
|
|
L_0 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
V_0 = (bool)((!(((RuntimeObject*)(FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
bool L_2;
|
|
L_2 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus() */, __this);
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0039;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4;
|
|
L_4 = Focusable_GetFocusDelegate_m7BF3D03D334FD0BB0C00B07227118C94127BEB83(__this, NULL);
|
|
V_2 = L_4;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_5;
|
|
L_5 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = V_2;
|
|
NullCheck(L_5);
|
|
FocusController_SwitchFocus_m6C1D4D97B08E3D7686F545CF4D8869313E808E4D(L_5, L_6, (bool)((((int32_t)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)__this) == ((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0), 1, NULL);
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_8;
|
|
L_8 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
NullCheck(L_8);
|
|
FocusController_SwitchFocus_m6C1D4D97B08E3D7686F545CF4D8869313E808E4D(L_8, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, (bool)0, 1, NULL);
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::Blur()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_Blur_m3BC037063E29343EB0D55DAA93D76DC0F2BB7E15 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* G_B2_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* G_B1_0 = NULL;
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_0;
|
|
L_0 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
FocusController_Blur_mC1CFD475C4B0BBB756E44567F374A534C1C6219B(G_B2_0, __this, (bool)0, 1, NULL);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::BlurImmediately()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_BlurImmediately_m842A3CC7A2AA8E788F977D2E6F6995B3B155DCB7 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* G_B2_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* G_B1_0 = NULL;
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_0;
|
|
L_0 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
NullCheck(G_B2_0);
|
|
FocusController_Blur_mC1CFD475C4B0BBB756E44567F374A534C1C6219B(G_B2_0, __this, (bool)0, 2, NULL);
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.Focusable::GetFocusDelegate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* Focusable_GetFocusDelegate_m7BF3D03D334FD0BB0C00B07227118C94127BEB83 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __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;
|
|
}
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_2 = NULL;
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
V_0 = __this;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1;
|
|
L_1 = Focusable_GetFirstFocusableChild_mA5CDE2800BF048A5A00AF10160E550969C5D0420(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_0, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), NULL);
|
|
V_0 = L_1;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = Focusable_get_delegatesFocus_m3EC6CEC9B7570A921855A9A91291FF4AA45D40AC(L_3, NULL);
|
|
G_B5_0 = ((int32_t)(L_4));
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
G_B5_0 = 0;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
V_1 = (bool)G_B5_0;
|
|
bool L_5 = V_1;
|
|
if (L_5)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = V_0;
|
|
V_2 = L_6;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = V_2;
|
|
return L_7;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.Focusable::GetFirstFocusableChild(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* Focusable_GetFirstFocusableChild_mA5CDE2800BF048A5A00AF10160E550969C5D0420 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
bool V_7 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_8 = NULL;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B9_0 = 0;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_1;
|
|
L_1 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
int32_t L_2;
|
|
L_2 = Hierarchy_get_childCount_mAD31B42C0FF9B64AAF6A8CF23F22024B3F9542D5((&V_1), NULL);
|
|
V_0 = L_2;
|
|
V_2 = 0;
|
|
goto IL_00ad;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ve;
|
|
NullCheck(L_3);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_4;
|
|
L_4 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_3, NULL);
|
|
V_1 = L_4;
|
|
int32_t L_5 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = Hierarchy_get_Item_mBA5811C28D9E7FA48D0F10603A95F8CF248C3467((&V_1), L_5, NULL);
|
|
V_3 = L_6;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = V_3;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus() */, L_7);
|
|
if (!L_8)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = V_3;
|
|
NullCheck(L_9);
|
|
int32_t L_10;
|
|
L_10 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_9, NULL);
|
|
G_B4_0 = ((((int32_t)((((int32_t)L_10) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
V_5 = (bool)G_B4_0;
|
|
bool L_11 = V_5;
|
|
if (!L_11)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = V_3;
|
|
V_6 = L_12;
|
|
goto IL_00bf;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_14;
|
|
L_14 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_13, NULL);
|
|
V_1 = L_14;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15;
|
|
L_15 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_1), NULL);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0073;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = V_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = V_3;
|
|
NullCheck(L_17);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_18;
|
|
L_18 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_17, NULL);
|
|
V_1 = L_18;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19;
|
|
L_19 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_1), NULL);
|
|
NullCheck(L_19);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20;
|
|
L_20 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(96 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_19);
|
|
G_B9_0 = ((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_16) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_20))? 1 : 0);
|
|
goto IL_0074;
|
|
}
|
|
|
|
IL_0073:
|
|
{
|
|
G_B9_0 = 0;
|
|
}
|
|
|
|
IL_0074:
|
|
{
|
|
V_4 = (bool)G_B9_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = V_3;
|
|
NullCheck(L_21);
|
|
bool L_22;
|
|
L_22 = VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA(L_21, NULL);
|
|
if (L_22)
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}
|
|
{
|
|
bool L_23 = V_4;
|
|
G_B12_0 = ((((int32_t)L_23) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0086;
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_0086:
|
|
{
|
|
V_7 = (bool)G_B12_0;
|
|
bool L_24 = V_7;
|
|
if (!L_24)
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25 = V_3;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_26;
|
|
L_26 = Focusable_GetFirstFocusableChild_mA5CDE2800BF048A5A00AF10160E550969C5D0420(L_25, NULL);
|
|
V_8 = L_26;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_27 = V_8;
|
|
V_9 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_27) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_28 = V_9;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00a7;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_29 = V_8;
|
|
V_6 = L_29;
|
|
goto IL_00bf;
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
int32_t L_30 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_30, 1));
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
int32_t L_31 = V_2;
|
|
int32_t L_32 = V_0;
|
|
V_10 = (bool)((((int32_t)L_31) < ((int32_t)L_32))? 1 : 0);
|
|
bool L_33 = V_10;
|
|
if (L_33)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
V_6 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_00bf;
|
|
}
|
|
|
|
IL_00bf:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_34 = V_6;
|
|
return L_34;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::ExecuteDefaultAction(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_ExecuteDefaultAction_m8F6E8C1FF652858076CECA81848EE82AA1BBB73C (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
CallbackEventHandler_ExecuteDefaultAction_m35D6E4F88A534B7E254C14960157D3FA47F51A6E(__this, L_0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
Focusable_ProcessEvent_m5379B2B75E0748A3B0BDC20ADEA9C410278819C2(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::ExecuteDefaultActionDisabled(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_ExecuteDefaultActionDisabled_m27C3EDF3C118C06633B508FB6164BEBD313C97F1 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
CallbackEventHandler_ExecuteDefaultActionDisabled_mB48BD30EF278523BB75A33F503666A804AAFAFEC(__this, L_0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
Focusable_ProcessEvent_m5379B2B75E0748A3B0BDC20ADEA9C410278819C2(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.Focusable::ProcessEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Focusable_ProcessEvent_m5379B2B75E0748A3B0BDC20ADEA9C410278819C2 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* G_B6_0 = NULL;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* G_B5_0 = NULL;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
if (!L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
NullCheck(L_1);
|
|
RuntimeObject* L_2;
|
|
L_2 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_1, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
RuntimeObject* L_4;
|
|
L_4 = EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline(L_3, NULL);
|
|
G_B3_0 = ((((RuntimeObject*)(RuntimeObject*)L_2) == ((RuntimeObject*)(RuntimeObject*)L_4))? 1 : 0);
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_6;
|
|
L_6 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, __this);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_7 = L_6;
|
|
G_B5_0 = L_7;
|
|
if (L_7)
|
|
{
|
|
G_B6_0 = L_7;
|
|
goto IL_0026;
|
|
}
|
|
}
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___0_evt;
|
|
NullCheck(G_B6_0);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_9;
|
|
L_9 = FocusController_SwitchFocusOnEvent_m232D08BF98D608576E1B00506B02C21B37B09FFD(G_B6_0, L_8, NULL);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
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.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::get_unspecified()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CunspecifiedU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::get_none()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CnoneU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.FocusChangeDirection::get_lastValue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_lastValue_m52B79A0EB6A80606939B69A21ABF225C558B5051 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3ClastValueU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusChangeDirection::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusChangeDirection__ctor_m13132F27B5ABFCBEE04738925694860F1AA037B3 (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___0_value;
|
|
__this->___m_Value_3 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.FocusChangeDirection::op_Implicit(UnityEngine.UIElements.FocusChangeDirection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FocusChangeDirection_op_Implicit_m4A30610620E614E2C9DA249516577CEBBD083085 (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___0_fcd, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ___0_fcd;
|
|
if (L_0)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_1 = ___0_fcd;
|
|
NullCheck(L_1);
|
|
int32_t L_2 = L_1->___m_Value_3;
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusChangeDirection::System.IDisposable.Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusChangeDirection_System_IDisposable_Dispose_m043C65F2B18D2E2CCCBB12B4F447FFEF2DFAB406 (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.UIElements.FocusChangeDirection::Dispose() */, __this);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusChangeDirection::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusChangeDirection_Dispose_m18B4B88B2F821DBF24FC929E32E58C4FE088C425 (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusChangeDirection::ApplyTo(UnityEngine.UIElements.FocusController,UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusChangeDirection_ApplyTo_mB701DA4D75072F6614337F2B5CF68CE2FC0FB9EA (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* __this, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___0_focusController, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_f, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_0 = ___0_focusController;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___1_f;
|
|
NullCheck(L_0);
|
|
FocusController_SwitchFocus_m728F75BD16EADBFF98FADABA7686D0B11539922C(L_0, L_1, __this, (bool)0, 1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusChangeDirection::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusChangeDirection__cctor_mB8FC604E5E4B34070C1D3F665A4A6B3175A2AAFA (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)il2cpp_codegen_object_new(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
FocusChangeDirection__ctor_m13132F27B5ABFCBEE04738925694860F1AA037B3(L_0, (-1), NULL);
|
|
((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CunspecifiedU3Ek__BackingField_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CunspecifiedU3Ek__BackingField_0), (void*)L_0);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_1 = (FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)il2cpp_codegen_object_new(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
FocusChangeDirection__ctor_m13132F27B5ABFCBEE04738925694860F1AA037B3(L_1, 0, NULL);
|
|
((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CnoneU3Ek__BackingField_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CnoneU3Ek__BackingField_1), (void*)L_1);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2;
|
|
L_2 = FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline(NULL);
|
|
((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3ClastValueU3Ek__BackingField_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3ClastValueU3Ek__BackingField_2), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void UnityEngine.UIElements.FocusController::.ctor(UnityEngine.UIElements.IFocusRing)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController__ctor_m9C8B31AC9F9CB4CB535FDE39FA7E3276237A4A02 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, RuntimeObject* ___0_focusRing, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m73786708BB5BF136266E56407D245B8241A7F24C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_0 = (List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66*)il2cpp_codegen_object_new(List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_m73786708BB5BF136266E56407D245B8241A7F24C(L_0, List_1__ctor_m73786708BB5BF136266E56407D245B8241A7F24C_RuntimeMethod_var);
|
|
__this->___m_FocusedElements_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FocusedElements_1), (void*)L_0);
|
|
__this->___m_PendingFocusCount_4 = 0;
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
RuntimeObject* L_1 = ___0_focusRing;
|
|
__this->___U3CfocusRingU3Ek__BackingField_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CfocusRingU3Ek__BackingField_0), (void*)L_1);
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(__this, 0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IFocusRing UnityEngine.UIElements.FocusController::get_focusRing()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* FocusController_get_focusRing_m605E2D611EC0BE81B08D3DBA4C596E1B834AC02B (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CfocusRingU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::get_focusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_0 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_1 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B3_0 = NULL;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0;
|
|
L_0 = FocusController_GetRetargetedFocusedElement_m5FE220546B2647E0838540C718AF9632A03B2401(__this, (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)NULL, NULL);
|
|
V_0 = L_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = V_0;
|
|
bool L_2;
|
|
L_2 = FocusController_IsLocalElement_m04A8A8FDE74955742802A06DBC02BE99159C6D9F(__this, L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(NULL));
|
|
goto IL_0016;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = V_0;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
V_1 = G_B3_0;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.FocusController::IsFocused(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_f;
|
|
bool L_1;
|
|
L_1 = FocusController_IsLocalElement_m04A8A8FDE74955742802A06DBC02BE99159C6D9F(__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_005e;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_3 = __this->___m_FocusedElements_1;
|
|
NullCheck(L_3);
|
|
Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0 L_4;
|
|
L_4 = List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0(L_3, List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0_RuntimeMethod_var);
|
|
V_2 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_004b:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034((&V_2), Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0040_1;
|
|
}
|
|
|
|
IL_0022_1:
|
|
{
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_5;
|
|
L_5 = Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_inline((&V_2), Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_RuntimeMethod_var);
|
|
V_3 = L_5;
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_6 = V_3;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = L_6.___m_FocusedElement_1;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = ___0_f;
|
|
V_4 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_7) == ((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_8))? 1 : 0);
|
|
bool L_9 = V_4;
|
|
if (!L_9)
|
|
{
|
|
goto IL_003f_1;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_003f_1:
|
|
{
|
|
}
|
|
|
|
IL_0040_1:
|
|
{
|
|
bool L_10;
|
|
L_10 = Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8((&V_2), Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8_RuntimeMethod_var);
|
|
if (L_10)
|
|
{
|
|
goto IL_0022_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_005a;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_005e;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
bool L_11 = V_1;
|
|
return L_11;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::GetRetargetedFocusedElement(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetRetargetedFocusedElement_m5FE220546B2647E0838540C718AF9632A03B2401 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_retargetAgainst, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_4 = NULL;
|
|
bool V_5 = false;
|
|
Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
bool V_8 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B3_0 = NULL;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_retargetAgainst;
|
|
if (L_0)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = ___0_retargetAgainst;
|
|
NullCheck(L_1);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_2;
|
|
L_2 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_1, NULL);
|
|
V_1 = L_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_1), NULL);
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = G_B3_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_0;
|
|
V_2 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_4) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_6 = __this->___m_FocusedElements_1;
|
|
NullCheck(L_6);
|
|
int32_t L_7;
|
|
L_7 = List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_inline(L_6, List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_RuntimeMethod_var);
|
|
V_3 = (bool)((((int32_t)L_7) > ((int32_t)0))? 1 : 0);
|
|
bool L_8 = V_3;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0056;
|
|
}
|
|
}
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_9 = __this->___m_FocusedElements_1;
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_10 = __this->___m_FocusedElements_1;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_inline(L_10, List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_RuntimeMethod_var);
|
|
NullCheck(L_9);
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_12;
|
|
L_12 = List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63(L_9, ((int32_t)il2cpp_codegen_subtract(L_11, 1)), List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63_RuntimeMethod_var);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_13 = L_12.___m_FocusedElement_1;
|
|
V_4 = L_13;
|
|
goto IL_00e9;
|
|
}
|
|
|
|
IL_0056:
|
|
{
|
|
goto IL_00e4;
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
goto IL_0070;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_15;
|
|
L_15 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_14, NULL);
|
|
V_1 = L_15;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16;
|
|
L_16 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_1), NULL);
|
|
V_0 = L_16;
|
|
}
|
|
|
|
IL_0070:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
bool L_18;
|
|
L_18 = VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA(L_17, NULL);
|
|
if (L_18)
|
|
{
|
|
goto IL_008b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = V_0;
|
|
NullCheck(L_19);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_20;
|
|
L_20 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_19, NULL);
|
|
V_1 = L_20;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21;
|
|
L_21 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_1), NULL);
|
|
G_B12_0 = ((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_21) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_008c;
|
|
}
|
|
|
|
IL_008b:
|
|
{
|
|
G_B12_0 = 0;
|
|
}
|
|
|
|
IL_008c:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_22 = V_5;
|
|
if (L_22)
|
|
{
|
|
goto IL_005f;
|
|
}
|
|
}
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_23 = __this->___m_FocusedElements_1;
|
|
NullCheck(L_23);
|
|
Enumerator_tC40C530F62540E93BDAAFF42E8BDE3B3B3328EA0 L_24;
|
|
L_24 = List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0(L_23, List_1_GetEnumerator_mBF7B1E08D38E0651BF5E200997E3A903B018CDC0_RuntimeMethod_var);
|
|
V_6 = L_24;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00d4:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034((&V_6), Enumerator_Dispose_m5FF3A7B62D564BACBD69B456F802A6E283C47034_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_00c9_1;
|
|
}
|
|
|
|
IL_00a2_1:
|
|
{
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_25;
|
|
L_25 = Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_inline((&V_6), Enumerator_get_Current_m77DBD0307C69F473DA6A47070D76091FABC89DBE_RuntimeMethod_var);
|
|
V_7 = L_25;
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_26 = V_7;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27 = L_26.___m_SubTreeRoot_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_28 = V_0;
|
|
V_8 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_27) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_28))? 1 : 0);
|
|
bool L_29 = V_8;
|
|
if (!L_29)
|
|
{
|
|
goto IL_00c8_1;
|
|
}
|
|
}
|
|
{
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_30 = V_7;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_31 = L_30.___m_FocusedElement_1;
|
|
V_4 = L_31;
|
|
goto IL_00e9;
|
|
}
|
|
|
|
IL_00c8_1:
|
|
{
|
|
}
|
|
|
|
IL_00c9_1:
|
|
{
|
|
bool L_32;
|
|
L_32 = Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8((&V_6), Enumerator_MoveNext_m2A06FB8CD851A83B6FA4E393CCBEF6AD960288E8_RuntimeMethod_var);
|
|
if (L_32)
|
|
{
|
|
goto IL_00a2_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00e3;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00e3:
|
|
{
|
|
}
|
|
|
|
IL_00e4:
|
|
{
|
|
V_4 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_00e9;
|
|
}
|
|
|
|
IL_00e9:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_33 = V_4;
|
|
return L_33;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::GetLeafFocusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_1 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_2 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B4_0 = NULL;
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_0 = __this->___m_FocusedElements_1;
|
|
NullCheck(L_0);
|
|
int32_t L_1;
|
|
L_1 = List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_inline(L_0, List_1_get_Count_mF80AAA806369D258F6DD70E7C312BDCB10A69A9B_RuntimeMethod_var);
|
|
V_0 = (bool)((((int32_t)L_1) > ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_3 = __this->___m_FocusedElements_1;
|
|
NullCheck(L_3);
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_4;
|
|
L_4 = List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63(L_3, 0, List_1_get_Item_mBD1D12956B0BC820EDB39DE6B983C74A30A6DB63_RuntimeMethod_var);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = L_4.___m_FocusedElement_1;
|
|
V_1 = L_5;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = V_1;
|
|
bool L_7;
|
|
L_7 = FocusController_IsLocalElement_m04A8A8FDE74955742802A06DBC02BE99159C6D9F(__this, L_6, NULL);
|
|
if (L_7)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
G_B4_0 = ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)(NULL));
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = V_1;
|
|
G_B4_0 = L_8;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
V_2 = G_B4_0;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
V_2 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.FocusController::IsLocalElement(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_IsLocalElement_m04A8A8FDE74955742802A06DBC02BE99159C6D9F (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* G_B3_0 = NULL;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_f;
|
|
if (L_0)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)(NULL));
|
|
goto IL_000d;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___0_f;
|
|
NullCheck(L_1);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_2;
|
|
L_2 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, L_1);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
V_0 = (bool)((((RuntimeObject*)(FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)G_B3_0) == ((RuntimeObject*)(FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*)__this))? 1 : 0);
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.FocusController::IsPendingFocus(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_IsPendingFocus_m8606F15235FAD8AF37FFAC9A1B120758DC39A3ED (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, 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;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = __this->___m_LastPendingFocusedElement_3;
|
|
V_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_0, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___0_f;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
V_1 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_1) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_2))? 1 : 0);
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)1;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_5;
|
|
L_5 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_4, NULL);
|
|
V_3 = L_5;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_3), NULL);
|
|
V_0 = L_6;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = V_0;
|
|
V_4 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_7) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_8 = V_4;
|
|
if (L_8)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
bool L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::SetFocusToLastFocusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_SetFocusToLastFocusedElement_m8F3D665EF5C13DDA6B3370604269660F0794C191 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = __this->___m_LastFocusedElement_2;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = __this->___m_LastFocusedElement_2;
|
|
G_B3_0 = ((((int32_t)((!(((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)IsInstClass((RuntimeObject*)L_1, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = __this->___m_LastFocusedElement_2;
|
|
NullCheck(L_3);
|
|
VirtualActionInvoker0::Invoke(17 /* System.Void UnityEngine.UIElements.Focusable::Focus() */, L_3);
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::BlurLastFocusedElement()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_BlurLastFocusedElement_m5963B8A75F5106018944C6CD09C3C84D6D079F72 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_1 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = __this->___m_LastFocusedElement_2;
|
|
if (!L_0)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = __this->___m_LastFocusedElement_2;
|
|
G_B3_0 = ((((int32_t)((!(((RuntimeObject*)(IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)IsInstClass((RuntimeObject*)L_1, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var))) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = __this->___m_LastFocusedElement_2;
|
|
V_1 = L_3;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4 = __this->___m_LastFocusedElement_2;
|
|
NullCheck(L_4);
|
|
VirtualActionInvoker0::Invoke(18 /* System.Void UnityEngine.UIElements.Focusable::Blur() */, L_4);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = V_1;
|
|
__this->___m_LastFocusedElement_2 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LastFocusedElement_2), (void*)L_5);
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::DoFocusChange(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_DoFocusChange_mF171453239CB9F0DF03E0E5ABFD48AEC49DF9CB4 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m9989CB26C4A11F3FBC18A300F9CC329897595091_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m6E8418F8671E7413DAF4337D72A04C4713AD4E99_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_0 = __this->___m_FocusedElements_1;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m6E8418F8671E7413DAF4337D72A04C4713AD4E99_inline(L_0, List_1_Clear_m6E8418F8671E7413DAF4337D72A04C4713AD4E99_RuntimeMethod_var);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___0_f;
|
|
V_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_1, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_0016:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_3;
|
|
L_3 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_2, NULL);
|
|
V_2 = L_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_2), NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA(L_5, NULL);
|
|
G_B4_0 = ((int32_t)(L_6));
|
|
goto IL_0030;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
G_B4_0 = 1;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
V_1 = (bool)G_B4_0;
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
List_1_t1E327CB749CA1F2F2DA41B2D4DFF57FD6BE0FF66* L_8 = __this->___m_FocusedElements_1;
|
|
il2cpp_codegen_initobj((&V_3), sizeof(FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = V_0;
|
|
(&V_3)->___m_SubTreeRoot_0 = L_9;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_3)->___m_SubTreeRoot_0), (void*)L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10 = ___0_f;
|
|
(&V_3)->___m_FocusedElement_1 = L_10;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_3)->___m_FocusedElement_1), (void*)L_10);
|
|
FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF L_11 = V_3;
|
|
NullCheck(L_8);
|
|
List_1_Add_m9989CB26C4A11F3FBC18A300F9CC329897595091_inline(L_8, L_11, List_1_Add_m9989CB26C4A11F3FBC18A300F9CC329897595091_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = V_0;
|
|
___0_f = L_12;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = V_0;
|
|
NullCheck(L_13);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_14;
|
|
L_14 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_13, NULL);
|
|
V_2 = L_14;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15;
|
|
L_15 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_2), NULL);
|
|
V_0 = L_15;
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = V_0;
|
|
V_4 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_16) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_17 = V_4;
|
|
if (L_17)
|
|
{
|
|
goto IL_0016;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_18 = __this->___m_PendingFocusCount_4;
|
|
__this->___m_PendingFocusCount_4 = ((int32_t)il2cpp_codegen_subtract(L_18, 1));
|
|
int32_t L_19 = __this->___m_PendingFocusCount_4;
|
|
V_5 = (bool)((((int32_t)L_19) == ((int32_t)0))? 1 : 0);
|
|
bool L_20 = V_5;
|
|
if (!L_20)
|
|
{
|
|
goto IL_009c;
|
|
}
|
|
}
|
|
{
|
|
__this->___m_LastPendingFocusedElement_3 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LastPendingFocusedElement_3), (void*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL);
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::FocusNextInDirection(UnityEngine.UIElements.FocusChangeDirection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_FocusNextInDirection_mC102470024EFBD24E293F263884A96E8AE661243 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___0_direction, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_0 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_1 = NULL;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = FocusController_get_focusRing_m605E2D611EC0BE81B08D3DBA4C596E1B834AC02B_inline(__this, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1;
|
|
L_1 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(__this, NULL);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2 = ___0_direction;
|
|
NullCheck(L_0);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3;
|
|
L_3 = InterfaceFuncInvoker2< Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* >::Invoke(1 /* UnityEngine.UIElements.Focusable UnityEngine.UIElements.IFocusRing::GetNextFocusable(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection) */, IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78_il2cpp_TypeInfo_var, L_0, L_1, L_2);
|
|
V_0 = L_3;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_4 = ___0_direction;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = V_0;
|
|
NullCheck(L_4);
|
|
VirtualActionInvoker2< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A*, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* >::Invoke(6 /* System.Void UnityEngine.UIElements.FocusChangeDirection::ApplyTo(UnityEngine.UIElements.FocusController,UnityEngine.UIElements.Focusable) */, L_4, __this, L_5);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = V_0;
|
|
V_1 = L_6;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = V_1;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::AboutToReleaseFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_AboutToReleaseFocus_mD699883EF5462F259013E95C9D8C0464C6C8FBEE (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willGiveFocusTo, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, int32_t ___3_dispatchMode, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_GetPooled_m3C0CABA913DD3E15FDA3C1951C2F65599F18043E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* V_0 = NULL;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_focusable;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___1_willGiveFocusTo;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2 = ___2_direction;
|
|
FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* L_3;
|
|
L_3 = FocusEventBase_1_GetPooled_m3C0CABA913DD3E15FDA3C1951C2F65599F18043E(L_0, L_1, L_2, __this, (bool)0, FocusEventBase_1_GetPooled_m3C0CABA913DD3E15FDA3C1951C2F65599F18043E_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001a:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = ___0_focusable;
|
|
FocusOutEvent_t5CC3AC57C2BEFAD0E0A7E73FE6314F0F63DFFD2C* L_7 = V_0;
|
|
int32_t L_8 = ___3_dispatchMode;
|
|
NullCheck(L_6);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(7 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode) */, L_6, L_7, L_8);
|
|
goto IL_0025;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::ReleaseFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_ReleaseFocus_m3B9E2A26CC992B720222E36E655FA1B35C3A1934 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willGiveFocusTo, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, int32_t ___3_dispatchMode, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_GetPooled_m1491986D8FE3645AE114CF93C9AE4081DCEC0800_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* V_0 = NULL;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_focusable;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___1_willGiveFocusTo;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2 = ___2_direction;
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* L_3;
|
|
L_3 = FocusEventBase_1_GetPooled_m1491986D8FE3645AE114CF93C9AE4081DCEC0800(L_0, L_1, L_2, __this, (bool)0, FocusEventBase_1_GetPooled_m1491986D8FE3645AE114CF93C9AE4081DCEC0800_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001a:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = ___0_focusable;
|
|
BlurEvent_t449F3BC3C3E84C840C055BB57D809145B5701302* L_7 = V_0;
|
|
int32_t L_8 = ___3_dispatchMode;
|
|
NullCheck(L_6);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(7 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode) */, L_6, L_7, L_8);
|
|
goto IL_0025;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::AboutToGrabFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_AboutToGrabFocus_m2034967D66D99E4F9D001E77DA66F530332E0273 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willTakeFocusFrom, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, int32_t ___3_dispatchMode, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_GetPooled_m913643F802F0AF90046419D95ECBC0121D4AE8BF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* V_0 = NULL;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_focusable;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___1_willTakeFocusFrom;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2 = ___2_direction;
|
|
FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* L_3;
|
|
L_3 = FocusEventBase_1_GetPooled_m913643F802F0AF90046419D95ECBC0121D4AE8BF(L_0, L_1, L_2, __this, (bool)0, FocusEventBase_1_GetPooled_m913643F802F0AF90046419D95ECBC0121D4AE8BF_RuntimeMethod_var);
|
|
V_0 = L_3;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001a:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_5);
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = ___0_focusable;
|
|
FocusInEvent_tC1179D309FE58E4766E94687240513A96F08AFBE* L_7 = V_0;
|
|
int32_t L_8 = ___3_dispatchMode;
|
|
NullCheck(L_6);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(7 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode) */, L_6, L_7, L_8);
|
|
goto IL_0025;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::GrabFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_GrabFocus_m23251F6C8B96C87E6EAF835B5D02B09AEDD1D729 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_willTakeFocusFrom, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___2_direction, bool ___3_bIsFocusDelegated, int32_t ___4_dispatchMode, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusEventBase_1_GetPooled_m5654D51DC26AF329A7B9DB01E3896B6083E2F9F5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* V_0 = NULL;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_focusable;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___1_willTakeFocusFrom;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2 = ___2_direction;
|
|
bool L_3 = ___3_bIsFocusDelegated;
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* L_4;
|
|
L_4 = FocusEventBase_1_GetPooled_m5654D51DC26AF329A7B9DB01E3896B6083E2F9F5(L_0, L_1, L_2, __this, L_3, FocusEventBase_1_GetPooled_m5654D51DC26AF329A7B9DB01E3896B6083E2F9F5_RuntimeMethod_var);
|
|
V_0 = L_4;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_001b:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0025;
|
|
}
|
|
}
|
|
{
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* L_6 = V_0;
|
|
NullCheck(L_6);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_6);
|
|
}
|
|
|
|
IL_0025:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = ___0_focusable;
|
|
FocusEvent_tC285901ACF2EA5EB98D216AC0ADD95937DBBD40F* L_8 = V_0;
|
|
int32_t L_9 = ___4_dispatchMode;
|
|
NullCheck(L_7);
|
|
VirtualActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, int32_t >::Invoke(7 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.DispatchMode) */, L_7, L_8, L_9);
|
|
goto IL_0026;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::Blur(UnityEngine.UIElements.Focusable,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_Blur_mC1CFD475C4B0BBB756E44567F374A534C1C6219B (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_focusable, bool ___1_bIsFocusDelegated, int32_t ___2_dispatchMode, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool G_B3_0 = false;
|
|
{
|
|
int32_t L_0 = __this->___m_PendingFocusCount_4;
|
|
if ((((int32_t)L_0) > ((int32_t)0)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___0_focusable;
|
|
bool L_2;
|
|
L_2 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(__this, L_1, NULL);
|
|
G_B3_0 = L_2;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = ___0_focusable;
|
|
bool L_4;
|
|
L_4 = FocusController_IsPendingFocus_m8606F15235FAD8AF37FFAC9A1B120758DC39A3ED(__this, L_3, NULL);
|
|
G_B3_0 = L_4;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
V_0 = G_B3_0;
|
|
bool L_5 = V_0;
|
|
V_1 = L_5;
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
bool L_7 = ___1_bIsFocusDelegated;
|
|
int32_t L_8 = ___2_dispatchMode;
|
|
FocusController_SwitchFocus_m6C1D4D97B08E3D7686F545CF4D8869313E808E4D(__this, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, L_7, L_8, NULL);
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::SwitchFocus(UnityEngine.UIElements.Focusable,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_SwitchFocus_m6C1D4D97B08E3D7686F545CF4D8869313E808E4D (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_newFocusedElement, bool ___1_bIsFocusDelegated, int32_t ___2_dispatchMode, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_newFocusedElement;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_1;
|
|
L_1 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
bool L_2 = ___1_bIsFocusDelegated;
|
|
int32_t L_3 = ___2_dispatchMode;
|
|
FocusController_SwitchFocus_m728F75BD16EADBFF98FADABA7686D0B11539922C(__this, L_0, L_1, L_2, L_3, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::SwitchFocus(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection,System.Boolean,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_SwitchFocus_m728F75BD16EADBFF98FADABA7686D0B11539922C (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_newFocusedElement, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___1_direction, bool ___2_bIsFocusDelegated, int32_t ___3_dispatchMode, 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;
|
|
}
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_5 = NULL;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* G_B3_0 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B15_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B14_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B16_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B18_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B17_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B20_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B19_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B21_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B23_0 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B22_0 = NULL;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_newFocusedElement;
|
|
__this->___m_LastFocusedElement_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LastFocusedElement_2), (void*)L_0);
|
|
int32_t L_1 = __this->___m_PendingFocusCount_4;
|
|
if ((((int32_t)L_1) > ((int32_t)0)))
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_2;
|
|
L_2 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(__this, NULL);
|
|
G_B3_0 = L_2;
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = __this->___m_LastPendingFocusedElement_3;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
V_0 = G_B3_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = ___0_newFocusedElement;
|
|
V_1 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_4) == ((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_5))? 1 : 0);
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_002e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_7 = ___0_newFocusedElement;
|
|
if (!L_7)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = ___0_newFocusedElement;
|
|
NullCheck(L_8);
|
|
bool L_9;
|
|
L_9 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus() */, L_8);
|
|
G_B8_0 = ((((int32_t)L_9) == ((int32_t)0))? 1 : 0);
|
|
goto IL_003d;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
G_B8_0 = 1;
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
V_2 = (bool)G_B8_0;
|
|
bool L_10 = V_2;
|
|
if (!L_10)
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = V_0;
|
|
V_3 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
__this->___m_LastPendingFocusedElement_3 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LastPendingFocusedElement_3), (void*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL);
|
|
int32_t L_13 = __this->___m_PendingFocusCount_4;
|
|
__this->___m_PendingFocusCount_4 = ((int32_t)il2cpp_codegen_add(L_13, 1));
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_14 = V_0;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_15 = ___1_direction;
|
|
int32_t L_16 = ___3_dispatchMode;
|
|
FocusController_AboutToReleaseFocus_mD699883EF5462F259013E95C9D8C0464C6C8FBEE(__this, L_14, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, L_15, L_16, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_17 = V_0;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_18 = ___1_direction;
|
|
int32_t L_19 = ___3_dispatchMode;
|
|
FocusController_ReleaseFocus_m3B9E2A26CC992B720222E36E655FA1B35C3A1934(__this, L_17, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, L_18, L_19, NULL);
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_20 = ___0_newFocusedElement;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_21 = V_0;
|
|
V_4 = (bool)((((int32_t)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_20) == ((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_21))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_22 = V_4;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0131;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_23 = ___0_newFocusedElement;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_23, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
G_B14_0 = L_24;
|
|
if (L_24)
|
|
{
|
|
G_B15_0 = L_24;
|
|
goto IL_009d;
|
|
}
|
|
}
|
|
{
|
|
G_B16_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
goto IL_00a8;
|
|
}
|
|
|
|
IL_009d:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_25 = V_0;
|
|
NullCheck(G_B15_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_26;
|
|
L_26 = VisualElement_RetargetElement_m45ED230705469D6BDF4F68B331829BCD53C68CC5(G_B15_0, ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_25, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), NULL);
|
|
G_B16_0 = L_26;
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_27 = G_B16_0;
|
|
G_B17_0 = L_27;
|
|
if (L_27)
|
|
{
|
|
G_B18_0 = L_27;
|
|
goto IL_00ad;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_28 = ___0_newFocusedElement;
|
|
G_B18_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(L_28));
|
|
}
|
|
|
|
IL_00ad:
|
|
{
|
|
V_5 = G_B18_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_29 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_30 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_29, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
G_B19_0 = L_30;
|
|
if (L_30)
|
|
{
|
|
G_B20_0 = L_30;
|
|
goto IL_00bc;
|
|
}
|
|
}
|
|
{
|
|
G_B21_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(NULL));
|
|
goto IL_00c7;
|
|
}
|
|
|
|
IL_00bc:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_31 = ___0_newFocusedElement;
|
|
NullCheck(G_B20_0);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_32;
|
|
L_32 = VisualElement_RetargetElement_m45ED230705469D6BDF4F68B331829BCD53C68CC5(G_B20_0, ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_31, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), NULL);
|
|
G_B21_0 = L_32;
|
|
}
|
|
|
|
IL_00c7:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_33 = G_B21_0;
|
|
G_B22_0 = L_33;
|
|
if (L_33)
|
|
{
|
|
G_B23_0 = L_33;
|
|
goto IL_00cc;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_34 = V_0;
|
|
G_B23_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)(L_34));
|
|
}
|
|
|
|
IL_00cc:
|
|
{
|
|
V_6 = G_B23_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_35 = ___0_newFocusedElement;
|
|
__this->___m_LastPendingFocusedElement_3 = L_35;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_LastPendingFocusedElement_3), (void*)L_35);
|
|
int32_t L_36 = __this->___m_PendingFocusCount_4;
|
|
__this->___m_PendingFocusCount_4 = ((int32_t)il2cpp_codegen_add(L_36, 1));
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_37 = V_0;
|
|
V_7 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_37) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_38 = V_7;
|
|
if (!L_38)
|
|
{
|
|
goto IL_00fc;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_39 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_40 = V_5;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_41 = ___1_direction;
|
|
int32_t L_42 = ___3_dispatchMode;
|
|
FocusController_AboutToReleaseFocus_mD699883EF5462F259013E95C9D8C0464C6C8FBEE(__this, L_39, L_40, L_41, L_42, NULL);
|
|
}
|
|
|
|
IL_00fc:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_43 = ___0_newFocusedElement;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_44 = V_6;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_45 = ___1_direction;
|
|
int32_t L_46 = ___3_dispatchMode;
|
|
FocusController_AboutToGrabFocus_m2034967D66D99E4F9D001E77DA66F530332E0273(__this, L_43, L_44, L_45, L_46, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_47 = V_0;
|
|
V_8 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_47) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_48 = V_8;
|
|
if (!L_48)
|
|
{
|
|
goto IL_0122;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_49 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_50 = V_5;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_51 = ___1_direction;
|
|
int32_t L_52 = ___3_dispatchMode;
|
|
FocusController_ReleaseFocus_m3B9E2A26CC992B720222E36E655FA1B35C3A1934(__this, L_49, L_50, L_51, L_52, NULL);
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_53 = ___0_newFocusedElement;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_54 = V_6;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_55 = ___1_direction;
|
|
bool L_56 = ___2_bIsFocusDelegated;
|
|
int32_t L_57 = ___3_dispatchMode;
|
|
FocusController_GrabFocus_m23251F6C8B96C87E6EAF835B5D02B09AEDD1D729(__this, L_53, L_54, L_55, L_56, L_57, NULL);
|
|
}
|
|
|
|
IL_0131:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.FocusController::SwitchFocusOnEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* FocusController_SwitchFocusOnEvent_m232D08BF98D608576E1B00506B02C21B37B09FFD (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_1 = NULL;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* V_2 = NULL;
|
|
bool V_3 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_4 = NULL;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_e;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = EventBase_get_processedByFocusController_mB2BCAFE58D45919AC9F5AC0AAEF059D8A640AE53(L_0, NULL);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3;
|
|
L_3 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(__this, NULL);
|
|
V_1 = L_3;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = FocusController_get_focusRing_m605E2D611EC0BE81B08D3DBA4C596E1B834AC02B_inline(__this, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5;
|
|
L_5 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(__this, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_6 = ___0_e;
|
|
NullCheck(L_4);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_7;
|
|
L_7 = InterfaceFuncInvoker2< FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.IFocusRing::GetFocusChangeDirection(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.EventBase) */, IFocusRing_t08BC753A7D9FFD5F88C58DF61E4FF056804CEC78_il2cpp_TypeInfo_var, L_4, L_5, L_6);
|
|
V_2 = L_7;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0051:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_8 = V_2;
|
|
if (!L_8)
|
|
{
|
|
goto IL_005b;
|
|
}
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_9 = V_2;
|
|
NullCheck(L_9);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_9);
|
|
}
|
|
|
|
IL_005b:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_10 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_11;
|
|
L_11 = FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline(NULL);
|
|
V_3 = (bool)((((int32_t)((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_10) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_11))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_004e_1;
|
|
}
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_13 = V_2;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_14;
|
|
L_14 = FocusController_FocusNextInDirection_mC102470024EFBD24E293F263884A96E8AE661243(__this, L_13, NULL);
|
|
V_4 = L_14;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_e;
|
|
NullCheck(L_15);
|
|
EventBase_set_processedByFocusController_mEC214B328484B60572EEE867ACB5527396436155(L_15, (bool)1, NULL);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_16 = V_4;
|
|
V_1 = L_16;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_004e_1:
|
|
{
|
|
goto IL_005c;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_005c:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_17;
|
|
L_17 = FocusController_GetLeafFocusedElement_m69566DBCE9BBD3167E76EC6A229D1FB53115748A(__this, NULL);
|
|
V_1 = L_17;
|
|
goto IL_0065;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_18 = V_1;
|
|
return L_18;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::ReevaluateFocus()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_ReevaluateFocus_m8FFEF3750EF9D5922B939AB7C267F9D1FACE29FE (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __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;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0;
|
|
L_0 = FocusController_get_focusedElement_mC8B530DA2FE09394ADA0A4D25A85DBF5C66853D8(__this, NULL);
|
|
V_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_0, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = V_0;
|
|
V_1 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0036;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_4;
|
|
L_4 = VisualElement_get_isHierarchyDisplayed_m57D4B4C55044168D6AF4D7CE32FC9C809F8E2348(L_3, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_6;
|
|
L_6 = VisualElement_get_visible_m30FB0F3D6A7C6C41088A0744EC8D2696BFCBC0B9(L_5, NULL);
|
|
G_B4_0 = ((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
|
|
goto IL_002a;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
G_B4_0 = 1;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
V_2 = (bool)G_B4_0;
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = V_0;
|
|
NullCheck(L_8);
|
|
VirtualActionInvoker0::Invoke(18 /* System.Void UnityEngine.UIElements.Focusable::Blur() */, L_8);
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.FocusController::GetFocusableParentForPointerEvent(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.Focusable&)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool FocusController_GetFocusableParentForPointerEvent_mB5B3CDF010E6AC4C0E75C3C1172F2053749BB8A9 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_target, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0** ___1_effectiveTarget, 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;
|
|
bool V_1 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_2 = NULL;
|
|
bool V_3 = false;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_target;
|
|
if (!L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = ___0_target;
|
|
NullCheck(L_1);
|
|
bool L_2;
|
|
L_2 = Focusable_get_focusable_m15258DAA1E80EB42FBCF59298080030DA5360F6F_inline(L_1, NULL);
|
|
G_B3_0 = ((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0** L_4 = ___1_effectiveTarget;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = ___0_target;
|
|
*((RuntimeObject**)L_4) = (RuntimeObject*)L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_4, (void*)(RuntimeObject*)L_5);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = ___0_target;
|
|
V_1 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0** L_7 = ___1_effectiveTarget;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = ___0_target;
|
|
*((RuntimeObject**)L_7) = (RuntimeObject*)L_8;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_7, (void*)(RuntimeObject*)L_8);
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0** L_9 = ___1_effectiveTarget;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10 = *((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0**)L_9);
|
|
V_2 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_10, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = V_2;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = V_2;
|
|
NullCheck(L_12);
|
|
bool L_13;
|
|
L_13 = VisualElement_get_enabledInHierarchy_mBC4E983E9FD848277D6820F4D7A2743BA38BC412(L_12, NULL);
|
|
if (!L_13)
|
|
{
|
|
goto IL_003d;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = Focusable_get_focusable_m15258DAA1E80EB42FBCF59298080030DA5360F6F_inline(L_14, NULL);
|
|
if (L_15)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
|
|
IL_003d:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = V_2;
|
|
NullCheck(L_16);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_17;
|
|
L_17 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_16, NULL);
|
|
V_4 = L_17;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18;
|
|
L_18 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_4), NULL);
|
|
G_B11_0 = ((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_18) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0052;
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
G_B11_0 = 0;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
V_3 = (bool)G_B11_0;
|
|
bool L_19 = V_3;
|
|
if (!L_19)
|
|
{
|
|
goto IL_006b;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0** L_20 = ___1_effectiveTarget;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = V_2;
|
|
NullCheck(L_21);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_22;
|
|
L_22 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_21, NULL);
|
|
V_4 = L_22;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_23;
|
|
L_23 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_4), NULL);
|
|
*((RuntimeObject**)L_20) = (RuntimeObject*)L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(RuntimeObject**)L_20, (void*)(RuntimeObject*)L_23);
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_006b:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0** L_24 = ___1_effectiveTarget;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_25 = *((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0**)L_24);
|
|
bool L_26;
|
|
L_26 = FocusController_IsFocused_mC6FBCB39C59950009902CE0F85A97A96EC09DF53(__this, L_25, NULL);
|
|
V_1 = (bool)((((int32_t)L_26) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0079;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
bool L_27 = V_1;
|
|
return L_27;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.FocusController::get_imguiKeyboardControl()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t FocusController_get_imguiKeyboardControl_mE4C649D44C402954EE90C4B648A0EA349A999AEA (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CimguiKeyboardControlU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::set_imguiKeyboardControl(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155 (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CimguiKeyboardControlU3Ek__BackingField_5 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.FocusController::SyncIMGUIFocus(System.Int32,UnityEngine.UIElements.Focusable,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusController_SyncIMGUIFocus_m3F9F2EB6DAE3E833A9D8299A55B171EEB823ACEF (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, int32_t ___0_imguiKeyboardControlID, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_imguiContainerHavingKeyboardControl, bool ___2_forceSwitch, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
int32_t L_0 = ___0_imguiKeyboardControlID;
|
|
FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline(__this, L_0, NULL);
|
|
bool L_1 = ___2_forceSwitch;
|
|
if (L_1)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2;
|
|
L_2 = FocusController_get_imguiKeyboardControl_mE4C649D44C402954EE90C4B648A0EA349A999AEA_inline(__this, NULL);
|
|
G_B3_0 = ((!(((uint32_t)L_2) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4 = ___1_imguiContainerHavingKeyboardControl;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_5;
|
|
L_5 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
FocusController_SwitchFocus_m728F75BD16EADBFF98FADABA7686D0B11539922C(__this, L_4, L_5, (bool)0, 1, NULL);
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_6;
|
|
L_6 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
FocusController_SwitchFocus_m728F75BD16EADBFF98FADABA7686D0B11539922C(__this, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, L_6, (bool)0, 1, NULL);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
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.FocusController/FocusedElement
|
|
IL2CPP_EXTERN_C void FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshal_pinvoke(const FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF& unmarshaled, FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___m_SubTreeRoot_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SubTreeRoot' of type 'FocusedElement': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SubTreeRoot_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshal_pinvoke_back(const FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_pinvoke& marshaled, FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF& unmarshaled)
|
|
{
|
|
Exception_t* ___m_SubTreeRoot_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SubTreeRoot' of type 'FocusedElement': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SubTreeRoot_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.FocusController/FocusedElement
|
|
IL2CPP_EXTERN_C void FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshal_pinvoke_cleanup(FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.FocusController/FocusedElement
|
|
IL2CPP_EXTERN_C void FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshal_com(const FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF& unmarshaled, FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___m_SubTreeRoot_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SubTreeRoot' of type 'FocusedElement': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SubTreeRoot_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshal_com_back(const FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshaled_com& marshaled, FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF& unmarshaled)
|
|
{
|
|
Exception_t* ___m_SubTreeRoot_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_SubTreeRoot' of type 'FocusedElement': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_SubTreeRoot_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.FocusController/FocusedElement
|
|
IL2CPP_EXTERN_C void FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_marshal_com_cleanup(FocusedElement_t1EE083A1C5276213C533A38C6B5DC02E9DE5CBEF_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.Boolean UnityEngine.UIElements.TextShadow::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextShadow_Equals_m0BC39E39C12D4D49BC554184C02CC78B417289BE (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
bool L_2;
|
|
L_2 = TextShadow_Equals_m0D031C0DE4C0F2CB9B4668F52A76F7B7C4F544AB(__this, ((*(TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*)((TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*)(TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*)UnBox(L_1, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TextShadow_Equals_m0BC39E39C12D4D49BC554184C02CC78B417289BE_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TextShadow_Equals_m0BC39E39C12D4D49BC554184C02CC78B417289BE(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextShadow::Equals(UnityEngine.UIElements.TextShadow)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextShadow_Equals_m0D031C0DE4C0F2CB9B4668F52A76F7B7C4F544AB (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_0 = ___0_other;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0.___offset_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = __this->___offset_0;
|
|
bool L_3;
|
|
L_3 = Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline(L_1, L_2, NULL);
|
|
if (!L_3)
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_4 = ___0_other;
|
|
float L_5 = L_4.___blurRadius_1;
|
|
float L_6 = __this->___blurRadius_1;
|
|
if ((!(((float)L_5) == ((float)L_6))))
|
|
{
|
|
goto IL_0035;
|
|
}
|
|
}
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_7 = ___0_other;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_8 = L_7.___color_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_9 = __this->___color_2;
|
|
bool L_10;
|
|
L_10 = Color_op_Equality_mB2BDC39B0B367BA15AA8DF22F8CB0D02D20BDC71_inline(L_8, L_9, NULL);
|
|
G_B4_0 = ((int32_t)(L_10));
|
|
goto IL_0036;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0036:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
bool L_11 = V_0;
|
|
return L_11;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TextShadow_Equals_m0D031C0DE4C0F2CB9B4668F52A76F7B7C4F544AB_AdjustorThunk (RuntimeObject* __this, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TextShadow_Equals_m0D031C0DE4C0F2CB9B4668F52A76F7B7C4F544AB(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TextShadow::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TextShadow_GetHashCode_mFD8076EB5D6AAFBF11A36DA4E153DB18BABF1A04 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
{
|
|
V_0 = ((int32_t)1500536833);
|
|
int32_t L_0 = V_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* L_1 = (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7*)(&__this->___offset_0);
|
|
int32_t L_2;
|
|
L_2 = Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_inline(L_1, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_0, ((int32_t)-1521134295))), L_2));
|
|
int32_t L_3 = V_0;
|
|
float* L_4 = (float*)(&__this->___blurRadius_1);
|
|
int32_t L_5;
|
|
L_5 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_4, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_3, ((int32_t)-1521134295))), L_5));
|
|
int32_t L_6 = V_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* L_7 = (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F*)(&__this->___color_2);
|
|
int32_t L_8;
|
|
L_8 = Color_GetHashCode_m2981EEA1DEFE55254945D7D03BE64D4F56BA58D0_inline(L_7, NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_6, ((int32_t)-1521134295))), L_8));
|
|
int32_t L_9 = V_0;
|
|
V_1 = L_9;
|
|
goto IL_0053;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t TextShadow_GetHashCode_mFD8076EB5D6AAFBF11A36DA4E153DB18BABF1A04_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = TextShadow_GetHashCode_mFD8076EB5D6AAFBF11A36DA4E153DB18BABF1A04(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// 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)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_0 = ___1_style2;
|
|
bool L_1;
|
|
L_1 = TextShadow_Equals_m0D031C0DE4C0F2CB9B4668F52A76F7B7C4F544AB((&___0_style1), L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
bool L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextShadow::op_Inequality(UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextShadow_op_Inequality_m69AC68592EC285B81C0E33FC097F42D0681797FC (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_style1, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___1_style2, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_0 = ___0_style1;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_1 = ___1_style2;
|
|
bool L_2;
|
|
L_2 = TextShadow_op_Equality_m7B840C994A00FDC98F55FAD2BBB395447A29792A(L_0, L_1, NULL);
|
|
V_0 = (bool)((((int32_t)L_2) == ((int32_t)0))? 1 : 0);
|
|
goto IL_000e;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.TextShadow::ToString()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextShadow_ToString_m858D95591B1C87460D2F16460BCF5ED790BAEEE8 (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA01E7667E3AD57BE432A894D11E8333E4CDAD6D5);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___offset_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0;
|
|
RuntimeObject* L_2 = Box(Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7_il2cpp_TypeInfo_var, &L_1);
|
|
float L_3 = __this->___blurRadius_1;
|
|
float L_4 = L_3;
|
|
RuntimeObject* L_5 = Box(Single_t4530F2FF86FCB0DC29F35385CA1BD21BE294761C_il2cpp_TypeInfo_var, &L_4);
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_6 = __this->___color_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = L_6;
|
|
RuntimeObject* L_8 = Box(Color_tD001788D726C3A7F1379BEED0260B9591F440C1F_il2cpp_TypeInfo_var, &L_7);
|
|
String_t* L_9;
|
|
L_9 = String_Format_mA0534D6E2AE4D67A6BD8D45B3321323930EB930C(_stringLiteralA01E7667E3AD57BE432A894D11E8333E4CDAD6D5, L_2, L_5, L_8, NULL);
|
|
V_0 = L_9;
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
String_t* L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C String_t* TextShadow_ToString_m858D95591B1C87460D2F16460BCF5ED790BAEEE8_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05*>(__this + _offset);
|
|
String_t* _returnValue;
|
|
_returnValue = TextShadow_ToString_m858D95591B1C87460D2F16460BCF5ED790BAEEE8(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// UnityEngine.UIElements.TextShadow UnityEngine.UIElements.TextShadow::LerpUnclamped(UnityEngine.UIElements.TextShadow,UnityEngine.UIElements.TextShadow,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 TextShadow_LerpUnclamped_m829CC5260DC0A0CA1DFF6E8EF93B188F2C013D8F (TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___0_a, TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
il2cpp_codegen_initobj((&V_0), sizeof(TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05));
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_0 = ___0_a;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_1 = L_0.___offset_0;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_2 = ___1_b;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_3 = L_2.___offset_0;
|
|
float L_4 = ___2_t;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = Vector2_LerpUnclamped_mB0B50875D4509E21FF43F4D87610333D55E6A44F_inline(L_1, L_3, L_4, NULL);
|
|
(&V_0)->___offset_0 = L_5;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_6 = ___0_a;
|
|
float L_7 = L_6.___blurRadius_1;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_8 = ___1_b;
|
|
float L_9 = L_8.___blurRadius_1;
|
|
float L_10 = ___2_t;
|
|
float L_11;
|
|
L_11 = Mathf_LerpUnclamped_mF35042F9D25A221BDD4B3FD6251224610AFC1F35_inline(L_7, L_9, L_10, NULL);
|
|
(&V_0)->___blurRadius_1 = L_11;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_12 = ___0_a;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_13 = L_12.___color_2;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_14 = ___1_b;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_15 = L_14.___color_2;
|
|
float L_16 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_17;
|
|
L_17 = Color_LerpUnclamped_m91027D026E64424B71959149B942F706FC16B1A2_inline(L_13, L_15, L_16, NULL);
|
|
(&V_0)->___color_2 = L_17;
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_18 = V_0;
|
|
V_1 = L_18;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
TextShadow_t6BADF37AB90ABCB63859A225B58AC5A580950A05 L_19 = V_1;
|
|
return L_19;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// UnityEngine.UIElements.PointerDispatchState UnityEngine.UIElements.PointerCaptureHelper::GetStateFor(UnityEngine.UIElements.IEventHandler)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* PointerCaptureHelper_GetStateFor_m280E8512C13D299D02574099B4F6DC4576825FF6 (RuntimeObject* ___0_handler, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* V_1 = NULL;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* G_B7_0 = NULL;
|
|
RuntimeObject* G_B4_0 = NULL;
|
|
RuntimeObject* G_B3_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B6_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B5_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
V_0 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_0, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = V_0;
|
|
if (L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A*)(NULL));
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = V_0;
|
|
NullCheck(L_2);
|
|
RuntimeObject* L_3;
|
|
L_3 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(L_2, NULL);
|
|
RuntimeObject* L_4 = L_3;
|
|
G_B3_0 = L_4;
|
|
if (L_4)
|
|
{
|
|
G_B4_0 = L_4;
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A*)(NULL));
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_5;
|
|
L_5 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, G_B4_0);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_6 = L_5;
|
|
G_B5_0 = L_6;
|
|
if (L_6)
|
|
{
|
|
G_B6_0 = L_6;
|
|
goto IL_0027;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A*)(NULL));
|
|
goto IL_002c;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_7;
|
|
L_7 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B6_0, NULL);
|
|
G_B7_0 = L_7;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
V_1 = G_B7_0;
|
|
goto IL_002f;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_8 = V_1;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerCaptureHelper::HasPointerCapture(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerCaptureHelper_HasPointerCapture_m8BEDFC90CB6DD9DE7931AB704454A43559A03C36 (RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* G_B2_0 = NULL;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* G_B1_0 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_1;
|
|
L_1 = PointerCaptureHelper_GetStateFor_m280E8512C13D299D02574099B4F6DC4576825FF6(L_0, NULL);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* 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_0015;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
RuntimeObject* L_3 = ___0_handler;
|
|
int32_t L_4 = ___1_pointerId;
|
|
NullCheck(G_B2_0);
|
|
bool L_5;
|
|
L_5 = PointerDispatchState_HasPointerCapture_mA7A823D88E3A5BFC3C79CC1AF9569369B8697276(G_B2_0, L_3, L_4, NULL);
|
|
G_B3_0 = ((int32_t)(L_5));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
bool L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureHelper::CapturePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_CapturePointer_m7A647567160ADA0E052A7277C5B531D7A01E5F7F (RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method)
|
|
{
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* G_B2_0 = NULL;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* G_B1_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_1;
|
|
L_1 = PointerCaptureHelper_GetStateFor_m280E8512C13D299D02574099B4F6DC4576825FF6(L_0, NULL);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_3 = ___0_handler;
|
|
int32_t L_4 = ___1_pointerId;
|
|
NullCheck(G_B2_0);
|
|
PointerDispatchState_CapturePointer_mC8A79D11BED72723C691EFC744DF82EDB946D4C6(G_B2_0, L_3, L_4, NULL);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerCaptureHelper::ReleasePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerCaptureHelper_ReleasePointer_m0FF47D46D610A94601B72E011344700B0EA7E1B9 (RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method)
|
|
{
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* G_B2_0 = NULL;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* G_B1_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_1;
|
|
L_1 = PointerCaptureHelper_GetStateFor_m280E8512C13D299D02574099B4F6DC4576825FF6(L_0, NULL);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_2 = L_1;
|
|
G_B1_0 = L_2;
|
|
if (L_2)
|
|
{
|
|
G_B2_0 = L_2;
|
|
goto IL_000d;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_000d:
|
|
{
|
|
RuntimeObject* L_3 = ___0_handler;
|
|
int32_t L_4 = ___1_pointerId;
|
|
NullCheck(G_B2_0);
|
|
PointerDispatchState_ReleasePointer_m9C7CC4BE5F1DE835660705DC0314B13112B86E74(G_B2_0, L_3, L_4, NULL);
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
RuntimeObject* V_0 = NULL;
|
|
RuntimeObject* G_B5_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B4_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B3_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0007;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_0007:
|
|
{
|
|
RuntimeObject* L_1 = ___0_panel;
|
|
NullCheck(L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2;
|
|
L_2 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3 = L_2;
|
|
G_B3_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B4_0 = L_3;
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
G_B5_0 = ((RuntimeObject*)(NULL));
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_4;
|
|
L_4 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B4_0, NULL);
|
|
int32_t L_5 = ___1_pointerId;
|
|
NullCheck(L_4);
|
|
RuntimeObject* L_6;
|
|
L_6 = PointerDispatchState_GetCapturingElement_m84B2B033EC3CCAD4613D6A83C13C25EC8907D891(L_4, L_5, NULL);
|
|
G_B5_0 = L_6;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
V_0 = G_B5_0;
|
|
goto IL_0022;
|
|
}
|
|
|
|
IL_0022:
|
|
{
|
|
RuntimeObject* L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B4_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B3_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject* L_1 = ___0_panel;
|
|
NullCheck(L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2;
|
|
L_2 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3 = L_2;
|
|
G_B3_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B4_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_4;
|
|
L_4 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B4_0, NULL);
|
|
int32_t L_5 = ___1_pointerId;
|
|
NullCheck(L_4);
|
|
PointerDispatchState_ReleasePointer_m88DB7BB0BF25F2D1F66E6E6C53BB4D26869970B7(L_4, L_5, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B4_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B3_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject* L_1 = ___0_panel;
|
|
NullCheck(L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2;
|
|
L_2 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3 = L_2;
|
|
G_B3_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B4_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_4;
|
|
L_4 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B4_0, NULL);
|
|
int32_t L_5 = ___1_pointerId;
|
|
NullCheck(L_4);
|
|
PointerDispatchState_ActivateCompatibilityMouseEvents_mC420BAA7192D4BBC910B8E330184630A68F541A7(L_4, L_5, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B4_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B3_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject* L_1 = ___0_panel;
|
|
NullCheck(L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2;
|
|
L_2 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3 = L_2;
|
|
G_B3_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B4_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_4;
|
|
L_4 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B4_0, NULL);
|
|
int32_t L_5 = ___1_pointerId;
|
|
NullCheck(L_4);
|
|
PointerDispatchState_PreventCompatibilityMouseEvents_m751C841E5471A5FBDE650C0092B9A55D2657CE0A(L_4, L_5, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 G_B5_0;
|
|
memset((&G_B5_0), 0, sizeof(G_B5_0));
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B4_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B3_0 = NULL;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_000f;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01));
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_1 = V_1;
|
|
G_B5_0 = L_1;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
RuntimeObject* L_2 = ___0_panel;
|
|
NullCheck(L_2);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3;
|
|
L_3 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_2);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_4 = L_3;
|
|
G_B3_0 = L_4;
|
|
if (L_4)
|
|
{
|
|
G_B4_0 = L_4;
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_1), sizeof(Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01));
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_5 = V_1;
|
|
G_B5_0 = L_5;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_6;
|
|
L_6 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B4_0, NULL);
|
|
RuntimeObject* L_7 = ___1_evt;
|
|
NullCheck(L_6);
|
|
bool L_8;
|
|
L_8 = PointerDispatchState_ShouldSendCompatibilityMouseEvents_m2D904DB42844ABDDDC961264F0ABA4AB292762F0(L_6, L_7, NULL);
|
|
Nullable_1_t78F453FADB4A9F50F267A4E349019C34410D1A01 L_9;
|
|
memset((&L_9), 0, sizeof(L_9));
|
|
Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5((&L_9), L_8, /*hidden argument*/Nullable_1__ctor_m4FAA8281CB4EFFD8B817734351FB3AC20A0CD6F5_RuntimeMethod_var);
|
|
G_B5_0 = L_9;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
V_0 = G_B5_0;
|
|
bool L_10;
|
|
L_10 = Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_inline((&V_0), Nullable_1_get_HasValue_m6B76D139692C43B2AF7C695FAB044B16ACFAF355_RuntimeMethod_var);
|
|
if (L_10)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
G_B8_0 = 1;
|
|
goto IL_0048;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
bool L_11;
|
|
L_11 = Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_inline((&V_0), Nullable_1_GetValueOrDefault_m86E1210429A6EA0082CC7806DD638E8B4555F148_RuntimeMethod_var);
|
|
G_B8_0 = ((int32_t)(L_11));
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
V_2 = (bool)G_B8_0;
|
|
goto IL_004b;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
bool L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
}
|
|
// 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)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B4_0 = NULL;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* G_B3_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_panel;
|
|
if (L_0)
|
|
{
|
|
goto IL_0006;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0006:
|
|
{
|
|
RuntimeObject* L_1 = ___0_panel;
|
|
NullCheck(L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2;
|
|
L_2 = InterfaceFuncInvoker0< EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* >::Invoke(1 /* UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.IPanel::get_dispatcher() */, IPanel_tAD0F3807B6DE2ECA557380E7DB5F3A179BE5A7A5_il2cpp_TypeInfo_var, L_1);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3 = L_2;
|
|
G_B3_0 = L_3;
|
|
if (L_3)
|
|
{
|
|
G_B4_0 = L_3;
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
NullCheck(G_B4_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_4;
|
|
L_4 = EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline(G_B4_0, NULL);
|
|
int32_t L_5 = ___1_pointerId;
|
|
NullCheck(L_4);
|
|
PointerDispatchState_ProcessPointerCapture_m34FA9DCFEA069D597F388F38AA42C1D471191A02(L_4, L_5, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
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.PointerDispatchState::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState__ctor_m85AB6B80AF036F9851B6F11FE5CD3C0DEC19D7C4 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_1 = (IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D*)(IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D*)SZArrayNew(IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D_il2cpp_TypeInfo_var, (uint32_t)L_0);
|
|
__this->___m_PendingPointerCapture_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PendingPointerCapture_0), (void*)L_1);
|
|
int32_t L_2 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_3 = (IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D*)(IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D*)SZArrayNew(IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D_il2cpp_TypeInfo_var, (uint32_t)L_2);
|
|
__this->___m_PointerCapture_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PointerCapture_1), (void*)L_3);
|
|
int32_t L_4 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___maxPointers_0;
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_5 = (BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4*)SZArrayNew(BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4_il2cpp_TypeInfo_var, (uint32_t)L_4);
|
|
__this->___m_ShouldSendCompatibilityMouseEvents_2 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ShouldSendCompatibilityMouseEvents_2), (void*)L_5);
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
PointerDispatchState_Reset_m3D7C1924E6654D18DA8543A0E81C732586FEE92C(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::Reset()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_Reset_m3D7C1924E6654D18DA8543A0E81C732586FEE92C (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0026;
|
|
}
|
|
|
|
IL_0005:
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_0 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_1 = V_0;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, NULL);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (RuntimeObject*)NULL);
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_2 = __this->___m_PointerCapture_1;
|
|
int32_t L_3 = V_0;
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, NULL);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(L_3), (RuntimeObject*)NULL);
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_4 = __this->___m_ShouldSendCompatibilityMouseEvents_2;
|
|
int32_t L_5 = V_0;
|
|
NullCheck(L_4);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(L_5), (bool)1);
|
|
int32_t L_6 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_6, 1));
|
|
}
|
|
|
|
IL_0026:
|
|
{
|
|
int32_t L_7 = V_0;
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_8 = __this->___m_PointerCapture_1;
|
|
NullCheck(L_8);
|
|
V_1 = (bool)((((int32_t)L_7) < ((int32_t)((int32_t)(((RuntimeArray*)L_8)->max_length))))? 1 : 0);
|
|
bool L_9 = V_1;
|
|
if (L_9)
|
|
{
|
|
goto IL_0005;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.IEventHandler UnityEngine.UIElements.PointerDispatchState::GetCapturingElement(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* PointerDispatchState_GetCapturingElement_m84B2B033EC3CCAD4613D6A83C13C25EC8907D891 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_0 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
V_0 = L_3;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
RuntimeObject* L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerDispatchState::HasPointerCapture(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDispatchState_HasPointerCapture_mA7A823D88E3A5BFC3C79CC1AF9569369B8697276 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_0 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_1 = ___1_pointerId;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
RuntimeObject* L_4 = ___0_handler;
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)L_4))? 1 : 0);
|
|
goto IL_000f;
|
|
}
|
|
|
|
IL_000f:
|
|
{
|
|
bool L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::CapturePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_CapturePointer_mC8A79D11BED72723C691EFC744DF82EDB946D4C6 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_handler, int32_t ___1_pointerId, 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*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5A8F45F1C79E40889C90528CFD4D921EE9507784);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
int32_t L_0 = ___1_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;
|
|
if ((!(((uint32_t)L_0) == ((uint32_t)L_1))))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_2 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_3 = ___1_pointerId;
|
|
NullCheck(L_2);
|
|
int32_t L_4 = L_3;
|
|
RuntimeObject* L_5 = (L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_4));
|
|
RuntimeObject* L_6 = ___0_handler;
|
|
if ((((RuntimeObject*)(RuntimeObject*)L_5) == ((RuntimeObject*)(RuntimeObject*)L_6)))
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_7;
|
|
L_7 = GUIUtility_get_hotControl_m6CD6AD33B46A9AFF2261E2C352DC7BAB4C20B026(NULL);
|
|
G_B4_0 = ((!(((uint32_t)L_7) <= ((uint32_t)0)))? 1 : 0);
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
bool L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogWarning_m33EF1B897E0C7C6FF538989610BFAFFEF4628CA9(_stringLiteral5A8F45F1C79E40889C90528CFD4D921EE9507784, NULL);
|
|
goto IL_003a;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_9 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_10 = ___1_pointerId;
|
|
RuntimeObject* L_11 = ___0_handler;
|
|
NullCheck(L_9);
|
|
ArrayElementTypeCheck (L_9, L_11);
|
|
(L_9)->SetAt(static_cast<il2cpp_array_size_t>(L_10), (RuntimeObject*)L_11);
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ReleasePointer(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ReleasePointer_m88DB7BB0BF25F2D1F66E6E6C53BB4D26869970B7 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_0 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
ArrayElementTypeCheck (L_0, NULL);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (RuntimeObject*)NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ReleasePointer(UnityEngine.UIElements.IEventHandler,System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ReleasePointer_m9C7CC4BE5F1DE835660705DC0314B13112B86E74 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_handler, int32_t ___1_pointerId, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
RuntimeObject* L_0 = ___0_handler;
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_1 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_2 = ___1_pointerId;
|
|
NullCheck(L_1);
|
|
int32_t L_3 = L_2;
|
|
RuntimeObject* L_4 = (L_1)->GetAt(static_cast<il2cpp_array_size_t>(L_3));
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_0) == ((RuntimeObject*)(RuntimeObject*)L_4))? 1 : 0);
|
|
bool L_5 = V_0;
|
|
if (!L_5)
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_6 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_7 = ___1_pointerId;
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, NULL);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(L_7), (RuntimeObject*)NULL);
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ProcessPointerCapture(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ProcessPointerCapture_m34FA9DCFEA069D597F388F38AA42C1D471191A02 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureEventBase_1_GetPooled_m9A374DF0D549BE03C87F43801FF49F06B3B62CF9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureEventBase_1_GetPooled_mA34D7C18EF23C20D4EEF6ECBA1D244E450FE1269_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureEventBase_1_GetPooled_mB59248109D193F686FEB4522CACAAE4D07362B0C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureEventBase_1_GetPooled_mECADB036D8A3E61FEE56F40360A9E073056CDB15_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* V_2 = NULL;
|
|
bool V_3 = false;
|
|
MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* V_4 = NULL;
|
|
bool V_5 = false;
|
|
PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* V_6 = NULL;
|
|
bool V_7 = false;
|
|
MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* V_8 = NULL;
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_0 = __this->___m_PointerCapture_1;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
int32_t L_2 = L_1;
|
|
RuntimeObject* L_3 = (L_0)->GetAt(static_cast<il2cpp_array_size_t>(L_2));
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_4 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_5 = ___0_pointerId;
|
|
NullCheck(L_4);
|
|
int32_t L_6 = L_5;
|
|
RuntimeObject* L_7 = (L_4)->GetAt(static_cast<il2cpp_array_size_t>(L_6));
|
|
V_0 = (bool)((((RuntimeObject*)(RuntimeObject*)L_3) == ((RuntimeObject*)(RuntimeObject*)L_7))? 1 : 0);
|
|
bool L_8 = V_0;
|
|
if (!L_8)
|
|
{
|
|
goto IL_001c;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0151;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_9 = __this->___m_PointerCapture_1;
|
|
int32_t L_10 = ___0_pointerId;
|
|
NullCheck(L_9);
|
|
int32_t L_11 = L_10;
|
|
RuntimeObject* L_12 = (L_9)->GetAt(static_cast<il2cpp_array_size_t>(L_11));
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_12) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_13 = V_1;
|
|
if (!L_13)
|
|
{
|
|
goto IL_00a9;
|
|
}
|
|
}
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_14 = __this->___m_PointerCapture_1;
|
|
int32_t L_15 = ___0_pointerId;
|
|
NullCheck(L_14);
|
|
int32_t L_16 = L_15;
|
|
RuntimeObject* L_17 = (L_14)->GetAt(static_cast<il2cpp_array_size_t>(L_16));
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_18 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_19 = ___0_pointerId;
|
|
NullCheck(L_18);
|
|
int32_t L_20 = L_19;
|
|
RuntimeObject* L_21 = (L_18)->GetAt(static_cast<il2cpp_array_size_t>(L_20));
|
|
int32_t L_22 = ___0_pointerId;
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* L_23;
|
|
L_23 = PointerCaptureEventBase_1_GetPooled_mB59248109D193F686FEB4522CACAAE4D07362B0C(L_17, L_21, L_22, PointerCaptureEventBase_1_GetPooled_mB59248109D193F686FEB4522CACAAE4D07362B0C_RuntimeMethod_var);
|
|
V_2 = L_23;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0056:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* L_24 = V_2;
|
|
if (!L_24)
|
|
{
|
|
goto IL_0060;
|
|
}
|
|
}
|
|
{
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* L_25 = V_2;
|
|
NullCheck(L_25);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_25);
|
|
}
|
|
|
|
IL_0060:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_26 = __this->___m_PointerCapture_1;
|
|
int32_t L_27 = ___0_pointerId;
|
|
NullCheck(L_26);
|
|
int32_t L_28 = L_27;
|
|
RuntimeObject* L_29 = (L_26)->GetAt(static_cast<il2cpp_array_size_t>(L_28));
|
|
PointerCaptureOutEvent_t3D53CEE79BD37EC74F40289B4D5501C4449905E5* L_30 = V_2;
|
|
NullCheck(L_29);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_29, L_30);
|
|
goto IL_0061;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
int32_t L_31 = ___0_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_32 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
V_3 = (bool)((((int32_t)L_31) == ((int32_t)L_32))? 1 : 0);
|
|
bool L_33 = V_3;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00a8;
|
|
}
|
|
}
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_34 = __this->___m_PointerCapture_1;
|
|
int32_t L_35 = ___0_pointerId;
|
|
NullCheck(L_34);
|
|
int32_t L_36 = L_35;
|
|
RuntimeObject* L_37 = (L_34)->GetAt(static_cast<il2cpp_array_size_t>(L_36));
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_38 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_39 = ___0_pointerId;
|
|
NullCheck(L_38);
|
|
int32_t L_40 = L_39;
|
|
RuntimeObject* L_41 = (L_38)->GetAt(static_cast<il2cpp_array_size_t>(L_40));
|
|
int32_t L_42 = ___0_pointerId;
|
|
MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* L_43;
|
|
L_43 = PointerCaptureEventBase_1_GetPooled_mA34D7C18EF23C20D4EEF6ECBA1D244E450FE1269(L_37, L_41, L_42, PointerCaptureEventBase_1_GetPooled_mA34D7C18EF23C20D4EEF6ECBA1D244E450FE1269_RuntimeMethod_var);
|
|
V_4 = L_43;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_009a:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* L_44 = V_4;
|
|
if (!L_44)
|
|
{
|
|
goto IL_00a6;
|
|
}
|
|
}
|
|
{
|
|
MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* L_45 = V_4;
|
|
NullCheck(L_45);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_45);
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_46 = __this->___m_PointerCapture_1;
|
|
int32_t L_47 = ___0_pointerId;
|
|
NullCheck(L_46);
|
|
int32_t L_48 = L_47;
|
|
RuntimeObject* L_49 = (L_46)->GetAt(static_cast<il2cpp_array_size_t>(L_48));
|
|
MouseCaptureOutEvent_t55FDD6FD486DDB02F1878EEF2716F444E7A94AF5* L_50 = V_4;
|
|
NullCheck(L_49);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_49, L_50);
|
|
goto IL_00a7;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00a7:
|
|
{
|
|
}
|
|
|
|
IL_00a8:
|
|
{
|
|
}
|
|
|
|
IL_00a9:
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_51 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_52 = ___0_pointerId;
|
|
NullCheck(L_51);
|
|
int32_t L_53 = L_52;
|
|
RuntimeObject* L_54 = (L_51)->GetAt(static_cast<il2cpp_array_size_t>(L_53));
|
|
V_5 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_54) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_55 = V_5;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0141;
|
|
}
|
|
}
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_56 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_57 = ___0_pointerId;
|
|
NullCheck(L_56);
|
|
int32_t L_58 = L_57;
|
|
RuntimeObject* L_59 = (L_56)->GetAt(static_cast<il2cpp_array_size_t>(L_58));
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_60 = __this->___m_PointerCapture_1;
|
|
int32_t L_61 = ___0_pointerId;
|
|
NullCheck(L_60);
|
|
int32_t L_62 = L_61;
|
|
RuntimeObject* L_63 = (L_60)->GetAt(static_cast<il2cpp_array_size_t>(L_62));
|
|
int32_t L_64 = ___0_pointerId;
|
|
PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* L_65;
|
|
L_65 = PointerCaptureEventBase_1_GetPooled_m9A374DF0D549BE03C87F43801FF49F06B3B62CF9(L_59, L_63, L_64, PointerCaptureEventBase_1_GetPooled_m9A374DF0D549BE03C87F43801FF49F06B3B62CF9_RuntimeMethod_var);
|
|
V_6 = L_65;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00ea:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* L_66 = V_6;
|
|
if (!L_66)
|
|
{
|
|
goto IL_00f6;
|
|
}
|
|
}
|
|
{
|
|
PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* L_67 = V_6;
|
|
NullCheck(L_67);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_67);
|
|
}
|
|
|
|
IL_00f6:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_68 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_69 = ___0_pointerId;
|
|
NullCheck(L_68);
|
|
int32_t L_70 = L_69;
|
|
RuntimeObject* L_71 = (L_68)->GetAt(static_cast<il2cpp_array_size_t>(L_70));
|
|
PointerCaptureEvent_tB9E534FCED96BD293031FCEF549A28F5161701BB* L_72 = V_6;
|
|
NullCheck(L_71);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_71, L_72);
|
|
goto IL_00f7;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00f7:
|
|
{
|
|
int32_t L_73 = ___0_pointerId;
|
|
il2cpp_codegen_runtime_class_init_inline(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var);
|
|
int32_t L_74 = ((PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_StaticFields*)il2cpp_codegen_static_fields_for(PointerId_tE48DCDC5C36DD1F5595C28EE48C0243BA8BEF35C_il2cpp_TypeInfo_var))->___mousePointerId_2;
|
|
V_7 = (bool)((((int32_t)L_73) == ((int32_t)L_74))? 1 : 0);
|
|
bool L_75 = V_7;
|
|
if (!L_75)
|
|
{
|
|
goto IL_0140;
|
|
}
|
|
}
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_76 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_77 = ___0_pointerId;
|
|
NullCheck(L_76);
|
|
int32_t L_78 = L_77;
|
|
RuntimeObject* L_79 = (L_76)->GetAt(static_cast<il2cpp_array_size_t>(L_78));
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_80 = __this->___m_PointerCapture_1;
|
|
int32_t L_81 = ___0_pointerId;
|
|
NullCheck(L_80);
|
|
int32_t L_82 = L_81;
|
|
RuntimeObject* L_83 = (L_80)->GetAt(static_cast<il2cpp_array_size_t>(L_82));
|
|
int32_t L_84 = ___0_pointerId;
|
|
MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* L_85;
|
|
L_85 = PointerCaptureEventBase_1_GetPooled_mECADB036D8A3E61FEE56F40360A9E073056CDB15(L_79, L_83, L_84, PointerCaptureEventBase_1_GetPooled_mECADB036D8A3E61FEE56F40360A9E073056CDB15_RuntimeMethod_var);
|
|
V_8 = L_85;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0132:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* L_86 = V_8;
|
|
if (!L_86)
|
|
{
|
|
goto IL_013e;
|
|
}
|
|
}
|
|
{
|
|
MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* L_87 = V_8;
|
|
NullCheck(L_87);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_87);
|
|
}
|
|
|
|
IL_013e:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_88 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_89 = ___0_pointerId;
|
|
NullCheck(L_88);
|
|
int32_t L_90 = L_89;
|
|
RuntimeObject* L_91 = (L_88)->GetAt(static_cast<il2cpp_array_size_t>(L_90));
|
|
MouseCaptureEvent_tC9F3C2595ADCE4F88D2553F8F697F00BA797B014* L_92 = V_8;
|
|
NullCheck(L_91);
|
|
InterfaceActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Void UnityEngine.UIElements.IEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, IEventHandler_tB1627CA1B7729F3E714572E69A79C91A1578C9A3_il2cpp_TypeInfo_var, L_91, L_92);
|
|
goto IL_013f;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_013f:
|
|
{
|
|
}
|
|
|
|
IL_0140:
|
|
{
|
|
}
|
|
|
|
IL_0141:
|
|
{
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_93 = __this->___m_PointerCapture_1;
|
|
int32_t L_94 = ___0_pointerId;
|
|
IEventHandlerU5BU5D_t8B5095152BCB4F52D8AB93DF0B3DD76B0ED1B97D* L_95 = __this->___m_PendingPointerCapture_0;
|
|
int32_t L_96 = ___0_pointerId;
|
|
NullCheck(L_95);
|
|
int32_t L_97 = L_96;
|
|
RuntimeObject* L_98 = (L_95)->GetAt(static_cast<il2cpp_array_size_t>(L_97));
|
|
NullCheck(L_93);
|
|
ArrayElementTypeCheck (L_93, L_98);
|
|
(L_93)->SetAt(static_cast<il2cpp_array_size_t>(L_94), (RuntimeObject*)L_98);
|
|
}
|
|
|
|
IL_0151:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::ActivateCompatibilityMouseEvents(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_ActivateCompatibilityMouseEvents_mC420BAA7192D4BBC910B8E330184630A68F541A7 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___m_ShouldSendCompatibilityMouseEvents_2;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (bool)1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.PointerDispatchState::PreventCompatibilityMouseEvents(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PointerDispatchState_PreventCompatibilityMouseEvents_m751C841E5471A5FBDE650C0092B9A55D2657CE0A (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, int32_t ___0_pointerId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_0 = __this->___m_ShouldSendCompatibilityMouseEvents_2;
|
|
int32_t L_1 = ___0_pointerId;
|
|
NullCheck(L_0);
|
|
(L_0)->SetAt(static_cast<il2cpp_array_size_t>(L_1), (bool)0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.PointerDispatchState::ShouldSendCompatibilityMouseEvents(UnityEngine.UIElements.IPointerEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PointerDispatchState_ShouldSendCompatibilityMouseEvents_m2D904DB42844ABDDDC961264F0ABA4AB292762F0 (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* __this, RuntimeObject* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(2 /* System.Boolean UnityEngine.UIElements.IPointerEvent::get_isPrimary() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_0);
|
|
if (!L_1)
|
|
{
|
|
goto IL_0018;
|
|
}
|
|
}
|
|
{
|
|
BooleanU5BU5D_tD317D27C31DB892BE79FAE3AEBC0B3FFB73DE9B4* L_2 = __this->___m_ShouldSendCompatibilityMouseEvents_2;
|
|
RuntimeObject* L_3 = ___0_evt;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = InterfaceFuncInvoker0< int32_t >::Invoke(0 /* System.Int32 UnityEngine.UIElements.IPointerEvent::get_pointerId() */, IPointerEvent_t934940574FFC2D6D155265ACC6D78BC48174D9B7_il2cpp_TypeInfo_var, L_3);
|
|
NullCheck(L_2);
|
|
int32_t L_5 = L_4;
|
|
uint8_t L_6 = (uint8_t)(L_2)->GetAt(static_cast<il2cpp_array_size_t>(L_5));
|
|
G_B3_0 = ((int32_t)(L_6));
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
bool L_7 = V_0;
|
|
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.EventDispatcherGate
|
|
IL2CPP_EXTERN_C void EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshal_pinvoke(const EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097& unmarshaled, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___m_Dispatcher_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Dispatcher' of type 'EventDispatcherGate': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Dispatcher_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshal_pinvoke_back(const EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_pinvoke& marshaled, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Dispatcher_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Dispatcher' of type 'EventDispatcherGate': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Dispatcher_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.EventDispatcherGate
|
|
IL2CPP_EXTERN_C void EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshal_pinvoke_cleanup(EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.EventDispatcherGate
|
|
IL2CPP_EXTERN_C void EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshal_com(const EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097& unmarshaled, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___m_Dispatcher_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Dispatcher' of type 'EventDispatcherGate': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Dispatcher_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshal_com_back(const EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_com& marshaled, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Dispatcher_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Dispatcher' of type 'EventDispatcherGate': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Dispatcher_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.EventDispatcherGate
|
|
IL2CPP_EXTERN_C void EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshal_com_cleanup(EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_marshaled_com& marshaled)
|
|
{
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcherGate::.ctor(UnityEngine.UIElements.EventDispatcher)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___0_d, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_0 = ___0_d;
|
|
V_0 = (bool)((((RuntimeObject*)(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralA02431CF7C501A5B368C91E41283419D8FA9FB03)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_3 = ___0_d;
|
|
__this->___m_Dispatcher_0 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Dispatcher_0), (void*)L_3);
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_4 = __this->___m_Dispatcher_0;
|
|
NullCheck(L_4);
|
|
EventDispatcher_CloseGate_mA39FBB5C32875BF687C245532996C2A1806F8515(L_4, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9_AdjustorThunk (RuntimeObject* __this, EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* ___0_d, const RuntimeMethod* method)
|
|
{
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*>(__this + _offset);
|
|
EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9(_thisAdjusted, ___0_d, method);
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcherGate::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_0 = __this->___m_Dispatcher_0;
|
|
NullCheck(L_0);
|
|
EventDispatcher_OpenGate_mCD7290FBD942060923E1F4B81769241190406584(L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*>(__this + _offset);
|
|
EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5(_thisAdjusted, method);
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcherGate::Equals(UnityEngine.UIElements.EventDispatcherGate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDispatcherGate_Equals_m6DDB9D394E9F882FE494E3B7B703DF04D665A50E (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_0 = __this->___m_Dispatcher_0;
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 L_1 = ___0_other;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2 = L_1.___m_Dispatcher_0;
|
|
bool L_3;
|
|
L_3 = Object_Equals_m434DF93FDA204D5C06E889A9CB53BC2E5D39ABF7(L_0, L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
bool L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool EventDispatcherGate_Equals_m6DDB9D394E9F882FE494E3B7B703DF04D665A50E_AdjustorThunk (RuntimeObject* __this, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 ___0_other, const RuntimeMethod* method)
|
|
{
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = EventDispatcherGate_Equals_m6DDB9D394E9F882FE494E3B7B703DF04D665A50E(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcherGate::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDispatcherGate_Equals_mBA65F996FA463B01622ACA36AC439AD04B905CC0 (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_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, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_3 = ___0_obj;
|
|
bool L_4;
|
|
L_4 = EventDispatcherGate_Equals_m6DDB9D394E9F882FE494E3B7B703DF04D665A50E(__this, ((*(EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*)((EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*)(EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*)UnBox(L_3, EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097_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 EventDispatcherGate_Equals_mBA65F996FA463B01622ACA36AC439AD04B905CC0_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = EventDispatcherGate_Equals_mBA65F996FA463B01622ACA36AC439AD04B905CC0(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.EventDispatcherGate::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t EventDispatcherGate_GetHashCode_mF0A7A9BF40B51DDCF8F30A55DB13BB299416EFDE (EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_0 = __this->___m_Dispatcher_0;
|
|
if (L_0)
|
|
{
|
|
goto IL_000c;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = 0;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_1 = __this->___m_Dispatcher_0;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = VirtualFuncInvoker0< int32_t >::Invoke(2 /* System.Int32 System.Object::GetHashCode() */, L_1);
|
|
G_B3_0 = L_2;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_001a;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
int32_t L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t EventDispatcherGate_GetHashCode_mF0A7A9BF40B51DDCF8F30A55DB13BB299416EFDE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = EventDispatcherGate_GetHashCode_mF0A7A9BF40B51DDCF8F30A55DB13BB299416EFDE(_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.PointerDispatchState UnityEngine.UIElements.EventDispatcher::get_pointerState()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_0 = __this->___U3CpointerStateU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.EventDispatcher UnityEngine.UIElements.EventDispatcher::CreateForRuntime(System.Collections.Generic.IList`1<UnityEngine.UIElements.IEventDispatchingStrategy>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* EventDispatcher_CreateForRuntime_m293E93EA2151282797AC6B40D710EDAB0828B754 (RuntimeObject* ___0_strategies, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = ___0_strategies;
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_1 = (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398*)il2cpp_codegen_object_new(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
EventDispatcher__ctor_mD5C2E443C897F68E928C197BD9096DD7EB42623C(L_1, L_0, NULL);
|
|
V_0 = L_1;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::.ctor(System.Collections.Generic.IList`1<UnityEngine.UIElements.IEventDispatchingStrategy>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher__ctor_mD5C2E443C897F68E928C197BD9096DD7EB42623C (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, RuntimeObject* ___0_strategies, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_mFC7123F04B580CC7464967C465FE4719E2FFE647_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m856D83183F6F5CDDE65CD7A3B8DBF24E3630CC2F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1__ctor_m07307D2825486BBEAEBDCA3BF1FA677FF12C4DAA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* L_0 = (ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31*)il2cpp_codegen_object_new(ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
ClickDetector__ctor_m2EE3096D3F144D680F167DECD625B42D64B7B61F(L_0, NULL);
|
|
__this->___m_ClickDetector_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ClickDetector_0), (void*)L_0);
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_1 = (PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A*)il2cpp_codegen_object_new(PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
PointerDispatchState__ctor_m85AB6B80AF036F9851B6F11FE5CD3C0DEC19D7C4(L_1, NULL);
|
|
__this->___U3CpointerStateU3Ek__BackingField_4 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CpointerStateU3Ek__BackingField_4), (void*)L_1);
|
|
Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C* L_2 = (Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C*)il2cpp_codegen_object_new(Stack_1_t19851BEF370D35BCE2A6C3848C5148B09113067C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
Stack_1__ctor_m07307D2825486BBEAEBDCA3BF1FA677FF12C4DAA(L_2, Stack_1__ctor_m07307D2825486BBEAEBDCA3BF1FA677FF12C4DAA_RuntimeMethod_var);
|
|
__this->___m_DispatchContexts_6 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DispatchContexts_6), (void*)L_2);
|
|
__this->___m_Immediate_8 = (bool)0;
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* L_3 = (List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434*)il2cpp_codegen_object_new(List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
List_1__ctor_m856D83183F6F5CDDE65CD7A3B8DBF24E3630CC2F(L_3, List_1__ctor_m856D83183F6F5CDDE65CD7A3B8DBF24E3630CC2F_RuntimeMethod_var);
|
|
__this->___m_DispatchingStrategies_1 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_DispatchingStrategies_1), (void*)L_3);
|
|
List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* L_4 = __this->___m_DispatchingStrategies_1;
|
|
RuntimeObject* L_5 = ___0_strategies;
|
|
NullCheck(L_4);
|
|
List_1_AddRange_mFC7123F04B580CC7464967C465FE4719E2FFE647(L_4, L_5, List_1_AddRange_mFC7123F04B580CC7464967C465FE4719E2FFE647_RuntimeMethod_var);
|
|
il2cpp_codegen_runtime_class_init_inline(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* L_6 = ((EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields*)il2cpp_codegen_static_fields_for(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var))->___k_EventQueuePool_2;
|
|
NullCheck(L_6);
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* L_7;
|
|
L_7 = ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A(L_6, ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A_RuntimeMethod_var);
|
|
__this->___m_Queue_3 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Queue_3), (void*)L_7);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.EventDispatcher::get_dispatchImmediately()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventDispatcher_get_dispatchImmediately_m7AAB0665C144B07BA96F09DB5DE381A06B6A4087 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0 = __this->___m_Immediate_8;
|
|
if (L_0)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_1 = __this->___m_GateCount_5;
|
|
G_B3_0 = ((((int32_t)L_1) == ((int32_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_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::set_processingEvents(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_set_processingEvents_mA0D599A467E0C916B87517A95C90B9D5F490C542 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CprocessingEventsU3Ek__BackingField_9 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::Dispatch(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,UnityEngine.UIElements.DispatchMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_Dispatch_mFFF53996F5B6B5199C9FEE63F57D9186859EC480 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, int32_t ___2_dispatchMode, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m25C01AA905EAAC1005CF0AAA2F717632787B18E9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_Enqueue_mBF44A4060F486104A2FC16D28D0BDBD08BC83491_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t G_B7_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
EventBase_MarkReceivedByDispatcher_m25808B138D5E5AA4BA0562ECCEDA82B763A87112(L_0, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_1 = ___0_evt;
|
|
NullCheck(L_1);
|
|
int64_t L_2;
|
|
L_2 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_1);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t04E4546076143315CE1BFC022AD3CC87AC64E7BD_il2cpp_TypeInfo_var);
|
|
int64_t L_3;
|
|
L_3 = EventBase_1_TypeId_m25C01AA905EAAC1005CF0AAA2F717632787B18E9(EventBase_1_TypeId_m25C01AA905EAAC1005CF0AAA2F717632787B18E9_RuntimeMethod_var);
|
|
V_0 = (bool)((((int64_t)L_2) == ((int64_t)L_3))? 1 : 0);
|
|
bool L_4 = V_0;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
NullCheck(L_5);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_6;
|
|
L_6 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_5, NULL);
|
|
V_1 = L_6;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
int32_t L_8;
|
|
L_8 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_7, NULL);
|
|
V_2 = (bool)((((int32_t)L_8) == ((int32_t)7))? 1 : 0);
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0081;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
bool L_10;
|
|
L_10 = EventDispatcher_get_dispatchImmediately_m7AAB0665C144B07BA96F09DB5DE381A06B6A4087(__this, NULL);
|
|
if (L_10)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_11 = ___2_dispatchMode;
|
|
G_B7_0 = ((((int32_t)L_11) == ((int32_t)2))? 1 : 0);
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
G_B7_0 = 1;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_3 = (bool)G_B7_0;
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0052;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
RuntimeObject* L_14 = ___1_panel;
|
|
EventDispatcher_ProcessEvent_mC229BD6346796BE86DB365C1F18FCF8F39B522C5(__this, L_13, L_14, NULL);
|
|
goto IL_0081;
|
|
}
|
|
|
|
IL_0052:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
VirtualActionInvoker0::Invoke(13 /* System.Void UnityEngine.UIElements.EventBase::Acquire() */, L_15);
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* L_16 = __this->___m_Queue_3;
|
|
il2cpp_codegen_initobj((&V_4), sizeof(EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_17 = ___0_evt;
|
|
(&V_4)->___m_Event_0 = L_17;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_4)->___m_Event_0), (void*)L_17);
|
|
RuntimeObject* L_18 = ___1_panel;
|
|
(&V_4)->___m_Panel_1 = L_18;
|
|
Il2CppCodeGenWriteBarrier((void**)(&(&V_4)->___m_Panel_1), (void*)L_18);
|
|
EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 L_19 = V_4;
|
|
NullCheck(L_16);
|
|
Queue_1_Enqueue_mBF44A4060F486104A2FC16D28D0BDBD08BC83491(L_16, L_19, Queue_1_Enqueue_mBF44A4060F486104A2FC16D28D0BDBD08BC83491_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0081:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::CloseGate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_CloseGate_mA39FBB5C32875BF687C245532996C2A1806F8515 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
uint32_t L_0 = __this->___m_GateCount_5;
|
|
__this->___m_GateCount_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_0, 1));
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::OpenGate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_OpenGate_mCD7290FBD942060923E1F4B81769241190406584 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
uint32_t L_0 = __this->___m_GateCount_5;
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((!(((uint32_t)L_0) <= ((uint32_t)0)))? 1 : 0), NULL);
|
|
uint32_t L_1 = __this->___m_GateCount_5;
|
|
V_0 = (bool)((!(((uint32_t)L_1) <= ((uint32_t)0)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
uint32_t L_3 = __this->___m_GateCount_5;
|
|
__this->___m_GateCount_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_3, 1));
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
uint32_t L_4 = __this->___m_GateCount_5;
|
|
V_1 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0043;
|
|
}
|
|
}
|
|
{
|
|
EventDispatcher_ProcessEventQueue_mDC6EAC056EA04D165F93E7D7991FDC7C5B1722D1(__this, NULL);
|
|
}
|
|
|
|
IL_0043:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::ProcessEventQueue()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_ProcessEventQueue_mDC6EAC056EA04D165F93E7D7991FDC7C5B1722D1 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Release_m58FA19A999DA19110F7DEA824BD62A4CE8159F5C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_Dequeue_m90F123DA1976DFBC4D8B331B07B1EB833A2E4509_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Queue_1_get_Count_m08F50B5D83CD07085F9B86C829170F37FE7EF037_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* V_0 = NULL;
|
|
ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549* V_1 = NULL;
|
|
EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* V_3 = NULL;
|
|
RuntimeObject* V_4 = NULL;
|
|
ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
il2cpp::utils::ExceptionSupportStack<RuntimeObject*, 1> __active_exceptions;
|
|
{
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* L_0 = __this->___m_Queue_3;
|
|
V_0 = L_0;
|
|
il2cpp_codegen_runtime_class_init_inline(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* L_1 = ((EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields*)il2cpp_codegen_static_fields_for(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var))->___k_EventQueuePool_2;
|
|
NullCheck(L_1);
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* L_2;
|
|
L_2 = ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A(L_1, ObjectPool_1_Get_mBACD9438BE076EDC8AB66B212CE149DE77D33F4A_RuntimeMethod_var);
|
|
__this->___m_Queue_3 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Queue_3), (void*)L_2);
|
|
V_1 = (ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549*)NULL;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_007c:
|
|
{// begin finally (depth: 1)
|
|
EventDispatcher_set_processingEvents_mA0D599A467E0C916B87517A95C90B9D5F490C542_inline(__this, (bool)0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* L_3 = ((EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields*)il2cpp_codegen_static_fields_for(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var))->___k_EventQueuePool_2;
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* L_4 = V_0;
|
|
NullCheck(L_3);
|
|
ObjectPool_1_Release_m58FA19A999DA19110F7DEA824BD62A4CE8159F5C(L_3, L_4, ObjectPool_1_Release_m58FA19A999DA19110F7DEA824BD62A4CE8159F5C_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
EventDispatcher_set_processingEvents_mA0D599A467E0C916B87517A95C90B9D5F490C542_inline(__this, (bool)1, NULL);
|
|
goto IL_006a_1;
|
|
}
|
|
|
|
IL_0025_1:
|
|
{
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* L_5 = V_0;
|
|
NullCheck(L_5);
|
|
EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 L_6;
|
|
L_6 = Queue_1_Dequeue_m90F123DA1976DFBC4D8B331B07B1EB833A2E4509(L_5, Queue_1_Dequeue_m90F123DA1976DFBC4D8B331B07B1EB833A2E4509_RuntimeMethod_var);
|
|
V_2 = L_6;
|
|
EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 L_7 = V_2;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = L_7.___m_Event_0;
|
|
V_3 = L_8;
|
|
EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2 L_9 = V_2;
|
|
RuntimeObject* L_10 = L_9.___m_Panel_1;
|
|
V_4 = L_10;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_005f_1:
|
|
{// begin finally (depth: 2)
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = V_3;
|
|
NullCheck(L_11);
|
|
VirtualActionInvoker0::Invoke(14 /* System.Void UnityEngine.UIElements.EventBase::Dispose() */, L_11);
|
|
return;
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
try
|
|
{// begin try (depth: 3)
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_12 = V_3;
|
|
RuntimeObject* L_13 = V_4;
|
|
EventDispatcher_ProcessEvent_mC229BD6346796BE86DB365C1F18FCF8F39B522C5(__this, L_12, L_13, NULL);
|
|
goto IL_005d_2;
|
|
}// end try (depth: 3)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex)))
|
|
{
|
|
IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex);
|
|
goto CATCH_004a_2;
|
|
}
|
|
throw e;
|
|
}
|
|
|
|
CATCH_004a_2:
|
|
{// begin catch(UnityEngine.ExitGUIException)
|
|
ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549* L_14 = ((ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549*)IL2CPP_GET_ACTIVE_EXCEPTION(ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549*));;
|
|
V_5 = L_14;
|
|
ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549* L_15 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var)));
|
|
Debug_Assert_m6E778CACD0F440E2DEA9ACDD9330A22DAF16E96D((bool)((((RuntimeObject*)(ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549*)L_15) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0), NULL);
|
|
ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549* L_16 = V_5;
|
|
V_1 = L_16;
|
|
IL2CPP_POP_ACTIVE_EXCEPTION(Exception_t*);
|
|
goto IL_005d_2;
|
|
}// end catch (depth: 3)
|
|
|
|
IL_005d_2:
|
|
{
|
|
goto IL_0069_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0069_1:
|
|
{
|
|
}
|
|
|
|
IL_006a_1:
|
|
{
|
|
Queue_1_t488F4FFC87B785BACAAF18A6B2E9307E5451DF68* L_17 = V_0;
|
|
NullCheck(L_17);
|
|
int32_t L_18;
|
|
L_18 = Queue_1_get_Count_m08F50B5D83CD07085F9B86C829170F37FE7EF037_inline(L_17, Queue_1_get_Count_m08F50B5D83CD07085F9B86C829170F37FE7EF037_RuntimeMethod_var);
|
|
V_6 = (bool)((((int32_t)L_18) > ((int32_t)0))? 1 : 0);
|
|
bool L_19 = V_6;
|
|
if (L_19)
|
|
{
|
|
goto IL_0025_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549* L_20 = V_1;
|
|
V_7 = (bool)((!(((RuntimeObject*)(ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549*)L_20) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_21 = V_7;
|
|
if (!L_21)
|
|
{
|
|
goto IL_00a0;
|
|
}
|
|
}
|
|
{
|
|
ExitGUIException_tFF2EEEBACD9E5684D6112478EEF754B74D154549* L_22 = V_1;
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_22, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&EventDispatcher_ProcessEventQueue_mDC6EAC056EA04D165F93E7D7991FDC7C5B1722D1_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00a0:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::ProcessEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_ProcessEvent_mC229BD6346796BE86DB365C1F18FCF8F39B522C5 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __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*)&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*)&List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDB32B0D9CD7F4F3E58406468986C4538F5B0ED33);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* V_0 = NULL;
|
|
bool V_1 = false;
|
|
EventDispatcherGate_t75A9E135B6558D523DCFC5CF95B44F153A779097 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 V_5;
|
|
memset((&V_5), 0, sizeof(V_5));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_6 = NULL;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
int32_t G_B23_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_0 = L_1;
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_3 = V_0;
|
|
NullCheck(L_3);
|
|
int32_t L_4;
|
|
L_4 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_3, NULL);
|
|
G_B3_0 = ((((int32_t)L_4) == ((int32_t)((int32_t)12)))? 1 : 0);
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
EventDispatcherGate__ctor_mF02241D3AB4F068E3F0493D2E407C344C66810A9((&V_2), __this, NULL);
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0104:
|
|
{// begin finally (depth: 1)
|
|
EventDispatcherGate_Dispose_m55EF7949617C12B917FF0374D4F140F2054CE9C5((&V_2), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_5 = ___0_evt;
|
|
RuntimeObject* L_6 = ___1_panel;
|
|
NullCheck(L_5);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(7 /* System.Void UnityEngine.UIElements.EventBase::PreDispatch(UnityEngine.UIElements.IPanel) */, L_5, L_6);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = EventBase_get_stopDispatch_m33A3AF345D167E57385AC3B24D48265500B4F618(L_7, NULL);
|
|
if (L_8)
|
|
{
|
|
goto IL_003d_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_9 = ___0_evt;
|
|
NullCheck(L_9);
|
|
bool L_10;
|
|
L_10 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_9, NULL);
|
|
G_B7_0 = ((((int32_t)L_10) == ((int32_t)0))? 1 : 0);
|
|
goto IL_003e_1;
|
|
}
|
|
|
|
IL_003d_1:
|
|
{
|
|
G_B7_0 = 0;
|
|
}
|
|
|
|
IL_003e_1:
|
|
{
|
|
V_3 = (bool)G_B7_0;
|
|
bool L_11 = V_3;
|
|
if (!L_11)
|
|
{
|
|
goto IL_004e_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_12 = ___0_evt;
|
|
RuntimeObject* L_13 = ___1_panel;
|
|
bool L_14 = V_1;
|
|
EventDispatcher_ApplyDispatchingStrategies_mFC4FBEF34AE00A7D2936410CB028B0D02C4E1C28(__this, L_12, L_13, L_14, NULL);
|
|
}
|
|
|
|
IL_004e_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_16;
|
|
L_16 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_15, NULL);
|
|
V_4 = (bool)((!(((RuntimeObject*)(PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5*)L_16) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_00b9_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
PropagationPaths_tA17A0F2CAFF1A86B552ED6D984DAA2F14AB2B0E5* L_19;
|
|
L_19 = EventBase_get_path_m897C4537E734562726ECFD896DE1D06D5460D530(L_18, NULL);
|
|
NullCheck(L_19);
|
|
List_1_t6115BBE78FE9310B180A2027321DF46F2A06AC95* L_20 = L_19->___targetElements_2;
|
|
NullCheck(L_20);
|
|
Enumerator_tB70AE61864AD2008C8CDDE421848AD69E69AE525 L_21;
|
|
L_21 = List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF(L_20, List_1_GetEnumerator_m57952DE1FACF2FE8083546945916B0B995290EAF_RuntimeMethod_var);
|
|
V_5 = L_21;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_009a_1:
|
|
{// begin finally (depth: 2)
|
|
Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4((&V_5), Enumerator_Dispose_m2A5FB7E43101302337178BF43E63DB8368759BB4_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
goto IL_008f_2;
|
|
}
|
|
|
|
IL_0073_2:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_22;
|
|
L_22 = Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_inline((&V_5), Enumerator_get_Current_mB7757CAB14504096954228BA7CF5F646853128D4_RuntimeMethod_var);
|
|
V_6 = L_22;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_23 = ___0_evt;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24 = V_6;
|
|
NullCheck(L_23);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_23, L_24, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_25 = ___0_evt;
|
|
RuntimeObject* L_26 = ___1_panel;
|
|
EventDispatchUtilities_ExecuteDefaultAction_mFC9D0F0C79521D3F0AE30AC147E4686395BC1F94(L_25, L_26, NULL);
|
|
}
|
|
|
|
IL_008f_2:
|
|
{
|
|
bool L_27;
|
|
L_27 = Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844((&V_5), Enumerator_MoveNext_m9F65E2FE306240D5385DDF1C59E50F8B139AD844_RuntimeMethod_var);
|
|
if (L_27)
|
|
{
|
|
goto IL_0073_2;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a9_1;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00a9_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_28 = ___0_evt;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_29 = ___0_evt;
|
|
NullCheck(L_29);
|
|
RuntimeObject* L_30;
|
|
L_30 = EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline(L_29, NULL);
|
|
NullCheck(L_28);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_28, L_30, NULL);
|
|
goto IL_00c3_1;
|
|
}
|
|
|
|
IL_00b9_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_31 = ___0_evt;
|
|
RuntimeObject* L_32 = ___1_panel;
|
|
EventDispatchUtilities_ExecuteDefaultAction_mFC9D0F0C79521D3F0AE30AC147E4686395BC1F94(L_31, L_32, NULL);
|
|
}
|
|
|
|
IL_00c3_1:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_33 = ___0_evt;
|
|
RuntimeObject* L_34 = ___1_panel;
|
|
NullCheck(L_33);
|
|
VirtualActionInvoker1< RuntimeObject* >::Invoke(9 /* System.Void UnityEngine.UIElements.EventBase::PostDispatch(UnityEngine.UIElements.IPanel) */, L_33, L_34);
|
|
ClickDetector_t6B5A82C99CFD12E051D8E84A7C8F7488355B8F31* L_35 = __this->___m_ClickDetector_0;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_36 = ___0_evt;
|
|
NullCheck(L_35);
|
|
ClickDetector_ProcessEvent_mDE17D7808B1328C2D4A18B377FA6FC0503DB9155(L_35, L_36, NULL);
|
|
bool L_37 = V_1;
|
|
if (L_37)
|
|
{
|
|
goto IL_00f5_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_38 = ___0_evt;
|
|
NullCheck(L_38);
|
|
bool L_39;
|
|
L_39 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_38, NULL);
|
|
if (L_39)
|
|
{
|
|
goto IL_00f5_1;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_40 = V_0;
|
|
if (!L_40)
|
|
{
|
|
goto IL_00f5_1;
|
|
}
|
|
}
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_41 = V_0;
|
|
NullCheck(L_41);
|
|
int32_t L_42;
|
|
L_42 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_41, NULL);
|
|
G_B23_0 = ((((int32_t)((((int32_t)L_42) == ((int32_t)((int32_t)12)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00f6_1;
|
|
}
|
|
|
|
IL_00f5_1:
|
|
{
|
|
G_B23_0 = 1;
|
|
}
|
|
|
|
IL_00f6_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_mA460392021AC0A8210C9081E3C1C9652DBF32BF6((bool)G_B23_0, _stringLiteralDB32B0D9CD7F4F3E58406468986C4538F5B0ED33, NULL);
|
|
goto IL_0113;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0113:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::ApplyDispatchingStrategies(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher_ApplyDispatchingStrategies_mFC4FBEF34AE00A7D2936410CB028B0D02C4E1C28 (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, RuntimeObject* ___1_panel, bool ___2_imguiEventIsInitiallyUsed, 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*)&Enumerator_Dispose_m43C9EF170B762DE400946F0C2FFB8CC03202C627_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m12D53D4879F9DA63D7E9E6762C8980DD625D6D36_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m432F18887566E32D2652596B6FC1FED2EFE41F2A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventDispatchingStrategy_t0D91FED4877152CF1089B374AE7BF2C4374E8545_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mE50C8692EDBD4CE82AF40ABF900B32D16CE06747_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E862305548C4DDFD57B29415597CBDB61D1574B);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t G_B8_0 = 0;
|
|
int32_t G_B11_0 = 0;
|
|
{
|
|
List_1_t2F690D65CDFD8A655A39952668F912C3F99B0434* L_0 = __this->___m_DispatchingStrategies_1;
|
|
NullCheck(L_0);
|
|
Enumerator_tEACDA201A43D9E989E4D68E8913F5CE1126CDE7D L_1;
|
|
L_1 = List_1_GetEnumerator_mE50C8692EDBD4CE82AF40ABF900B32D16CE06747(L_0, List_1_GetEnumerator_mE50C8692EDBD4CE82AF40ABF900B32D16CE06747_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0085:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m43C9EF170B762DE400946F0C2FFB8CC03202C627((&V_0), Enumerator_Dispose_m43C9EF170B762DE400946F0C2FFB8CC03202C627_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_007a_1;
|
|
}
|
|
|
|
IL_0010_1:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = Enumerator_get_Current_m432F18887566E32D2652596B6FC1FED2EFE41F2A_inline((&V_0), Enumerator_get_Current_m432F18887566E32D2652596B6FC1FED2EFE41F2A_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
RuntimeObject* L_3 = V_1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_evt;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = InterfaceFuncInvoker1< bool, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(0 /* System.Boolean UnityEngine.UIElements.IEventDispatchingStrategy::CanDispatchEvent(UnityEngine.UIElements.EventBase) */, IEventDispatchingStrategy_t0D91FED4877152CF1089B374AE7BF2C4374E8545_il2cpp_TypeInfo_var, L_3, L_4);
|
|
V_2 = L_5;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0079_1;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7 = V_1;
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___0_evt;
|
|
RuntimeObject* L_9 = ___1_panel;
|
|
NullCheck(L_7);
|
|
InterfaceActionInvoker2< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*, RuntimeObject* >::Invoke(1 /* System.Void UnityEngine.UIElements.IEventDispatchingStrategy::DispatchEvent(UnityEngine.UIElements.EventBase,UnityEngine.UIElements.IPanel) */, IEventDispatchingStrategy_t0D91FED4877152CF1089B374AE7BF2C4374E8545_il2cpp_TypeInfo_var, L_7, L_8, L_9);
|
|
bool L_10 = ___2_imguiEventIsInitiallyUsed;
|
|
if (L_10)
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_11 = ___0_evt;
|
|
NullCheck(L_11);
|
|
bool L_12;
|
|
L_12 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_11, NULL);
|
|
if (L_12)
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
NullCheck(L_13);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_14;
|
|
L_14 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_13, NULL);
|
|
if (!L_14)
|
|
{
|
|
goto IL_0055_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___0_evt;
|
|
NullCheck(L_15);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_16;
|
|
L_16 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_15, NULL);
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = Event_get_rawType_mD7CD874F3C8DFD4DFB6237E79A7C3A484B33CE56(L_16, NULL);
|
|
G_B8_0 = ((((int32_t)((((int32_t)L_17) == ((int32_t)((int32_t)12)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0056_1;
|
|
}
|
|
|
|
IL_0055_1:
|
|
{
|
|
G_B8_0 = 1;
|
|
}
|
|
|
|
IL_0056_1:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_Assert_mA460392021AC0A8210C9081E3C1C9652DBF32BF6((bool)G_B8_0, _stringLiteral7E862305548C4DDFD57B29415597CBDB61D1574B, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_18 = ___0_evt;
|
|
NullCheck(L_18);
|
|
bool L_19;
|
|
L_19 = EventBase_get_stopDispatch_m33A3AF345D167E57385AC3B24D48265500B4F618(L_18, NULL);
|
|
if (L_19)
|
|
{
|
|
goto IL_0071_1;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_20 = ___0_evt;
|
|
NullCheck(L_20);
|
|
bool L_21;
|
|
L_21 = EventBase_get_isPropagationStopped_m36E1E4831DC04452D18B5339E2CAD8979B6BD6B3(L_20, NULL);
|
|
G_B11_0 = ((int32_t)(L_21));
|
|
goto IL_0072_1;
|
|
}
|
|
|
|
IL_0071_1:
|
|
{
|
|
G_B11_0 = 1;
|
|
}
|
|
|
|
IL_0072_1:
|
|
{
|
|
V_3 = (bool)G_B11_0;
|
|
bool L_22 = V_3;
|
|
if (!L_22)
|
|
{
|
|
goto IL_0078_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0083_1;
|
|
}
|
|
|
|
IL_0078_1:
|
|
{
|
|
}
|
|
|
|
IL_0079_1:
|
|
{
|
|
}
|
|
|
|
IL_007a_1:
|
|
{
|
|
bool L_23;
|
|
L_23 = Enumerator_MoveNext_m12D53D4879F9DA63D7E9E6762C8980DD625D6D36((&V_0), Enumerator_MoveNext_m12D53D4879F9DA63D7E9E6762C8980DD625D6D36_RuntimeMethod_var);
|
|
if (L_23)
|
|
{
|
|
goto IL_0010_1;
|
|
}
|
|
}
|
|
|
|
IL_0083_1:
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.EventDispatcher::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void EventDispatcher__cctor_mAC55FB4C0AF399514E7A5AA3A0A04CA00AE51E84 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1__ctor_m3CDA6D988A544733ED1D31C3C4CC68413D1A33C6_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9* L_0 = (ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9*)il2cpp_codegen_object_new(ObjectPool_1_t330A51752287ED087418126C388D21E9DBEF95C9_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
ObjectPool_1__ctor_m3CDA6D988A544733ED1D31C3C4CC68413D1A33C6(L_0, ((int32_t)100), ObjectPool_1__ctor_m3CDA6D988A544733ED1D31C3C4CC68413D1A33C6_RuntimeMethod_var);
|
|
((EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields*)il2cpp_codegen_static_fields_for(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var))->___k_EventQueuePool_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields*)il2cpp_codegen_static_fields_for(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var))->___k_EventQueuePool_2), (void*)L_0);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_1 = (IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97*)(IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97*)SZArrayNew(IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97_il2cpp_TypeInfo_var, (uint32_t)8);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_2 = L_1;
|
|
PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE* L_3 = (PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE*)il2cpp_codegen_object_new(PointerCaptureDispatchingStrategy_t076B81E1D47F28C5BCA40E9E535125FF48AF3DDE_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
PointerCaptureDispatchingStrategy__ctor_m2A38585BC0D3626E41D701C40F2C438F4DFFD31C(L_3, NULL);
|
|
NullCheck(L_2);
|
|
ArrayElementTypeCheck (L_2, L_3);
|
|
(L_2)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_3);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_4 = L_2;
|
|
MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439* L_5 = (MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439*)il2cpp_codegen_object_new(MouseCaptureDispatchingStrategy_t6098898AC8EC044A7B4ADE38812D96CD54FE1439_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
MouseCaptureDispatchingStrategy__ctor_m60B0E3EEFE4F7DB32F8524587FC9A38B2C03F0A7(L_5, NULL);
|
|
NullCheck(L_4);
|
|
ArrayElementTypeCheck (L_4, L_5);
|
|
(L_4)->SetAt(static_cast<il2cpp_array_size_t>(1), (RuntimeObject*)L_5);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_6 = L_4;
|
|
KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB* L_7 = (KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB*)il2cpp_codegen_object_new(KeyboardEventDispatchingStrategy_t1D8588FA7A010091B956CC8EF09E0C072A2DB7EB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_7);
|
|
KeyboardEventDispatchingStrategy__ctor_m5523F5CF14EC10558302BF5EF9DA8E336362E9A8(L_7, NULL);
|
|
NullCheck(L_6);
|
|
ArrayElementTypeCheck (L_6, L_7);
|
|
(L_6)->SetAt(static_cast<il2cpp_array_size_t>(2), (RuntimeObject*)L_7);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_8 = L_6;
|
|
PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F* L_9 = (PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F*)il2cpp_codegen_object_new(PointerEventDispatchingStrategy_t435CBA778EF2620FC83C65435C478D1D32AB396F_il2cpp_TypeInfo_var);
|
|
NullCheck(L_9);
|
|
PointerEventDispatchingStrategy__ctor_m0B72334A7F6713ADBC0682135C498FDF8FD33F87(L_9, NULL);
|
|
NullCheck(L_8);
|
|
ArrayElementTypeCheck (L_8, L_9);
|
|
(L_8)->SetAt(static_cast<il2cpp_array_size_t>(3), (RuntimeObject*)L_9);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_10 = L_8;
|
|
MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460* L_11 = (MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460*)il2cpp_codegen_object_new(MouseEventDispatchingStrategy_t0D9B199C6AE7E17D0D07C6E4A716DF71BCBA4460_il2cpp_TypeInfo_var);
|
|
NullCheck(L_11);
|
|
MouseEventDispatchingStrategy__ctor_m24A76F9817155C0AC9FFFEEB821FD500F84FA408(L_11, NULL);
|
|
NullCheck(L_10);
|
|
ArrayElementTypeCheck (L_10, L_11);
|
|
(L_10)->SetAt(static_cast<il2cpp_array_size_t>(4), (RuntimeObject*)L_11);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_12 = L_10;
|
|
CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520* L_13 = (CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520*)il2cpp_codegen_object_new(CommandEventDispatchingStrategy_tCFC4DE46DCAA420CAC2DF2FDBD7571E524D8F520_il2cpp_TypeInfo_var);
|
|
NullCheck(L_13);
|
|
CommandEventDispatchingStrategy__ctor_m27457609CA672B11FC670BAC2B64E2C0D71E8DEE(L_13, NULL);
|
|
NullCheck(L_12);
|
|
ArrayElementTypeCheck (L_12, L_13);
|
|
(L_12)->SetAt(static_cast<il2cpp_array_size_t>(5), (RuntimeObject*)L_13);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_14 = L_12;
|
|
IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0* L_15 = (IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0*)il2cpp_codegen_object_new(IMGUIEventDispatchingStrategy_tE180FB6B330B6829DA87D283265044F6E782AFB0_il2cpp_TypeInfo_var);
|
|
NullCheck(L_15);
|
|
IMGUIEventDispatchingStrategy__ctor_m4F8BC966B31710FA705E4585B6A6EC096A24F8BC(L_15, NULL);
|
|
NullCheck(L_14);
|
|
ArrayElementTypeCheck (L_14, L_15);
|
|
(L_14)->SetAt(static_cast<il2cpp_array_size_t>(6), (RuntimeObject*)L_15);
|
|
IEventDispatchingStrategyU5BU5D_tFA34355B1D26B7562068B4D394A28C62295EBD97* L_16 = L_14;
|
|
DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A* L_17 = (DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A*)il2cpp_codegen_object_new(DefaultDispatchingStrategy_t932CD1E1A7C174B58D6E1CAF879DA755AB88AA1A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
DefaultDispatchingStrategy__ctor_m142BF3B927F318FA373FF832F02D1615A19F7BCA(L_17, NULL);
|
|
NullCheck(L_16);
|
|
ArrayElementTypeCheck (L_16, L_17);
|
|
(L_16)->SetAt(static_cast<il2cpp_array_size_t>(7), (RuntimeObject*)L_17);
|
|
((EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields*)il2cpp_codegen_static_fields_for(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var))->___s_EditorStrategies_7 = L_16;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_StaticFields*)il2cpp_codegen_static_fields_for(EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398_il2cpp_TypeInfo_var))->___s_EditorStrategies_7), (void*)L_16);
|
|
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.EventDispatcher/EventRecord
|
|
IL2CPP_EXTERN_C void EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshal_pinvoke(const EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2& unmarshaled, EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___m_Event_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Event' of type 'EventRecord': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Event_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshal_pinvoke_back(const EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_pinvoke& marshaled, EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Event_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Event' of type 'EventRecord': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Event_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
IL2CPP_EXTERN_C void EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshal_pinvoke_cleanup(EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
IL2CPP_EXTERN_C void EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshal_com(const EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2& unmarshaled, EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___m_Event_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Event' of type 'EventRecord': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Event_0Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshal_com_back(const EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshaled_com& marshaled, EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Event_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Event' of type 'EventRecord': Reference type field marshaling is not supported.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Event_0Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.EventDispatcher/EventRecord
|
|
IL2CPP_EXTERN_C void EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_marshal_com_cleanup(EventRecord_tEC2901C48A23F5AFE20A9E8D4F05F3799EA62BF2_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
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
IL2CPP_EXTERN_C void DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshal_pinvoke(const DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455& unmarshaled, DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_pinvoke& marshaled)
|
|
{
|
|
Exception_t* ___m_Queue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Queue' of type 'DispatchContext'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Queue_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshal_pinvoke_back(const DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_pinvoke& marshaled, DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Queue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Queue' of type 'DispatchContext'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Queue_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
IL2CPP_EXTERN_C void DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshal_pinvoke_cleanup(DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_pinvoke& marshaled)
|
|
{
|
|
}
|
|
// Conversion methods for marshalling of: UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
IL2CPP_EXTERN_C void DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshal_com(const DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455& unmarshaled, DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_com& marshaled)
|
|
{
|
|
Exception_t* ___m_Queue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Queue' of type 'DispatchContext'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Queue_1Exception, NULL);
|
|
}
|
|
IL2CPP_EXTERN_C void DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshal_com_back(const DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshaled_com& marshaled, DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455& unmarshaled)
|
|
{
|
|
Exception_t* ___m_Queue_1Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'm_Queue' of type 'DispatchContext'.");
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(___m_Queue_1Exception, NULL);
|
|
}
|
|
// Conversion method for clean up from marshalling of: UnityEngine.UIElements.EventDispatcher/DispatchContext
|
|
IL2CPP_EXTERN_C void DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_marshal_com_cleanup(DispatchContext_tFA37790A5FF30508B0146B79E4FF1880EB82E455_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.String UnityEngine.UIElements.TemplateContainer::get_templateId()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TemplateContainer_get_templateId_m33148C018084F7A90609850FF61B74347BFC0A4C (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CtemplateIdU3Ek__BackingField_67;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TemplateContainer::set_templateId(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TemplateContainer_set_templateId_m0E14566E4F401DDFB2DC0222836842DDE57806B1 (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CtemplateIdU3Ek__BackingField_67 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtemplateIdU3Ek__BackingField_67), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TemplateContainer::set_templateSource(UnityEngine.UIElements.VisualTreeAsset)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TemplateContainer_set_templateSource_mC3C202D716EDF6A6B10311981B67439C63C15CD9 (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_0 = ___0_value;
|
|
__this->___m_TemplateSource_69 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TemplateSource_69), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TemplateContainer::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TemplateContainer__ctor_mA75E65DE2AA9A08A9A3EB798EA57EE3D9A63B4EC (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TemplateContainer__ctor_m9C1E46949BF52805DB6F132249808F899BFD807E(__this, (String_t*)NULL, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TemplateContainer::.ctor(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TemplateContainer__ctor_m9C1E46949BF52805DB6F132249808F899BFD807E (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, String_t* ___0_templateId, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
BindableElement__ctor_m827E1D7852F342FCC582E31E9857F6976D958454(__this, NULL);
|
|
String_t* L_0 = ___0_templateId;
|
|
TemplateContainer_set_templateId_m0E14566E4F401DDFB2DC0222836842DDE57806B1_inline(__this, L_0, NULL);
|
|
__this->___m_ContentContainer_68 = __this;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ContentContainer_68), (void*)__this);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElement UnityEngine.UIElements.TemplateContainer::get_contentContainer()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* TemplateContainer_get_contentContainer_m830BB1ADC8B56E754E7AD6198A1FE7333B5D93FB (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___m_ContentContainer_68;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TemplateContainer::SetContentContainer(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TemplateContainer_SetContentContainer_m099B9A4D2CD70F649284E1A5EDAB65263D2A5451 (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_content, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_content;
|
|
__this->___m_ContentContainer_68 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ContentContainer_68), (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.String UnityEngine.UIElements.TemplateContainer/UxmlFactory::get_uxmlName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UxmlFactory_get_uxmlName_m189DC4C242F0EACFDC6786139A38A85E5DBADAC6 (UxmlFactory_t5721E550FC36B9FB25920C8A1BF3ED0690EAD095* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral8172BAC95C9A5BE9FAE6423959034DB348689962);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
return _stringLiteral8172BAC95C9A5BE9FAE6423959034DB348689962;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.TemplateContainer/UxmlFactory::get_uxmlQualifiedName()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UxmlFactory_get_uxmlQualifiedName_m18E1CBF49CEA61E42E3C76420350B8F83E03FA72 (UxmlFactory_t5721E550FC36B9FB25920C8A1BF3ED0690EAD095* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0;
|
|
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(8 /* System.String UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TemplateContainer,UnityEngine.UIElements.TemplateContainer/UxmlTraits>::get_uxmlNamespace() */, __this);
|
|
String_t* L_1;
|
|
L_1 = VirtualFuncInvoker0< String_t* >::Invoke(7 /* System.String UnityEngine.UIElements.UxmlFactory`2<UnityEngine.UIElements.TemplateContainer,UnityEngine.UIElements.TemplateContainer/UxmlTraits>::get_uxmlName() */, __this);
|
|
String_t* L_2;
|
|
L_2 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_0, _stringLiteralF3E84B722399601AD7E281754E917478AA9AD48D, L_1, NULL);
|
|
return L_2;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TemplateContainer/UxmlFactory::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlFactory__ctor_m442008A727857B9AE76F718FCFD16E60AC5F13AB (UxmlFactory_t5721E550FC36B9FB25920C8A1BF3ED0690EAD095* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlFactory_2__ctor_m1EAD5B8148AC5467CF2774840E258D93AF49C9BC_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlFactory_2__ctor_m1EAD5B8148AC5467CF2774840E258D93AF49C9BC(__this, UxmlFactory_2__ctor_m1EAD5B8148AC5467CF2774840E258D93AF49C9BC_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.TemplateContainer/UxmlTraits::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits_Init_m0DAB03594CEE6E6670BECCE6E62C9EC7E933B025 (UxmlTraits_t0D8AB59C52341D77460AC5A03B477ED2C6A05AB6* __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*)&CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m020E56BAD0BB49CFE3FCE3DB934D337DF2A9BDE8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t70EE7982F45810D4B024CF720D910E67974A3094_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral508FC97525146E8F2964FF05AC4A7C131CB1D259);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralB04E6A757168B91383DCF5A72C81738955D0E6DA);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* V_0 = NULL;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* V_1 = NULL;
|
|
bool V_2 = false;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* V_3 = NULL;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* V_4 = NULL;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* V_5 = NULL;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* G_B2_0 = NULL;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* G_B1_0 = NULL;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* G_B3_0 = NULL;
|
|
TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807* G_B7_0 = NULL;
|
|
TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807* G_B6_0 = NULL;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* G_B8_0 = NULL;
|
|
int32_t G_B11_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
RuntimeObject* L_1 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_2 = ___2_cc;
|
|
UxmlTraits_Init_mF7618ABBF84731C43491CE8BD8ADB637AF5CD44D(__this, L_0, L_1, L_2, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ve;
|
|
V_0 = ((TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2*)CastclassClass((RuntimeObject*)L_3, TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2_il2cpp_TypeInfo_var));
|
|
TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* L_4 = V_0;
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_5 = __this->___m_Template_13;
|
|
RuntimeObject* L_6 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_7 = ___2_cc;
|
|
NullCheck(L_5);
|
|
String_t* L_8;
|
|
L_8 = VirtualFuncInvoker2< String_t*, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.String>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_5, L_6, L_7);
|
|
NullCheck(L_4);
|
|
TemplateContainer_set_templateId_m0E14566E4F401DDFB2DC0222836842DDE57806B1_inline(L_4, L_8, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_il2cpp_TypeInfo_var);
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_9;
|
|
L_9 = CreationContext_get_visualTreeAsset_m478AAEFDA03B37814BAE57058C7614528E1C2A42_inline((&___2_cc), NULL);
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_10 = L_9;
|
|
G_B1_0 = L_10;
|
|
if (L_10)
|
|
{
|
|
G_B2_0 = L_10;
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
G_B3_0 = ((VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB*)(NULL));
|
|
goto IL_003f;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* L_11 = V_0;
|
|
NullCheck(L_11);
|
|
String_t* L_12;
|
|
L_12 = TemplateContainer_get_templateId_m33148C018084F7A90609850FF61B74347BFC0A4C_inline(L_11, NULL);
|
|
NullCheck(G_B2_0);
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_13;
|
|
L_13 = VisualTreeAsset_ResolveTemplate_m80A2BC17679475AF07C778E2BC3C76A11D0028FF(G_B2_0, L_12, NULL);
|
|
G_B3_0 = L_13;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
V_1 = G_B3_0;
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_14 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_15;
|
|
L_15 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_14, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_2 = L_15;
|
|
bool L_16 = V_2;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0069;
|
|
}
|
|
}
|
|
{
|
|
TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* L_17 = V_0;
|
|
TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
String_t* L_19;
|
|
L_19 = TemplateContainer_get_templateId_m33148C018084F7A90609850FF61B74347BFC0A4C_inline(L_18, NULL);
|
|
String_t* L_20;
|
|
L_20 = String_Format_mA8DBB4C2516B9723C5A41E6CB1E2FAF4BBE96DD8(_stringLiteral508FC97525146E8F2964FF05AC4A7C131CB1D259, L_19, NULL);
|
|
Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70* L_21 = (Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70*)il2cpp_codegen_object_new(Label_tC160668F9119CE0F5567021FB208E64A5B1C5B70_il2cpp_TypeInfo_var);
|
|
NullCheck(L_21);
|
|
Label__ctor_m83EBFB8426823A52FD005780264806926C731009(L_21, L_20, NULL);
|
|
NullCheck(L_17);
|
|
VisualElement_Add_mE2571CCB23C09103F8732EEC73833683F7236A7F(L_17, L_21, NULL);
|
|
goto IL_00dd;
|
|
}
|
|
|
|
IL_0069:
|
|
{
|
|
RuntimeObject* L_22 = ___1_bag;
|
|
TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807* L_23 = ((TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807*)IsInstClass((RuntimeObject*)L_22, TemplateAsset_tC664499D6A2637AE64DC3F73181C4CBA73664807_il2cpp_TypeInfo_var));
|
|
G_B6_0 = L_23;
|
|
if (L_23)
|
|
{
|
|
G_B7_0 = L_23;
|
|
goto IL_0077;
|
|
}
|
|
}
|
|
{
|
|
G_B8_0 = ((List_1_t70EE7982F45810D4B024CF720D910E67974A3094*)(NULL));
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_0077:
|
|
{
|
|
NullCheck(G_B7_0);
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_24;
|
|
L_24 = TemplateAsset_get_attributeOverrides_m5A1E13D617677C9E324F2FFB1D6DCAC42B139132(G_B7_0, NULL);
|
|
G_B8_0 = L_24;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
V_3 = G_B8_0;
|
|
il2cpp_codegen_runtime_class_init_inline(CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_il2cpp_TypeInfo_var);
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_25;
|
|
L_25 = CreationContext_get_attributeOverrides_m45F8DFA6FD690CD45E801AACCA682B387904EF8C_inline((&___2_cc), NULL);
|
|
V_4 = L_25;
|
|
V_5 = (List_1_t70EE7982F45810D4B024CF720D910E67974A3094*)NULL;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_26 = V_3;
|
|
if (L_26)
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
}
|
|
{
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_27 = V_4;
|
|
G_B11_0 = ((!(((RuntimeObject*)(List_1_t70EE7982F45810D4B024CF720D910E67974A3094*)L_27) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0094;
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
G_B11_0 = 1;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
V_6 = (bool)G_B11_0;
|
|
bool L_28 = V_6;
|
|
if (!L_28)
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
}
|
|
{
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_29 = (List_1_t70EE7982F45810D4B024CF720D910E67974A3094*)il2cpp_codegen_object_new(List_1_t70EE7982F45810D4B024CF720D910E67974A3094_il2cpp_TypeInfo_var);
|
|
NullCheck(L_29);
|
|
List_1__ctor_m020E56BAD0BB49CFE3FCE3DB934D337DF2A9BDE8(L_29, List_1__ctor_m020E56BAD0BB49CFE3FCE3DB934D337DF2A9BDE8_RuntimeMethod_var);
|
|
V_5 = L_29;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_30 = V_4;
|
|
V_7 = (bool)((!(((RuntimeObject*)(List_1_t70EE7982F45810D4B024CF720D910E67974A3094*)L_30) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_31 = V_7;
|
|
if (!L_31)
|
|
{
|
|
goto IL_00b7;
|
|
}
|
|
}
|
|
{
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_32 = V_5;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_33 = V_4;
|
|
NullCheck(L_32);
|
|
List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9(L_32, L_33, List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00b7:
|
|
{
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_34 = V_3;
|
|
V_8 = (bool)((!(((RuntimeObject*)(List_1_t70EE7982F45810D4B024CF720D910E67974A3094*)L_34) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_35 = V_8;
|
|
if (!L_35)
|
|
{
|
|
goto IL_00ca;
|
|
}
|
|
}
|
|
{
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_36 = V_5;
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_37 = V_3;
|
|
NullCheck(L_36);
|
|
List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9(L_36, L_37, List_1_AddRange_m5BE5F84704B271FCE2230DF31D36388ED67274E9_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_38 = V_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = ___0_ve;
|
|
il2cpp_codegen_runtime_class_init_inline(CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257_il2cpp_TypeInfo_var);
|
|
Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* L_40;
|
|
L_40 = CreationContext_get_slotInsertionPoints_mA3E7A2671AAAAA39B4654437B75CFF8961B06DFB_inline((&___2_cc), NULL);
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_41 = V_5;
|
|
NullCheck(L_38);
|
|
VisualTreeAsset_CloneTree_m867BB13966E034E04310DEB52BEB8223E176F473(L_38, L_39, L_40, L_41, NULL);
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_42 = V_1;
|
|
il2cpp_codegen_runtime_class_init_inline(Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C_il2cpp_TypeInfo_var);
|
|
bool L_43;
|
|
L_43 = Object_op_Equality_mB6120F782D83091EF56A198FCEBCF066DB4A9605(L_42, (Object_tC12DECB6760A7F2CBF65D9DCF18D044C2D97152C*)NULL, NULL);
|
|
V_9 = L_43;
|
|
bool L_44 = V_9;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0104;
|
|
}
|
|
}
|
|
{
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_45 = (ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918*)SZArrayNew(ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918_il2cpp_TypeInfo_var, (uint32_t)1);
|
|
ObjectU5BU5D_t8061030B0A12A55D5AD8652A20C922FE99450918* L_46 = L_45;
|
|
TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* L_47 = V_0;
|
|
NullCheck(L_47);
|
|
String_t* L_48;
|
|
L_48 = TemplateContainer_get_templateId_m33148C018084F7A90609850FF61B74347BFC0A4C_inline(L_47, NULL);
|
|
NullCheck(L_46);
|
|
ArrayElementTypeCheck (L_46, L_48);
|
|
(L_46)->SetAt(static_cast<il2cpp_array_size_t>(0), (RuntimeObject*)L_48);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogErrorFormat_m96690322C941D23A125E5769C9803606859A707C(_stringLiteralB04E6A757168B91383DCF5A72C81738955D0E6DA, L_46, NULL);
|
|
}
|
|
|
|
IL_0104:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TemplateContainer/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_mE8FE02FE30DB5BF4D7D0E908933DDC2F49D18E0F (UxmlTraits_t0D8AB59C52341D77460AC5A03B477ED2C6A05AB6* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFE3CDBE9D3C244138D4F64C1BEB914490F7E7BBD);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_0 = (UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF*)il2cpp_codegen_object_new(UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
UxmlStringAttributeDescription__ctor_mA8A849D4B098131C4D456911CAA16E3A964B51D7(L_0, NULL);
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_1, _stringLiteralFE3CDBE9D3C244138D4F64C1BEB914490F7E7BBD, NULL);
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_2 = L_1;
|
|
NullCheck(L_2);
|
|
UxmlAttributeDescription_set_use_mFD75FD3BD463C53DE6BA50A97E8703E29904E42D_inline(L_2, 3, NULL);
|
|
__this->___m_Template_13 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Template_13), (void*)L_2);
|
|
UxmlTraits__ctor_mD1446358752A926B32BC92B0446AA5E87090DD97(__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.Single UnityEngine.UIElements.Spacing::get_horizontal()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Spacing_get_horizontal_m0EE89A90E69F55A3A8116C49B061C1214F7692A4 (Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___left_0;
|
|
float L_1 = __this->___right_2;
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
float L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float Spacing_get_horizontal_m0EE89A90E69F55A3A8116C49B061C1214F7692A4_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = Spacing_get_horizontal_m0EE89A90E69F55A3A8116C49B061C1214F7692A4(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Single UnityEngine.UIElements.Spacing::get_vertical()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Spacing_get_vertical_mB25C30B20E49028FC6F44A49B453F05684DE630D (Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* __this, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = __this->___top_1;
|
|
float L_1 = __this->___bottom_3;
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, L_1));
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
float L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C float Spacing_get_vertical_mB25C30B20E49028FC6F44A49B453F05684DE630D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E*>(__this + _offset);
|
|
float _returnValue;
|
|
_returnValue = Spacing_get_vertical_mB25C30B20E49028FC6F44A49B453F05684DE630D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.Spacing::.ctor(System.Single,System.Single,System.Single,System.Single)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Spacing__ctor_m65E3403C0B5B715FE42FC7E839F78DF2BDECDE7F (Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* __this, float ___0_left, float ___1_top, float ___2_right, float ___3_bottom, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_left;
|
|
__this->___left_0 = L_0;
|
|
float L_1 = ___1_top;
|
|
__this->___top_1 = L_1;
|
|
float L_2 = ___2_right;
|
|
__this->___right_2 = L_2;
|
|
float L_3 = ___3_bottom;
|
|
__this->___bottom_3 = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void Spacing__ctor_m65E3403C0B5B715FE42FC7E839F78DF2BDECDE7F_AdjustorThunk (RuntimeObject* __this, float ___0_left, float ___1_top, float ___2_right, float ___3_bottom, const RuntimeMethod* method)
|
|
{
|
|
Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E*>(__this + _offset);
|
|
Spacing__ctor_m65E3403C0B5B715FE42FC7E839F78DF2BDECDE7F(_thisAdjusted, ___0_left, ___1_top, ___2_right, ___3_bottom, method);
|
|
}
|
|
// UnityEngine.Rect UnityEngine.UIElements.Spacing::op_Subtraction(UnityEngine.Rect,UnityEngine.UIElements.Spacing)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D Spacing_op_Subtraction_mFD739FADA59684E812C418316F0210077CEC6AA5 (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_r, Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E ___1_a, const RuntimeMethod* method)
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_0 = (&___0_r);
|
|
float L_1;
|
|
L_1 = Rect_get_x_mB267B718E0D067F2BAE31BA477647FBF964916EB(L_0, NULL);
|
|
Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E L_2 = ___1_a;
|
|
float L_3 = L_2.___left_0;
|
|
Rect_set_x_mAB91AB71898A20762BC66FD0723C4C739C4C3406(L_0, ((float)il2cpp_codegen_add(L_1, L_3)), NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_4 = (&___0_r);
|
|
float L_5;
|
|
L_5 = Rect_get_y_mC733E8D49F3CE21B2A3D40A1B72D687F22C97F49(L_4, NULL);
|
|
Spacing_t127BED30D9E8BBB32F9FE049A11E65F1A914061E L_6 = ___1_a;
|
|
float L_7 = L_6.___top_1;
|
|
Rect_set_y_mDE91F4B98A6E8623EFB1250FF6526D5DB5855629(L_4, ((float)il2cpp_codegen_add(L_5, L_7)), NULL);
|
|
float L_8;
|
|
L_8 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9((&___0_r), NULL);
|
|
float L_9;
|
|
L_9 = Spacing_get_horizontal_m0EE89A90E69F55A3A8116C49B061C1214F7692A4((&___1_a), NULL);
|
|
float L_10;
|
|
L_10 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), ((float)il2cpp_codegen_subtract(L_8, L_9)), NULL);
|
|
Rect_set_width_m93B6217CF3EFF89F9B0C81F34D7345DE90B93E5A((&___0_r), L_10, NULL);
|
|
float L_11;
|
|
L_11 = Rect_get_height_mE1AA6C6C725CCD2D317BD2157396D3CF7D47C9D8((&___0_r), NULL);
|
|
float L_12;
|
|
L_12 = Spacing_get_vertical_mB25C30B20E49028FC6F44A49B453F05684DE630D((&___1_a), NULL);
|
|
float L_13;
|
|
L_13 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline((0.0f), ((float)il2cpp_codegen_subtract(L_11, L_12)), NULL);
|
|
Rect_set_height_mD00038E6E06637137A5626CA8CD421924005BF03((&___0_r), L_13, NULL);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_14 = ___0_r;
|
|
V_0 = L_14;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#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.FocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::get_left()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusChangeDirection_get_left_mC921347E5D037C1D96D254C565831368C7C00183 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* L_0 = ((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Left_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.VisualElementFocusChangeDirection::get_right()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusChangeDirection_get_right_m7ABCCCB1E11E601279097312838B4CB93AC9BD9F (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* L_0 = ((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Right_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeDirection::.ctor(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeDirection__ctor_m7F5A6E4122EA2FD8BB4B99F0C00D951ECF2F189C (VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection__ctor_m13132F27B5ABFCBEE04738925694860F1AA037B3(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeDirection::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeDirection__cctor_mF084F73B7C7E8D075DBE41FE015387D7E52843B5 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0;
|
|
L_0 = FocusChangeDirection_get_lastValue_m52B79A0EB6A80606939B69A21ABF225C558B5051_inline(NULL);
|
|
int32_t L_1;
|
|
L_1 = FocusChangeDirection_op_Implicit_m4A30610620E614E2C9DA249516577CEBBD083085(L_0, NULL);
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* L_2 = (VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C*)il2cpp_codegen_object_new(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
VisualElementFocusChangeDirection__ctor_m7F5A6E4122EA2FD8BB4B99F0C00D951ECF2F189C(L_2, ((int32_t)il2cpp_codegen_add(L_1, 1)), NULL);
|
|
((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Left_4 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Left_4), (void*)L_2);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_3;
|
|
L_3 = FocusChangeDirection_get_lastValue_m52B79A0EB6A80606939B69A21ABF225C558B5051_inline(NULL);
|
|
int32_t L_4;
|
|
L_4 = FocusChangeDirection_op_Implicit_m4A30610620E614E2C9DA249516577CEBBD083085(L_3, NULL);
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* L_5 = (VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C*)il2cpp_codegen_object_new(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
VisualElementFocusChangeDirection__ctor_m7F5A6E4122EA2FD8BB4B99F0C00D951ECF2F189C(L_5, ((int32_t)il2cpp_codegen_add(L_4, 2)), NULL);
|
|
((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Right_5 = L_5;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Right_5), (void*)L_5);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// UnityEngine.UIElements.VisualElementFocusChangeTarget UnityEngine.UIElements.VisualElementFocusChangeTarget::GetPooled(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* VisualElementFocusChangeTarget_GetPooled_mAC06C1FA07A9CB9C31746CDB4CED004C1C965A95 (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_target, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Get_m667463FE9900F821038BDF505AD5CCE63CE76B8B_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* V_0 = NULL;
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* V_1 = NULL;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E* L_0 = ((VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var))->___Pool_4;
|
|
NullCheck(L_0);
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* L_1;
|
|
L_1 = ObjectPool_1_Get_m667463FE9900F821038BDF505AD5CCE63CE76B8B(L_0, ObjectPool_1_Get_m667463FE9900F821038BDF505AD5CCE63CE76B8B_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* L_2 = V_0;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_3 = ___0_target;
|
|
NullCheck(L_2);
|
|
VisualElementFocusChangeTarget_set_target_m4C370F63B4F101E13717910B4B57953BF3BDDB0C_inline(L_2, L_3, NULL);
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* L_4 = V_0;
|
|
V_1 = L_4;
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeTarget::Dispose()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeTarget_Dispose_mE7E68623A4BB70D4418433386643100D5F01E3BD (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_Release_m971AD50C887D09F9A60E99CD7637A47F61160146_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
VisualElementFocusChangeTarget_set_target_m4C370F63B4F101E13717910B4B57953BF3BDDB0C_inline(__this, (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E* L_0 = ((VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var))->___Pool_4;
|
|
NullCheck(L_0);
|
|
ObjectPool_1_Release_m971AD50C887D09F9A60E99CD7637A47F61160146(L_0, __this, ObjectPool_1_Release_m971AD50C887D09F9A60E99CD7637A47F61160146_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeTarget::ApplyTo(UnityEngine.UIElements.FocusController,UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeTarget_ApplyTo_m03864293DA0AA160061155573A183C7204E1643A (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* ___0_focusController, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___1_f, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___1_f;
|
|
NullCheck(L_0);
|
|
VirtualActionInvoker0::Invoke(17 /* System.Void UnityEngine.UIElements.Focusable::Focus() */, L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeTarget::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeTarget__ctor_m10688CC960212FA445B253304F5AC57586C4DE8F (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0;
|
|
L_0 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
int32_t L_1;
|
|
L_1 = FocusChangeDirection_op_Implicit_m4A30610620E614E2C9DA249516577CEBBD083085(L_0, NULL);
|
|
FocusChangeDirection__ctor_m13132F27B5ABFCBEE04738925694860F1AA037B3(__this, L_1, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusChangeTarget::get_target()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusChangeTarget_get_target_mBA38952FC20D275B53503D14F2A8F9DE36586961 (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = __this->___U3CtargetU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeTarget::set_target(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeTarget_set_target_m4C370F63B4F101E13717910B4B57953BF3BDDB0C (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_value;
|
|
__this->___U3CtargetU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtargetU3Ek__BackingField_5), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusChangeTarget::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusChangeTarget__cctor_m758062132E6FBD67227E44D8395502F4F9BD9579 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1__ctor_mA1E177120AF12CEE3415C46BD3A1D03A1BD10034_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E* L_0 = (ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E*)il2cpp_codegen_object_new(ObjectPool_1_t933A34C114FA4EFD296D25E7C2034879B3DC840E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
ObjectPool_1__ctor_mA1E177120AF12CEE3415C46BD3A1D03A1BD10034(L_0, ((int32_t)100), ObjectPool_1__ctor_mA1E177120AF12CEE3415C46BD3A1D03A1BD10034_RuntimeMethod_var);
|
|
((VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var))->___Pool_4 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var))->___Pool_4), (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.VisualElementFocusRing::.ctor(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing__ctor_mCC2EF1F3E3C34F6C9057D58193234D01A324876A (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_root, int32_t ___1_dfo, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
int32_t L_0 = ___1_dfo;
|
|
VisualElementFocusRing_set_defaultFocusOrder_mAC9B8A1BF3794CD876D494D2C39A935B60E290E2_inline(__this, L_0, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = ___0_root;
|
|
__this->___root_0 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___root_0), (void*)L_1);
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_2 = (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)il2cpp_codegen_object_new(List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7(L_2, List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var);
|
|
__this->___m_FocusRing_2 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_FocusRing_2), (void*)L_2);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.FocusController UnityEngine.UIElements.VisualElementFocusRing::get_focusController()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* VisualElementFocusRing_get_focusController_m2EC6EEBDB4087AD80EB65DF25A150202E702A936 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = __this->___root_0;
|
|
NullCheck(L_0);
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_1;
|
|
L_1 = VirtualFuncInvoker0< FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* >::Invoke(15 /* UnityEngine.UIElements.FocusController UnityEngine.UIElements.Focusable::get_focusController() */, L_0);
|
|
return L_1;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder UnityEngine.UIElements.VisualElementFocusRing::get_defaultFocusOrder()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_get_defaultFocusOrder_m203045C5C38AE34531DB2B05436514C4EB34CD2A (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CdefaultFocusOrderU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusRing::set_defaultFocusOrder(UnityEngine.UIElements.VisualElementFocusRing/DefaultFocusOrder)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing_set_defaultFocusOrder_mAC9B8A1BF3794CD876D494D2C39A935B60E290E2 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdefaultFocusOrderU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFocusRing::FocusRingAutoIndexSort(UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord,UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_FocusRingAutoIndexSort_m3A5B1368543121656105D37462B199A9EF0B6712 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ___0_a, FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_4 = NULL;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_11 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_12 = NULL;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
int32_t G_B6_0 = 0;
|
|
int32_t G_B20_0 = 0;
|
|
{
|
|
int32_t L_0;
|
|
L_0 = VisualElementFocusRing_get_defaultFocusOrder_m203045C5C38AE34531DB2B05436514C4EB34CD2A_inline(__this, NULL);
|
|
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_001e;
|
|
}
|
|
case 1:
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
case 2:
|
|
{
|
|
goto IL_016c;
|
|
}
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_3;
|
|
L_3 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_4 = ___0_a;
|
|
NullCheck(L_4);
|
|
int32_t L_5 = L_4->___m_AutoIndex_0;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_6 = ___1_b;
|
|
NullCheck(L_6);
|
|
int32_t L_7 = L_6->___m_AutoIndex_0;
|
|
NullCheck(L_3);
|
|
int32_t L_8;
|
|
L_8 = VirtualFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, L_3, L_5, L_7);
|
|
V_2 = L_8;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_9 = ___0_a;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10 = L_9->___m_Focusable_1;
|
|
V_3 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_10, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_11 = ___1_b;
|
|
NullCheck(L_11);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_12 = L_11->___m_Focusable_1;
|
|
V_4 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_12, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_4;
|
|
G_B6_0 = ((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_14) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
V_5 = (bool)G_B6_0;
|
|
bool L_15 = V_5;
|
|
if (!L_15)
|
|
{
|
|
goto IL_0150;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = V_3;
|
|
NullCheck(L_16);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_17;
|
|
L_17 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_16, NULL);
|
|
V_7 = L_17;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_18;
|
|
L_18 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_19 = L_18.___x_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_20 = V_4;
|
|
NullCheck(L_20);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_21;
|
|
L_21 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_20, NULL);
|
|
V_7 = L_21;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_22;
|
|
L_22 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_23 = L_22.___x_0;
|
|
V_6 = (bool)((((float)L_19) < ((float)L_23))? 1 : 0);
|
|
bool L_24 = V_6;
|
|
if (!L_24)
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (-1);
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25 = V_3;
|
|
NullCheck(L_25);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_26;
|
|
L_26 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_25, NULL);
|
|
V_7 = L_26;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_27;
|
|
L_27 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_28 = L_27.___x_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_29 = V_4;
|
|
NullCheck(L_29);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_30;
|
|
L_30 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_29, NULL);
|
|
V_7 = L_30;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_31;
|
|
L_31 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_32 = L_31.___x_0;
|
|
V_8 = (bool)((((float)L_28) > ((float)L_32))? 1 : 0);
|
|
bool L_33 = V_8;
|
|
if (!L_33)
|
|
{
|
|
goto IL_00db;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_00db:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_34 = V_3;
|
|
NullCheck(L_34);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_35;
|
|
L_35 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_34, NULL);
|
|
V_7 = L_35;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_36;
|
|
L_36 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_37 = L_36.___y_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_38 = V_4;
|
|
NullCheck(L_38);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_39;
|
|
L_39 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_38, NULL);
|
|
V_7 = L_39;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_40;
|
|
L_40 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_41 = L_40.___y_1;
|
|
V_9 = (bool)((((float)L_37) < ((float)L_41))? 1 : 0);
|
|
bool L_42 = V_9;
|
|
if (!L_42)
|
|
{
|
|
goto IL_0115;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (-1);
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_0115:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_43 = V_3;
|
|
NullCheck(L_43);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_44;
|
|
L_44 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_43, NULL);
|
|
V_7 = L_44;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_45;
|
|
L_45 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_46 = L_45.___y_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_47 = V_4;
|
|
NullCheck(L_47);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_48;
|
|
L_48 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_47, NULL);
|
|
V_7 = L_48;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_49;
|
|
L_49 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_50 = L_49.___y_1;
|
|
V_10 = (bool)((((float)L_46) > ((float)L_50))? 1 : 0);
|
|
bool L_51 = V_10;
|
|
if (!L_51)
|
|
{
|
|
goto IL_014e;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_014e:
|
|
{
|
|
}
|
|
|
|
IL_0150:
|
|
{
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_52;
|
|
L_52 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_53 = ___0_a;
|
|
NullCheck(L_53);
|
|
int32_t L_54 = L_53->___m_AutoIndex_0;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_55 = ___1_b;
|
|
NullCheck(L_55);
|
|
int32_t L_56 = L_55->___m_AutoIndex_0;
|
|
NullCheck(L_52);
|
|
int32_t L_57;
|
|
L_57 = VirtualFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, L_52, L_54, L_56);
|
|
V_2 = L_57;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_016c:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_58 = ___0_a;
|
|
NullCheck(L_58);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_59 = L_58->___m_Focusable_1;
|
|
V_11 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_59, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_60 = ___1_b;
|
|
NullCheck(L_60);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_61 = L_60->___m_Focusable_1;
|
|
V_12 = ((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_61, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var));
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_62 = V_11;
|
|
if (!L_62)
|
|
{
|
|
goto IL_0192;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_63 = V_12;
|
|
G_B20_0 = ((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_63) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0193;
|
|
}
|
|
|
|
IL_0192:
|
|
{
|
|
G_B20_0 = 0;
|
|
}
|
|
|
|
IL_0193:
|
|
{
|
|
V_13 = (bool)G_B20_0;
|
|
bool L_64 = V_13;
|
|
if (!L_64)
|
|
{
|
|
goto IL_0282;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_65 = V_11;
|
|
NullCheck(L_65);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_66;
|
|
L_66 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_65, NULL);
|
|
V_7 = L_66;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_67;
|
|
L_67 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_68 = L_67.___y_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_69 = V_12;
|
|
NullCheck(L_69);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_70;
|
|
L_70 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_69, NULL);
|
|
V_7 = L_70;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_71;
|
|
L_71 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_72 = L_71.___y_1;
|
|
V_14 = (bool)((((float)L_68) < ((float)L_72))? 1 : 0);
|
|
bool L_73 = V_14;
|
|
if (!L_73)
|
|
{
|
|
goto IL_01d7;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (-1);
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_01d7:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_74 = V_11;
|
|
NullCheck(L_74);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_75;
|
|
L_75 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_74, NULL);
|
|
V_7 = L_75;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_76;
|
|
L_76 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_77 = L_76.___y_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_78 = V_12;
|
|
NullCheck(L_78);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_79;
|
|
L_79 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_78, NULL);
|
|
V_7 = L_79;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_80;
|
|
L_80 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_81 = L_80.___y_1;
|
|
V_15 = (bool)((((float)L_77) > ((float)L_81))? 1 : 0);
|
|
bool L_82 = V_15;
|
|
if (!L_82)
|
|
{
|
|
goto IL_0211;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_0211:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_83 = V_11;
|
|
NullCheck(L_83);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_84;
|
|
L_84 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_83, NULL);
|
|
V_7 = L_84;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_85;
|
|
L_85 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_86 = L_85.___x_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_87 = V_12;
|
|
NullCheck(L_87);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_88;
|
|
L_88 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_87, NULL);
|
|
V_7 = L_88;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_89;
|
|
L_89 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_90 = L_89.___x_0;
|
|
V_16 = (bool)((((float)L_86) < ((float)L_90))? 1 : 0);
|
|
bool L_91 = V_16;
|
|
if (!L_91)
|
|
{
|
|
goto IL_0249;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (-1);
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_0249:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_92 = V_11;
|
|
NullCheck(L_92);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_93;
|
|
L_93 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_92, NULL);
|
|
V_7 = L_93;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_94;
|
|
L_94 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_95 = L_94.___x_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_96 = V_12;
|
|
NullCheck(L_96);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_97;
|
|
L_97 = VisualElement_get_layout_m71851CB694EE1348CDCA83353FFF3C1FB2F69C1A(L_96, NULL);
|
|
V_7 = L_97;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_98;
|
|
L_98 = Rect_get_position_m9B7E583E67443B6F4280A676E644BB0B9E7C4E38((&V_7), NULL);
|
|
float L_99 = L_98.___x_0;
|
|
V_17 = (bool)((((float)L_95) > ((float)L_99))? 1 : 0);
|
|
bool L_100 = V_17;
|
|
if (!L_100)
|
|
{
|
|
goto IL_0280;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 1;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_0280:
|
|
{
|
|
}
|
|
|
|
IL_0282:
|
|
{
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_101;
|
|
L_101 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_102 = ___0_a;
|
|
NullCheck(L_102);
|
|
int32_t L_103 = L_102->___m_AutoIndex_0;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_104 = ___1_b;
|
|
NullCheck(L_104);
|
|
int32_t L_105 = L_104->___m_AutoIndex_0;
|
|
NullCheck(L_101);
|
|
int32_t L_106;
|
|
L_106 = VirtualFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, L_101, L_103, L_105);
|
|
V_2 = L_106;
|
|
goto IL_029b;
|
|
}
|
|
|
|
IL_029b:
|
|
{
|
|
int32_t L_107 = V_2;
|
|
return L_107;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFocusRing::FocusRingSort(UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord,UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_FocusRingSort_m3B38EE0A757FFC2CADAEE6FAC7CBD90B02E91B40 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ___0_a, FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_0 = ___0_a;
|
|
NullCheck(L_0);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_1 = L_0->___m_Focusable_1;
|
|
NullCheck(L_1);
|
|
int32_t L_2;
|
|
L_2 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_1, NULL);
|
|
if (L_2)
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
}
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_3 = ___1_b;
|
|
NullCheck(L_3);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_4 = L_3->___m_Focusable_1;
|
|
NullCheck(L_4);
|
|
int32_t L_5;
|
|
L_5 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_4, NULL);
|
|
G_B3_0 = ((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
|
|
goto IL_001f;
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_002f;
|
|
}
|
|
}
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_7 = ___0_a;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_8 = ___1_b;
|
|
int32_t L_9;
|
|
L_9 = VisualElementFocusRing_FocusRingAutoIndexSort_m3A5B1368543121656105D37462B199A9EF0B6712(__this, L_7, L_8, NULL);
|
|
V_1 = L_9;
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_002f:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_10 = ___0_a;
|
|
NullCheck(L_10);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = L_10->___m_Focusable_1;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_11, NULL);
|
|
V_2 = (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_2;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 1;
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_14 = ___1_b;
|
|
NullCheck(L_14);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_15 = L_14->___m_Focusable_1;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_15, NULL);
|
|
V_3 = (bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
|
|
bool L_17 = V_3;
|
|
if (!L_17)
|
|
{
|
|
goto IL_005d;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (-1);
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_005d:
|
|
{
|
|
Comparer_1_t2FF14F26F4D678A8FA199B888FF61A2A9D1D2D80* L_18;
|
|
L_18 = Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051(Comparer_1_get_Default_m55220E2A5C7845F68201F047E7DA0D708E8AE051_RuntimeMethod_var);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_19 = ___0_a;
|
|
NullCheck(L_19);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_20 = L_19->___m_Focusable_1;
|
|
NullCheck(L_20);
|
|
int32_t L_21;
|
|
L_21 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_20, NULL);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_22 = ___1_b;
|
|
NullCheck(L_22);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_23 = L_22->___m_Focusable_1;
|
|
NullCheck(L_23);
|
|
int32_t L_24;
|
|
L_24 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_23, NULL);
|
|
NullCheck(L_18);
|
|
int32_t L_25;
|
|
L_25 = VirtualFuncInvoker2< int32_t, int32_t, int32_t >::Invoke(6 /* System.Int32 System.Collections.Generic.Comparer`1<System.Int32>::Compare(T,T) */, L_18, L_21, L_24);
|
|
V_4 = L_25;
|
|
int32_t L_26 = V_4;
|
|
V_5 = (bool)((((int32_t)L_26) == ((int32_t)0))? 1 : 0);
|
|
bool L_27 = V_5;
|
|
if (!L_27)
|
|
{
|
|
goto IL_0097;
|
|
}
|
|
}
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_28 = ___0_a;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_29 = ___1_b;
|
|
int32_t L_30;
|
|
L_30 = VisualElementFocusRing_FocusRingAutoIndexSort_m3A5B1368543121656105D37462B199A9EF0B6712(__this, L_28, L_29, NULL);
|
|
V_4 = L_30;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
int32_t L_31 = V_4;
|
|
V_1 = L_31;
|
|
goto IL_009c;
|
|
}
|
|
|
|
IL_009c:
|
|
{
|
|
int32_t L_32 = V_1;
|
|
return L_32;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusRing::DoUpdate()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing_DoUpdate_m1312CAF5B2C58E1AF126619B3F6F84740C77E738 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m2AAF9E701399D94DF3735A99591C29E5099EF150_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* V_1 = NULL;
|
|
int32_t V_2 = 0;
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_0 = __this->___m_FocusRing_2;
|
|
NullCheck(L_0);
|
|
List_1_Clear_m2AAF9E701399D94DF3735A99591C29E5099EF150_inline(L_0, List_1_Clear_m2AAF9E701399D94DF3735A99591C29E5099EF150_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_1 = __this->___root_0;
|
|
V_0 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_3 = (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)il2cpp_codegen_object_new(List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7(L_3, List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var);
|
|
V_1 = L_3;
|
|
V_2 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = __this->___root_0;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_5 = V_1;
|
|
VisualElementFocusRing_BuildRingForScopeRecursive_m91C9EB8FBBB3ACFA82348EDDF91EC34C1B87248A(__this, L_4, (&V_2), L_5, NULL);
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_6 = V_1;
|
|
VisualElementFocusRing_SortAndFlattenScopeLists_mD53887D2094CF7D9F812F7DC2BE102B9467C2209(__this, L_6, NULL);
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusRing::BuildRingForScopeRecursive(UnityEngine.UIElements.VisualElement,System.Int32&,System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing_BuildRingForScopeRecursive_m91C9EB8FBBB3ACFA82348EDDF91EC34C1B87248A (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t* ___1_scopeIndex, List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___2_scopeList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
int32_t V_2 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_3 = NULL;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* V_6 = NULL;
|
|
int32_t V_7 = 0;
|
|
int32_t V_8 = 0;
|
|
bool V_9 = false;
|
|
bool V_10 = false;
|
|
int32_t G_B4_0 = 0;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_1;
|
|
L_1 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
int32_t L_2;
|
|
L_2 = Hierarchy_get_childCount_mAD31B42C0FF9B64AAF6A8CF23F22024B3F9542D5((&V_1), NULL);
|
|
V_0 = L_2;
|
|
V_2 = 0;
|
|
goto IL_0111;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3 = ___0_ve;
|
|
NullCheck(L_3);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_4;
|
|
L_4 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_3, NULL);
|
|
V_1 = L_4;
|
|
int32_t L_5 = V_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6;
|
|
L_6 = Hierarchy_get_Item_mBA5811C28D9E7FA48D0F10603A95F8CF248C3467((&V_1), L_5, NULL);
|
|
V_3 = L_6;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = V_3;
|
|
NullCheck(L_7);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8;
|
|
L_8 = VisualElement_get_parent_m80978E6D0A928AB4885EE4CD0E2295C72AA73000(L_7, NULL);
|
|
if (!L_8)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = V_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = V_3;
|
|
NullCheck(L_10);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11;
|
|
L_11 = VisualElement_get_parent_m80978E6D0A928AB4885EE4CD0E2295C72AA73000(L_10, NULL);
|
|
NullCheck(L_11);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12;
|
|
L_12 = VirtualFuncInvoker0< VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* >::Invoke(96 /* UnityEngine.UIElements.VisualElement UnityEngine.UIElements.VisualElement::get_contentContainer() */, L_11);
|
|
G_B4_0 = ((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_9) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_12))? 1 : 0);
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
V_4 = (bool)G_B4_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = V_3;
|
|
NullCheck(L_13);
|
|
bool L_14;
|
|
L_14 = VisualElement_get_isCompositeRoot_mFA26CBD30A0EB10D5A63758BAC866E05645DDBBA(L_13, NULL);
|
|
bool L_15 = V_4;
|
|
V_5 = (bool)((int32_t)((int32_t)L_14|(int32_t)L_15));
|
|
bool L_16 = V_5;
|
|
if (!L_16)
|
|
{
|
|
goto IL_00a6;
|
|
}
|
|
}
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_17 = (FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D*)il2cpp_codegen_object_new(FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_17);
|
|
FocusRingRecord__ctor_m575F831D8CA4CAC3034863D9E35BA9904F6C01EB(L_17, NULL);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_18 = L_17;
|
|
int32_t* L_19 = ___1_scopeIndex;
|
|
int32_t* L_20 = ___1_scopeIndex;
|
|
int32_t L_21 = *((int32_t*)L_20);
|
|
V_8 = L_21;
|
|
int32_t L_22 = V_8;
|
|
*((int32_t*)L_19) = (int32_t)((int32_t)il2cpp_codegen_add(L_22, 1));
|
|
int32_t L_23 = V_8;
|
|
NullCheck(L_18);
|
|
L_18->___m_AutoIndex_0 = L_23;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_24 = L_18;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25 = V_3;
|
|
NullCheck(L_24);
|
|
L_24->___m_Focusable_1 = L_25;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_24->___m_Focusable_1), (void*)L_25);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_26 = L_24;
|
|
bool L_27 = V_4;
|
|
NullCheck(L_26);
|
|
L_26->___m_IsSlot_2 = L_27;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_28 = L_26;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_29 = (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)il2cpp_codegen_object_new(List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_29);
|
|
List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7(L_29, List_1__ctor_mA48744F2905DE0BC44CABEB0CE0C6DEF97D2B4E7_RuntimeMethod_var);
|
|
NullCheck(L_28);
|
|
L_28->___m_ScopeNavigationOrder_3 = L_29;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_28->___m_ScopeNavigationOrder_3), (void*)L_29);
|
|
V_6 = L_28;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_30 = ___2_scopeList;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_31 = V_6;
|
|
NullCheck(L_30);
|
|
List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_inline(L_30, L_31, List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_RuntimeMethod_var);
|
|
V_7 = 0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_32 = V_3;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_33 = V_6;
|
|
NullCheck(L_33);
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_34 = L_33->___m_ScopeNavigationOrder_3;
|
|
VisualElementFocusRing_BuildRingForScopeRecursive_m91C9EB8FBBB3ACFA82348EDDF91EC34C1B87248A(__this, L_32, (&V_7), L_34, NULL);
|
|
goto IL_010c;
|
|
}
|
|
|
|
IL_00a6:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_35 = V_3;
|
|
NullCheck(L_35);
|
|
bool L_36;
|
|
L_36 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus() */, L_35);
|
|
if (!L_36)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_37 = V_3;
|
|
NullCheck(L_37);
|
|
bool L_38;
|
|
L_38 = VisualElement_get_isHierarchyDisplayed_m57D4B4C55044168D6AF4D7CE32FC9C809F8E2348(L_37, NULL);
|
|
if (!L_38)
|
|
{
|
|
goto IL_00c5;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_39 = V_3;
|
|
NullCheck(L_39);
|
|
int32_t L_40;
|
|
L_40 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_39, NULL);
|
|
G_B10_0 = ((((int32_t)((((int32_t)L_40) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_00c6;
|
|
}
|
|
|
|
IL_00c5:
|
|
{
|
|
G_B10_0 = 0;
|
|
}
|
|
|
|
IL_00c6:
|
|
{
|
|
V_9 = (bool)G_B10_0;
|
|
bool L_41 = V_9;
|
|
if (!L_41)
|
|
{
|
|
goto IL_0101;
|
|
}
|
|
}
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_42 = ___2_scopeList;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_43 = (FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D*)il2cpp_codegen_object_new(FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D_il2cpp_TypeInfo_var);
|
|
NullCheck(L_43);
|
|
FocusRingRecord__ctor_m575F831D8CA4CAC3034863D9E35BA9904F6C01EB(L_43, NULL);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_44 = L_43;
|
|
int32_t* L_45 = ___1_scopeIndex;
|
|
int32_t* L_46 = ___1_scopeIndex;
|
|
int32_t L_47 = *((int32_t*)L_46);
|
|
V_8 = L_47;
|
|
int32_t L_48 = V_8;
|
|
*((int32_t*)L_45) = (int32_t)((int32_t)il2cpp_codegen_add(L_48, 1));
|
|
int32_t L_49 = V_8;
|
|
NullCheck(L_44);
|
|
L_44->___m_AutoIndex_0 = L_49;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_50 = L_44;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_51 = V_3;
|
|
NullCheck(L_50);
|
|
L_50->___m_Focusable_1 = L_51;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_50->___m_Focusable_1), (void*)L_51);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_52 = L_50;
|
|
NullCheck(L_52);
|
|
L_52->___m_IsSlot_2 = (bool)0;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_53 = L_52;
|
|
NullCheck(L_53);
|
|
L_53->___m_ScopeNavigationOrder_3 = (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_53->___m_ScopeNavigationOrder_3), (void*)(List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)NULL);
|
|
NullCheck(L_42);
|
|
List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_inline(L_42, L_53, List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0101:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_54 = V_3;
|
|
int32_t* L_55 = ___1_scopeIndex;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_56 = ___2_scopeList;
|
|
VisualElementFocusRing_BuildRingForScopeRecursive_m91C9EB8FBBB3ACFA82348EDDF91EC34C1B87248A(__this, L_54, L_55, L_56, NULL);
|
|
}
|
|
|
|
IL_010c:
|
|
{
|
|
int32_t L_57 = V_2;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_57, 1));
|
|
}
|
|
|
|
IL_0111:
|
|
{
|
|
int32_t L_58 = V_2;
|
|
int32_t L_59 = V_0;
|
|
V_10 = (bool)((((int32_t)L_58) < ((int32_t)L_59))? 1 : 0);
|
|
bool L_60 = V_10;
|
|
if (L_60)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementFocusRing::SortAndFlattenScopeLists(System.Collections.Generic.List`1<UnityEngine.UIElements.VisualElementFocusRing/FocusRingRecord>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementFocusRing_SortAndFlattenScopeLists_mD53887D2094CF7D9F812F7DC2BE102B9467C2209 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* ___0_rootScopeList, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4A64BFA5057E379EF80557690A9F84DB8C0DC380_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m8DCF64B4B5AF3403887135F92831A8AA2860B581_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m52EEE738BA2DBEE07AF31967D59E0AE58696DCB8_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m5E55416AB4F1C7A5BA700264BBB8692D4DE3C674_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Sort_mD3B66520B2F25989200A0CED9AA786045DED2201_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusRing_FocusRingSort_m3B38EE0A757FFC2CADAEE6FAC7CBD90B02E91B40_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t G_B6_0 = 0;
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_0 = ___0_rootScopeList;
|
|
V_0 = (bool)((!(((RuntimeObject*)(List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_00d0;
|
|
}
|
|
}
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_2 = ___0_rootScopeList;
|
|
Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA* L_3 = (Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA*)il2cpp_codegen_object_new(Comparison_1_t585524D4B8699EB3503F85919EA5969BAB3D47EA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
Comparison_1__ctor_m6FAA50754B35670B6CEEC9099C161B72F43AEFC5(L_3, __this, (intptr_t)((void*)VisualElementFocusRing_FocusRingSort_m3B38EE0A757FFC2CADAEE6FAC7CBD90B02E91B40_RuntimeMethod_var), NULL);
|
|
NullCheck(L_2);
|
|
List_1_Sort_mD3B66520B2F25989200A0CED9AA786045DED2201(L_2, L_3, List_1_Sort_mD3B66520B2F25989200A0CED9AA786045DED2201_RuntimeMethod_var);
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_4 = ___0_rootScopeList;
|
|
NullCheck(L_4);
|
|
Enumerator_t525CCF47F5DE823F18E9256867C3ED50B81066A6 L_5;
|
|
L_5 = List_1_GetEnumerator_m5E55416AB4F1C7A5BA700264BBB8692D4DE3C674(L_4, List_1_GetEnumerator_m5E55416AB4F1C7A5BA700264BBB8692D4DE3C674_RuntimeMethod_var);
|
|
V_1 = L_5;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00c0:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m4A64BFA5057E379EF80557690A9F84DB8C0DC380((&V_1), Enumerator_Dispose_m4A64BFA5057E379EF80557690A9F84DB8C0DC380_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_00b2_1;
|
|
}
|
|
|
|
IL_002d_1:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_6;
|
|
L_6 = Enumerator_get_Current_m52EEE738BA2DBEE07AF31967D59E0AE58696DCB8_inline((&V_1), Enumerator_get_Current_m52EEE738BA2DBEE07AF31967D59E0AE58696DCB8_RuntimeMethod_var);
|
|
V_2 = L_6;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_7 = V_2;
|
|
NullCheck(L_7);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_8 = L_7->___m_Focusable_1;
|
|
NullCheck(L_8);
|
|
bool L_9;
|
|
L_9 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus() */, L_8);
|
|
if (!L_9)
|
|
{
|
|
goto IL_0056_1;
|
|
}
|
|
}
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_11 = L_10->___m_Focusable_1;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_11, NULL);
|
|
G_B6_0 = ((((int32_t)((((int32_t)L_12) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0057_1;
|
|
}
|
|
|
|
IL_0056_1:
|
|
{
|
|
G_B6_0 = 0;
|
|
}
|
|
|
|
IL_0057_1:
|
|
{
|
|
V_3 = (bool)G_B6_0;
|
|
bool L_13 = V_3;
|
|
if (!L_13)
|
|
{
|
|
goto IL_008f_1;
|
|
}
|
|
}
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_14 = V_2;
|
|
NullCheck(L_14);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_15 = L_14->___m_Focusable_1;
|
|
NullCheck(L_15);
|
|
bool L_16;
|
|
L_16 = Focusable_get_excludeFromFocusRing_m02C43592E42B20FF4E0CABF90F6413F81CEF51DF(L_15, NULL);
|
|
V_4 = (bool)((((int32_t)L_16) == ((int32_t)0))? 1 : 0);
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_007f_1;
|
|
}
|
|
}
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_18 = __this->___m_FocusRing_2;
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_19 = V_2;
|
|
NullCheck(L_18);
|
|
List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_inline(L_18, L_19, List_1_Add_m279C0978CC526BF9B72DB9D6800851EB3EC3C964_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_007f_1:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_20 = V_2;
|
|
NullCheck(L_20);
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_21 = L_20->___m_ScopeNavigationOrder_3;
|
|
VisualElementFocusRing_SortAndFlattenScopeLists_mD53887D2094CF7D9F812F7DC2BE102B9467C2209(__this, L_21, NULL);
|
|
goto IL_00aa_1;
|
|
}
|
|
|
|
IL_008f_1:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_22 = V_2;
|
|
NullCheck(L_22);
|
|
bool L_23 = L_22->___m_IsSlot_2;
|
|
V_5 = L_23;
|
|
bool L_24 = V_5;
|
|
if (!L_24)
|
|
{
|
|
goto IL_00aa_1;
|
|
}
|
|
}
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_25 = V_2;
|
|
NullCheck(L_25);
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_26 = L_25->___m_ScopeNavigationOrder_3;
|
|
VisualElementFocusRing_SortAndFlattenScopeLists_mD53887D2094CF7D9F812F7DC2BE102B9467C2209(__this, L_26, NULL);
|
|
}
|
|
|
|
IL_00aa_1:
|
|
{
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_27 = V_2;
|
|
NullCheck(L_27);
|
|
L_27->___m_ScopeNavigationOrder_3 = (List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)NULL;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_27->___m_ScopeNavigationOrder_3), (void*)(List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B*)NULL);
|
|
}
|
|
|
|
IL_00b2_1:
|
|
{
|
|
bool L_28;
|
|
L_28 = Enumerator_MoveNext_m8DCF64B4B5AF3403887135F92831A8AA2860B581((&V_1), Enumerator_MoveNext_m8DCF64B4B5AF3403887135F92831A8AA2860B581_RuntimeMethod_var);
|
|
if (L_28)
|
|
{
|
|
goto IL_002d_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00cf;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00cf:
|
|
{
|
|
}
|
|
|
|
IL_00d0:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.VisualElementFocusRing::GetFocusableInternalIndex(UnityEngine.UIElements.Focusable)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_GetFocusableInternalIndex_mA8306194D667BF7F69A77902CC4F98D2F3982006 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_f, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
int32_t V_3 = 0;
|
|
bool V_4 = false;
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_f;
|
|
V_0 = (bool)((!(((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0046;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_2 = ___0_f;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_3 = __this->___m_FocusRing_2;
|
|
int32_t L_4 = V_1;
|
|
NullCheck(L_3);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_5;
|
|
L_5 = List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D(L_3, L_4, List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var);
|
|
NullCheck(L_5);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_6 = L_5->___m_Focusable_1;
|
|
V_2 = (bool)((((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_2) == ((RuntimeObject*)(Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)L_6))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_002c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_8 = V_1;
|
|
V_3 = L_8;
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_002c:
|
|
{
|
|
int32_t L_9 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_9, 1));
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
int32_t L_10 = V_1;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_11 = __this->___m_FocusRing_2;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_inline(L_11, List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var);
|
|
V_4 = (bool)((((int32_t)L_10) < ((int32_t)L_12))? 1 : 0);
|
|
bool L_13 = V_4;
|
|
if (L_13)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_0046:
|
|
{
|
|
V_3 = (-1);
|
|
goto IL_004a;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
int32_t L_14 = V_3;
|
|
return L_14;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.VisualElementFocusRing::GetFocusChangeDirection(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusRing_GetFocusChangeDirection_m040BA490720263A6F4D9C8666F77F0AF4F30D587 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_currentFocusable, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___1_e, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_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);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_2 = NULL;
|
|
bool V_3 = false;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* V_4 = NULL;
|
|
bool V_5 = false;
|
|
int32_t G_B9_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___1_e;
|
|
V_0 = (bool)((((RuntimeObject*)(EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129* L_2 = (ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentNullException_t327031E412FAB2351B0022DD5DAD47E67E597129_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_2);
|
|
ArgumentNullException__ctor_m444AE141157E333844FC1A9500224C2F9FD24F4B(L_2, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral36282FAC116D9FD6B37CC425310E1A8510F08A53)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_2, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&VisualElementFocusRing_GetFocusChangeDirection_m040BA490720263A6F4D9C8666F77F0AF4F30D587_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___1_e;
|
|
NullCheck(L_3);
|
|
int64_t L_4;
|
|
L_4 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_3);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t7D3D212E8AD9C53105AAC51DBD4FA5F700586F68_il2cpp_TypeInfo_var);
|
|
int64_t L_5;
|
|
L_5 = EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12(EventBase_1_TypeId_m08396DED606ACD1093BEEA8D939E5DA37B797C12_RuntimeMethod_var);
|
|
V_1 = (bool)((((int64_t)L_4) == ((int64_t)L_5))? 1 : 0);
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_004e;
|
|
}
|
|
}
|
|
{
|
|
FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* L_7;
|
|
L_7 = VisualElementFocusRing_get_focusController_m2EC6EEBDB4087AD80EB65DF25A150202E702A936(__this, NULL);
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_8 = ___1_e;
|
|
NullCheck(L_8);
|
|
RuntimeObject* L_9;
|
|
L_9 = EventBase_get_target_m9E5CB6AC9A51E9F61D9540D279BFA53C04AD010E(L_8, NULL);
|
|
NullCheck(L_7);
|
|
bool L_10;
|
|
L_10 = FocusController_GetFocusableParentForPointerEvent_mB5B3CDF010E6AC4C0E75C3C1172F2053749BB8A9(L_7, ((Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)IsInstClass((RuntimeObject*)L_9, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0_il2cpp_TypeInfo_var)), (&V_2), NULL);
|
|
V_3 = L_10;
|
|
bool L_11 = V_3;
|
|
if (!L_11)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_12 = V_2;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* L_13;
|
|
L_13 = VisualElementFocusChangeTarget_GetPooled_mAC06C1FA07A9CB9C31746CDB4CED004C1C965A95(L_12, NULL);
|
|
V_4 = L_13;
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_14 = ___0_currentFocusable;
|
|
if (!((IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26*)IsInstClass((RuntimeObject*)L_14, IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_15 = ___1_e;
|
|
NullCheck(L_15);
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_16;
|
|
L_16 = EventBase_get_imguiEvent_m45ABCDC6423D27EF44F7E29661B249D238765DB0(L_15, NULL);
|
|
G_B9_0 = ((!(((RuntimeObject*)(Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB*)L_16) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
G_B9_0 = 0;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
V_5 = (bool)G_B9_0;
|
|
bool L_17 = V_5;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0072;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_18;
|
|
L_18 = FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline(NULL);
|
|
V_4 = L_18;
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_0072:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_19 = ___1_e;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_20;
|
|
L_20 = VisualElementFocusRing_GetKeyDownFocusChangeDirection_m23D6B56F3D9A1E682FEA4348D3863CD2AB0328C4(L_19, NULL);
|
|
V_4 = L_20;
|
|
goto IL_007c;
|
|
}
|
|
|
|
IL_007c:
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_21 = V_4;
|
|
return L_21;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.FocusChangeDirection UnityEngine.UIElements.VisualElementFocusRing::GetKeyDownFocusChangeDirection(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusRing_GetKeyDownFocusChangeDirection_m23D6B56F3D9A1E682FEA4348D3863CD2AB0328C4 (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mA77A33D9F77CA0784C4A5CD3C6E8400AC11AEB2C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* V_4 = NULL;
|
|
bool V_5 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_e;
|
|
NullCheck(L_0);
|
|
int64_t L_1;
|
|
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_0);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t730BB171C1C7F183359949BD5F4BA81AFE9A35CE_il2cpp_TypeInfo_var);
|
|
int64_t L_2;
|
|
L_2 = EventBase_1_TypeId_mA77A33D9F77CA0784C4A5CD3C6E8400AC11AEB2C(EventBase_1_TypeId_mA77A33D9F77CA0784C4A5CD3C6E8400AC11AEB2C_RuntimeMethod_var);
|
|
V_0 = (bool)((((int64_t)L_1) == ((int64_t)L_2))? 1 : 0);
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0068;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_4 = ___0_e;
|
|
V_1 = ((KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C*)IsInstClass((RuntimeObject*)L_4, KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C_il2cpp_TypeInfo_var));
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_5 = V_1;
|
|
NullCheck(L_5);
|
|
Il2CppChar L_6;
|
|
L_6 = KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_inline(L_5, KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var);
|
|
if ((((int32_t)L_6) == ((int32_t)((int32_t)25))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_7 = V_1;
|
|
NullCheck(L_7);
|
|
Il2CppChar L_8;
|
|
L_8 = KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_inline(L_7, KeyboardEventBase_1_get_character_m1E37E5E3AA11D7538A88E00209C4EAD83E128825_RuntimeMethod_var);
|
|
G_B4_0 = ((((int32_t)L_8) == ((int32_t)((int32_t)9)))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B4_0 = 1;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_2 = (bool)G_B4_0;
|
|
bool L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0067;
|
|
}
|
|
}
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_10 = V_1;
|
|
NullCheck(L_10);
|
|
int32_t L_11;
|
|
L_11 = KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_inline(L_10, KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var);
|
|
V_3 = (bool)((((int32_t)L_11) == ((int32_t)1))? 1 : 0);
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_004d;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_13;
|
|
L_13 = VisualElementFocusChangeDirection_get_left_mC921347E5D037C1D96D254C565831368C7C00183_inline(NULL);
|
|
V_4 = L_13;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_004d:
|
|
{
|
|
KeyDownEvent_t1971978254C8EE65CDDD992AF86B44E442CDD18C* L_14 = V_1;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_inline(L_14, KeyboardEventBase_1_get_modifiers_m0842BDF157A5124C4B011494F378B7DEA32E1AFB_RuntimeMethod_var);
|
|
V_5 = (bool)((((int32_t)L_15) == ((int32_t)0))? 1 : 0);
|
|
bool L_16 = V_5;
|
|
if (!L_16)
|
|
{
|
|
goto IL_0066;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_17;
|
|
L_17 = VisualElementFocusChangeDirection_get_right_m7ABCCCB1E11E601279097312838B4CB93AC9BD9F_inline(NULL);
|
|
V_4 = L_17;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
}
|
|
|
|
IL_0067:
|
|
{
|
|
}
|
|
|
|
IL_0068:
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_18;
|
|
L_18 = FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline(NULL);
|
|
V_4 = L_18;
|
|
goto IL_0071;
|
|
}
|
|
|
|
IL_0071:
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_19 = V_4;
|
|
return L_19;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusRing::GetNextFocusable(UnityEngine.UIElements.Focusable,UnityEngine.UIElements.FocusChangeDirection)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusRing_GetNextFocusable_m7358BA822D191DA17D02BF554585AFEF00AC1815 (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_currentFocusable, FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* ___1_direction, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* V_0 = NULL;
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* 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;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B13_0 = 0;
|
|
int32_t G_B27_0 = 0;
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ___1_direction;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_1;
|
|
L_1 = FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline(NULL);
|
|
if ((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_0) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_1)))
|
|
{
|
|
goto IL_0013;
|
|
}
|
|
}
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_2 = ___1_direction;
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_3;
|
|
L_3 = FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline(NULL);
|
|
G_B3_0 = ((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_2) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_3))? 1 : 0);
|
|
goto IL_0014;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
V_2 = (bool)G_B3_0;
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0020;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_5 = ___0_currentFocusable;
|
|
V_3 = L_5;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_0020:
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_6 = ___1_direction;
|
|
V_0 = ((VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD*)IsInstClass((RuntimeObject*)L_6, VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD_il2cpp_TypeInfo_var));
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* L_7 = V_0;
|
|
V_4 = (bool)((!(((RuntimeObject*)(VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD*)L_7) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_8 = V_4;
|
|
if (!L_8)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* L_9 = V_0;
|
|
NullCheck(L_9);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_10;
|
|
L_10 = VisualElementFocusChangeTarget_get_target_mBA38952FC20D275B53503D14F2A8F9DE36586961_inline(L_9, NULL);
|
|
V_3 = L_10;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
VisualElementFocusRing_DoUpdate_m1312CAF5B2C58E1AF126619B3F6F84740C77E738(__this, NULL);
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_11 = __this->___m_FocusRing_2;
|
|
NullCheck(L_11);
|
|
int32_t L_12;
|
|
L_12 = List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_inline(L_11, List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var);
|
|
V_5 = (bool)((((int32_t)L_12) == ((int32_t)0))? 1 : 0);
|
|
bool L_13 = V_5;
|
|
if (!L_13)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
V_1 = 0;
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_14 = ___1_direction;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_15;
|
|
L_15 = VisualElementFocusChangeDirection_get_right_m7ABCCCB1E11E601279097312838B4CB93AC9BD9F_inline(NULL);
|
|
V_6 = (bool)((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_14) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_15))? 1 : 0);
|
|
bool L_16 = V_6;
|
|
if (!L_16)
|
|
{
|
|
goto IL_00ff;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_17 = ___0_currentFocusable;
|
|
int32_t L_18;
|
|
L_18 = VisualElementFocusRing_GetFocusableInternalIndex_mA8306194D667BF7F69A77902CC4F98D2F3982006(__this, L_17, NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_18, 1));
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_19 = ___0_currentFocusable;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0088;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_20 = V_1;
|
|
G_B13_0 = ((((int32_t)L_20) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0089;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
G_B13_0 = 0;
|
|
}
|
|
|
|
IL_0089:
|
|
{
|
|
V_7 = (bool)G_B13_0;
|
|
bool L_21 = V_7;
|
|
if (!L_21)
|
|
{
|
|
goto IL_00a1;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_22 = ___0_currentFocusable;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_23;
|
|
L_23 = VisualElementFocusRing_GetNextFocusableInTree_m2DE3EDCF07C0737702B0278DFCE2B2FC743D5BDF(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_22, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), NULL);
|
|
V_3 = L_23;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_00a1:
|
|
{
|
|
int32_t L_24 = V_1;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_25 = __this->___m_FocusRing_2;
|
|
NullCheck(L_25);
|
|
int32_t L_26;
|
|
L_26 = List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_inline(L_25, List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var);
|
|
V_8 = (bool)((((int32_t)L_24) == ((int32_t)L_26))? 1 : 0);
|
|
bool L_27 = V_8;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00b9;
|
|
}
|
|
}
|
|
{
|
|
V_1 = 0;
|
|
}
|
|
|
|
IL_00b9:
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
int32_t L_28 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_add(L_28, 1));
|
|
int32_t L_29 = V_1;
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_30 = __this->___m_FocusRing_2;
|
|
NullCheck(L_30);
|
|
int32_t L_31;
|
|
L_31 = List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_inline(L_30, List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var);
|
|
V_9 = (bool)((((int32_t)L_29) == ((int32_t)L_31))? 1 : 0);
|
|
bool L_32 = V_9;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00dc;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_00dc:
|
|
{
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_33 = __this->___m_FocusRing_2;
|
|
int32_t L_34 = V_1;
|
|
NullCheck(L_33);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_35;
|
|
L_35 = List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D(L_33, L_34, List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var);
|
|
NullCheck(L_35);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_36 = L_35->___m_Focusable_1;
|
|
NullCheck(L_36);
|
|
bool L_37;
|
|
L_37 = Focusable_get_delegatesFocus_m3EC6CEC9B7570A921855A9A91291FF4AA45D40AC(L_36, NULL);
|
|
V_10 = L_37;
|
|
bool L_38 = V_10;
|
|
if (L_38)
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0186;
|
|
}
|
|
|
|
IL_00ff:
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_39 = ___1_direction;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_40;
|
|
L_40 = VisualElementFocusChangeDirection_get_left_mC921347E5D037C1D96D254C565831368C7C00183_inline(NULL);
|
|
V_11 = (bool)((((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_39) == ((RuntimeObject*)(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF*)L_40))? 1 : 0);
|
|
bool L_41 = V_11;
|
|
if (!L_41)
|
|
{
|
|
goto IL_0186;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_42 = ___0_currentFocusable;
|
|
int32_t L_43;
|
|
L_43 = VisualElementFocusRing_GetFocusableInternalIndex_mA8306194D667BF7F69A77902CC4F98D2F3982006(__this, L_42, NULL);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_43, 1));
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_44 = ___0_currentFocusable;
|
|
if (!L_44)
|
|
{
|
|
goto IL_0122;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_45 = V_1;
|
|
G_B27_0 = ((((int32_t)L_45) == ((int32_t)((int32_t)-2)))? 1 : 0);
|
|
goto IL_0123;
|
|
}
|
|
|
|
IL_0122:
|
|
{
|
|
G_B27_0 = 0;
|
|
}
|
|
|
|
IL_0123:
|
|
{
|
|
V_12 = (bool)G_B27_0;
|
|
bool L_46 = V_12;
|
|
if (!L_46)
|
|
{
|
|
goto IL_0138;
|
|
}
|
|
}
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_47 = ___0_currentFocusable;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_48;
|
|
L_48 = VisualElementFocusRing_GetPreviousFocusableInTree_m5C1CB229300F3255F36C40DDC60DB32451FB2400(((VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)IsInstClass((RuntimeObject*)L_47, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var)), NULL);
|
|
V_3 = L_48;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_0138:
|
|
{
|
|
int32_t L_49 = V_1;
|
|
V_13 = (bool)((((int32_t)L_49) < ((int32_t)0))? 1 : 0);
|
|
bool L_50 = V_13;
|
|
if (!L_50)
|
|
{
|
|
goto IL_0152;
|
|
}
|
|
}
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_51 = __this->___m_FocusRing_2;
|
|
NullCheck(L_51);
|
|
int32_t L_52;
|
|
L_52 = List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_inline(L_51, List_1_get_Count_m23B52A99235B313D224F8196857920B730F8C46F_RuntimeMethod_var);
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_52, 1));
|
|
}
|
|
|
|
IL_0152:
|
|
{
|
|
goto IL_0169;
|
|
}
|
|
|
|
IL_0154:
|
|
{
|
|
int32_t L_53 = V_1;
|
|
V_1 = ((int32_t)il2cpp_codegen_subtract(L_53, 1));
|
|
int32_t L_54 = V_1;
|
|
V_14 = (bool)((((int32_t)L_54) == ((int32_t)(-1)))? 1 : 0);
|
|
bool L_55 = V_14;
|
|
if (!L_55)
|
|
{
|
|
goto IL_0168;
|
|
}
|
|
}
|
|
{
|
|
V_3 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_0168:
|
|
{
|
|
}
|
|
|
|
IL_0169:
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_56 = __this->___m_FocusRing_2;
|
|
int32_t L_57 = V_1;
|
|
NullCheck(L_56);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_58;
|
|
L_58 = List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D(L_56, L_57, List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var);
|
|
NullCheck(L_58);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_59 = L_58->___m_Focusable_1;
|
|
NullCheck(L_59);
|
|
bool L_60;
|
|
L_60 = Focusable_get_delegatesFocus_m3EC6CEC9B7570A921855A9A91291FF4AA45D40AC(L_59, NULL);
|
|
V_15 = L_60;
|
|
bool L_61 = V_15;
|
|
if (L_61)
|
|
{
|
|
goto IL_0154;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_0186:
|
|
{
|
|
List_1_tD83E9FC86E76D3E92623990C84D4238B8EA05D5B* L_62 = __this->___m_FocusRing_2;
|
|
int32_t L_63 = V_1;
|
|
NullCheck(L_62);
|
|
FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* L_64;
|
|
L_64 = List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D(L_62, L_63, List_1_get_Item_mAF806CF027C067E2D860C6CDD471231E83558A0D_RuntimeMethod_var);
|
|
NullCheck(L_64);
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_65 = L_64->___m_Focusable_1;
|
|
V_3 = L_65;
|
|
goto IL_019a;
|
|
}
|
|
|
|
IL_019a:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_66 = V_3;
|
|
return L_66;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusRing::GetNextFocusableInTree(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusRing_GetNextFocusableInTree_m2DE3EDCF07C0737702B0278DFCE2B2FC743D5BDF (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_currentFocusable, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_2 = NULL;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t G_B12_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_currentFocusable;
|
|
V_1 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = ___0_currentFocusable;
|
|
NullCheck(L_2);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = VisualElement_GetNextElementDepthFirst_mE7A0AE2E695FD079032A040FD0D10C2C4E383385(L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5;
|
|
L_5 = VisualElement_GetNextElementDepthFirst_mE7A0AE2E695FD079032A040FD0D10C2C4E383385(L_4, NULL);
|
|
V_0 = L_5;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
V_3 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_6) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_7 = V_3;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = ___0_currentFocusable;
|
|
NullCheck(L_8);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9;
|
|
L_9 = VisualElement_GetRoot_m0199AD8562269920C28147276E1E29AD713D6CDD(L_8, NULL);
|
|
V_0 = L_9;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_11 = ___0_currentFocusable;
|
|
V_4 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_10) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_11))? 1 : 0);
|
|
bool L_12 = V_4;
|
|
if (!L_12)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = ___0_currentFocusable;
|
|
V_2 = L_13;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14 = V_0;
|
|
NullCheck(L_14);
|
|
bool L_15;
|
|
L_15 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus() */, L_14);
|
|
if (!L_15)
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_16 = V_0;
|
|
NullCheck(L_16);
|
|
int32_t L_17;
|
|
L_17 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_16, NULL);
|
|
if ((((int32_t)L_17) < ((int32_t)0)))
|
|
{
|
|
goto IL_0059;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = V_0;
|
|
NullCheck(L_18);
|
|
bool L_19;
|
|
L_19 = Focusable_get_excludeFromFocusRing_m02C43592E42B20FF4E0CABF90F6413F81CEF51DF(L_18, NULL);
|
|
G_B12_0 = ((int32_t)(L_19));
|
|
goto IL_005a;
|
|
}
|
|
|
|
IL_0059:
|
|
{
|
|
G_B12_0 = 1;
|
|
}
|
|
|
|
IL_005a:
|
|
{
|
|
V_5 = (bool)G_B12_0;
|
|
bool L_20 = V_5;
|
|
if (L_20)
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = V_0;
|
|
V_2 = L_21;
|
|
goto IL_0064;
|
|
}
|
|
|
|
IL_0064:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_22 = V_2;
|
|
return L_22;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.Focusable UnityEngine.UIElements.VisualElementFocusRing::GetPreviousFocusableInTree(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusRing_GetPreviousFocusableInTree_m5C1CB229300F3255F36C40DDC60DB32451FB2400 (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_currentFocusable, const RuntimeMethod* method)
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
bool V_1 = false;
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* V_2 = NULL;
|
|
bool V_3 = false;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
bool V_7 = false;
|
|
int32_t G_B15_0 = 0;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_currentFocusable;
|
|
V_1 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
V_2 = (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0*)NULL;
|
|
goto IL_0092;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2 = ___0_currentFocusable;
|
|
NullCheck(L_2);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_3;
|
|
L_3 = VisualElement_GetPreviousElementDepthFirst_m3DB370961921C5D49071D9860125D92B95A8D7EB(L_2, NULL);
|
|
V_0 = L_3;
|
|
goto IL_006e;
|
|
}
|
|
|
|
IL_001a:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_0;
|
|
NullCheck(L_4);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_5;
|
|
L_5 = VisualElement_GetPreviousElementDepthFirst_m3DB370961921C5D49071D9860125D92B95A8D7EB(L_4, NULL);
|
|
V_0 = L_5;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = V_0;
|
|
V_3 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_6) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_7 = V_3;
|
|
if (!L_7)
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = ___0_currentFocusable;
|
|
NullCheck(L_8);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9;
|
|
L_9 = VisualElement_GetRoot_m0199AD8562269920C28147276E1E29AD713D6CDD(L_8, NULL);
|
|
V_0 = L_9;
|
|
goto IL_004e;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = V_0;
|
|
NullCheck(L_10);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_11;
|
|
L_11 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_10, NULL);
|
|
V_4 = L_11;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_12 = V_0;
|
|
NullCheck(L_12);
|
|
int32_t L_13;
|
|
L_13 = VisualElement_get_childCount_m411C1EAE0E8B660CF0F831B38D5AEEBC200F277A(L_12, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_14;
|
|
L_14 = Hierarchy_ElementAt_mE26FF102C1EE76083D4AA600627C5B9757E1DE73((&V_4), ((int32_t)il2cpp_codegen_subtract(L_13, 1)), NULL);
|
|
V_0 = L_14;
|
|
}
|
|
|
|
IL_004e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_15 = V_0;
|
|
NullCheck(L_15);
|
|
int32_t L_16;
|
|
L_16 = VisualElement_get_childCount_m411C1EAE0E8B660CF0F831B38D5AEEBC200F277A(L_15, NULL);
|
|
V_5 = (bool)((((int32_t)L_16) > ((int32_t)0))? 1 : 0);
|
|
bool L_17 = V_5;
|
|
if (L_17)
|
|
{
|
|
goto IL_0034;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_18 = V_0;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = ___0_currentFocusable;
|
|
V_6 = (bool)((((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_18) == ((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_19))? 1 : 0);
|
|
bool L_20 = V_6;
|
|
if (!L_20)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_21 = ___0_currentFocusable;
|
|
V_2 = L_21;
|
|
goto IL_0092;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
}
|
|
|
|
IL_006e:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_22 = V_0;
|
|
NullCheck(L_22);
|
|
bool L_23;
|
|
L_23 = VirtualFuncInvoker0< bool >::Invoke(16 /* System.Boolean UnityEngine.UIElements.Focusable::get_canGrabFocus() */, L_22);
|
|
if (!L_23)
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_24 = V_0;
|
|
NullCheck(L_24);
|
|
int32_t L_25;
|
|
L_25 = Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline(L_24, NULL);
|
|
if ((((int32_t)L_25) < ((int32_t)0)))
|
|
{
|
|
goto IL_0087;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_26 = V_0;
|
|
NullCheck(L_26);
|
|
bool L_27;
|
|
L_27 = Focusable_get_excludeFromFocusRing_m02C43592E42B20FF4E0CABF90F6413F81CEF51DF(L_26, NULL);
|
|
G_B15_0 = ((int32_t)(L_27));
|
|
goto IL_0088;
|
|
}
|
|
|
|
IL_0087:
|
|
{
|
|
G_B15_0 = 1;
|
|
}
|
|
|
|
IL_0088:
|
|
{
|
|
V_7 = (bool)G_B15_0;
|
|
bool L_28 = V_7;
|
|
if (L_28)
|
|
{
|
|
goto IL_001a;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_29 = V_0;
|
|
V_2 = L_29;
|
|
goto IL_0092;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_30 = V_2;
|
|
return L_30;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#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.VisualElementFocusRing/FocusRingRecord::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void FocusRingRecord__ctor_m575F831D8CA4CAC3034863D9E35BA9904F6C01EB (FocusRingRecord_t052040F78934F1651B6BD1F65F10FB80CAEFC32D* __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
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualTreeViewDataUpdater::get_profilerMarker()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD VisualTreeViewDataUpdater_get_profilerMarker_m2029464E00450ECAA0365713ED9870975DE6487D (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_StaticFields*)il2cpp_codegen_static_fields_for(VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var))->___s_ProfilerMarker_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::OnVersionChanged(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VersionChangeType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater_OnVersionChanged_mFD188F6C418403A0787589D84B36C1E0525DD713 (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_versionChangeType, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
int32_t L_0 = ___1_versionChangeType;
|
|
V_0 = (bool)((((int32_t)((((int32_t)((int32_t)((int32_t)L_0&2))) == ((int32_t)2))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
uint32_t L_2 = __this->___m_Version_4;
|
|
__this->___m_Version_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_2, 1));
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_3 = __this->___m_UpdateList_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = ___0_ve;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878(L_3, L_4, HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_6 = ___0_ve;
|
|
VisualTreeViewDataUpdater_PropagateToParents_m54E929AFB4036874B6B0EC4DEEDFFD3957DBC298(__this, L_6, NULL);
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::Update()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater_Update_mE9E3077A29391F87BB989A0819D4DF9B30C6AC91 (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __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*)&HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral037C461B7701AD27801066F5D62BDC1991EF46AE);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B6_0 = NULL;
|
|
String_t* G_B6_1 = NULL;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* G_B5_0 = NULL;
|
|
String_t* G_B5_1 = NULL;
|
|
String_t* G_B7_0 = NULL;
|
|
String_t* G_B7_1 = NULL;
|
|
{
|
|
uint32_t L_0 = __this->___m_Version_4;
|
|
uint32_t L_1 = __this->___m_LastVersion_5;
|
|
V_1 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0093;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
V_0 = 0;
|
|
goto IL_0066;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
uint32_t L_3 = __this->___m_Version_4;
|
|
__this->___m_LastVersion_5 = L_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4;
|
|
L_4 = BaseVisualTreeUpdater_get_visualTree_m3501698625DFEAAE964C8388247645F20022C48A(__this, NULL);
|
|
VisualTreeViewDataUpdater_ValidateViewDataOnSubTree_m0FE2C7F95B99377F8A4A16490DF7B11E081E98FA(__this, L_4, (bool)1, NULL);
|
|
int32_t L_5 = V_0;
|
|
V_0 = ((int32_t)il2cpp_codegen_add(L_5, 1));
|
|
int32_t L_6 = V_0;
|
|
V_2 = (bool)((((int32_t)L_6) > ((int32_t)5))? 1 : 0);
|
|
bool L_7 = V_2;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0065;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8;
|
|
L_8 = BaseVisualTreeUpdater_get_visualTree_m3501698625DFEAAE964C8388247645F20022C48A(__this, NULL);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9 = L_8;
|
|
G_B5_0 = L_9;
|
|
G_B5_1 = _stringLiteral037C461B7701AD27801066F5D62BDC1991EF46AE;
|
|
if (L_9)
|
|
{
|
|
G_B6_0 = L_9;
|
|
G_B6_1 = _stringLiteral037C461B7701AD27801066F5D62BDC1991EF46AE;
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
G_B7_0 = ((String_t*)(NULL));
|
|
G_B7_1 = G_B5_1;
|
|
goto IL_0058;
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
NullCheck(G_B6_0);
|
|
String_t* L_10;
|
|
L_10 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B6_0);
|
|
G_B7_0 = L_10;
|
|
G_B7_1 = G_B6_1;
|
|
}
|
|
|
|
IL_0058:
|
|
{
|
|
String_t* L_11;
|
|
L_11 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B7_1, G_B7_0, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(Debug_t8394C7EEAECA3689C2C9B9DE9C7166D73596276F_il2cpp_TypeInfo_var);
|
|
Debug_LogError_mB00B2B4468EF3CAF041B038D840820FB84C924B2(L_11, NULL);
|
|
goto IL_007b;
|
|
}
|
|
|
|
IL_0065:
|
|
{
|
|
}
|
|
|
|
IL_0066:
|
|
{
|
|
uint32_t L_12 = __this->___m_LastVersion_5;
|
|
uint32_t L_13 = __this->___m_Version_4;
|
|
V_3 = (bool)((((int32_t)((((int32_t)L_12) == ((int32_t)L_13))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_14 = V_3;
|
|
if (L_14)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
|
|
IL_007b:
|
|
{
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_15 = __this->___m_UpdateList_2;
|
|
NullCheck(L_15);
|
|
HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085(L_15, HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085_RuntimeMethod_var);
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_16 = __this->___m_ParentList_3;
|
|
NullCheck(L_16);
|
|
HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085(L_16, HashSet_1_Clear_mE06F7BAC3E20A5FADEF8550F4B18DC8967565085_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0093:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::ValidateViewDataOnSubTree(UnityEngine.UIElements.VisualElement,System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater_ValidateViewDataOnSubTree_m0FE2C7F95B99377F8A4A16490DF7B11E081E98FA (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, bool ___1_enablePersistence, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m22275ED32609374C998026A0B28E261404A6E7D1_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
int32_t V_2 = 0;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_3;
|
|
memset((&V_3), 0, sizeof(V_3));
|
|
int32_t V_4 = 0;
|
|
bool V_5 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
bool L_1 = ___1_enablePersistence;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = VisualElement_IsViewDataPersitenceSupportedOnChildren_mDB0573D7EAC1DFABA79CE80AF151EEBF5830E03D(L_0, L_1, NULL);
|
|
___1_enablePersistence = L_2;
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_3 = __this->___m_UpdateList_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = ___0_ve;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544(L_3, L_4, HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544_RuntimeMethod_var);
|
|
V_0 = L_5;
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_7 = __this->___m_UpdateList_2;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_8 = ___0_ve;
|
|
NullCheck(L_7);
|
|
bool L_9;
|
|
L_9 = HashSet_1_Remove_m22275ED32609374C998026A0B28E261404A6E7D1(L_7, L_8, HashSet_1_Remove_m22275ED32609374C998026A0B28E261404A6E7D1_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = ___0_ve;
|
|
bool L_11 = ___1_enablePersistence;
|
|
NullCheck(L_10);
|
|
VisualElement_OnViewDataReady_m9BE0A26DD5EBA7A7FB5435EBBDAF6E4C1D6EB5A4(L_10, L_11, NULL);
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_12 = __this->___m_ParentList_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_13 = ___0_ve;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544(L_12, L_13, HashSet_1_Contains_m2B95A60056DDAFCA7D8D88A96EE0E256D62AA544_RuntimeMethod_var);
|
|
V_1 = L_14;
|
|
bool L_15 = V_1;
|
|
if (!L_15)
|
|
{
|
|
goto IL_008f;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_16 = __this->___m_ParentList_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_17 = ___0_ve;
|
|
NullCheck(L_16);
|
|
bool L_18;
|
|
L_18 = HashSet_1_Remove_m22275ED32609374C998026A0B28E261404A6E7D1(L_16, L_17, HashSet_1_Remove_m22275ED32609374C998026A0B28E261404A6E7D1_RuntimeMethod_var);
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_19 = ___0_ve;
|
|
NullCheck(L_19);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_20;
|
|
L_20 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_19, NULL);
|
|
V_3 = L_20;
|
|
int32_t L_21;
|
|
L_21 = Hierarchy_get_childCount_mAD31B42C0FF9B64AAF6A8CF23F22024B3F9542D5((&V_3), NULL);
|
|
V_2 = L_21;
|
|
V_4 = 0;
|
|
goto IL_0083;
|
|
}
|
|
|
|
IL_0063:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_22 = ___0_ve;
|
|
NullCheck(L_22);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_23;
|
|
L_23 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_22, NULL);
|
|
V_3 = L_23;
|
|
int32_t L_24 = V_4;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_25;
|
|
L_25 = Hierarchy_get_Item_mBA5811C28D9E7FA48D0F10603A95F8CF248C3467((&V_3), L_24, NULL);
|
|
bool L_26 = ___1_enablePersistence;
|
|
VisualTreeViewDataUpdater_ValidateViewDataOnSubTree_m0FE2C7F95B99377F8A4A16490DF7B11E081E98FA(__this, L_25, L_26, NULL);
|
|
int32_t L_27 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_27, 1));
|
|
}
|
|
|
|
IL_0083:
|
|
{
|
|
int32_t L_28 = V_4;
|
|
int32_t L_29 = V_2;
|
|
V_5 = (bool)((((int32_t)L_28) < ((int32_t)L_29))? 1 : 0);
|
|
bool L_30 = V_5;
|
|
if (L_30)
|
|
{
|
|
goto IL_0063;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_008f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::PropagateToParents(UnityEngine.UIElements.VisualElement)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater_PropagateToParents_m54E929AFB4036874B6B0EC4DEEDFFD3957DBC298 (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* V_0 = NULL;
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_0 = ___0_ve;
|
|
NullCheck(L_0);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_1;
|
|
L_1 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_0, NULL);
|
|
V_1 = L_1;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_2;
|
|
L_2 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_1), NULL);
|
|
V_0 = L_2;
|
|
goto IL_0039;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_3 = __this->___m_ParentList_3;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_4 = V_0;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878(L_3, L_4, HashSet_1_Add_mF6040E43B0C67E3BCBB475A6F0E216A34F2BF878_RuntimeMethod_var);
|
|
V_2 = (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0);
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_7 = V_0;
|
|
NullCheck(L_7);
|
|
Hierarchy_t4CF226F0EDE9C117C51C505730FC80641B1F1677 L_8;
|
|
L_8 = VisualElement_get_hierarchy_m2E897DE4CFD349E65CFA38EFF6BAAFECE2F4E3E4_inline(L_7, NULL);
|
|
V_1 = L_8;
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_9;
|
|
L_9 = Hierarchy_get_parent_m1CB3F7548632A5B5747041AF64B12BB0E0F402D4((&V_1), NULL);
|
|
V_0 = L_9;
|
|
}
|
|
|
|
IL_0039:
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = V_0;
|
|
V_3 = (bool)((!(((RuntimeObject*)(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115*)L_10) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_11 = V_3;
|
|
if (L_11)
|
|
{
|
|
goto IL_0012;
|
|
}
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater__ctor_mC68747EF05591B85797E1E3CCC4EDB33D16503EE (VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_0 = (HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB*)il2cpp_codegen_object_new(HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201(L_0, HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201_RuntimeMethod_var);
|
|
__this->___m_UpdateList_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UpdateList_2), (void*)L_0);
|
|
HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB* L_1 = (HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB*)il2cpp_codegen_object_new(HashSet_1_t95ABEAA04E177570445F27ECCBABE556363578CB_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201(L_1, HashSet_1__ctor_mD57668E64A01D84E8F4A793217FA5F1D8592A201_RuntimeMethod_var);
|
|
__this->___m_ParentList_3 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ParentList_3), (void*)L_1);
|
|
__this->___m_Version_4 = 0;
|
|
__this->___m_LastVersion_5 = 0;
|
|
BaseVisualTreeUpdater__ctor_m64962BB0B4E0EE94292901B60BC5BA826FF5301B(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualTreeViewDataUpdater::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualTreeViewDataUpdater__cctor_mF10CF86B3DC9FE1582E589776B7FD4127D613E35 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral38696CB98344D3E251D7C2136292CA1104CF1134);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_StaticFields*)il2cpp_codegen_static_fields_for(VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var))->___s_Description_6 = _stringLiteral38696CB98344D3E251D7C2136292CA1104CF1134;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_StaticFields*)il2cpp_codegen_static_fields_for(VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var))->___s_Description_6), (void*)_stringLiteral38696CB98344D3E251D7C2136292CA1104CF1134);
|
|
String_t* L_0 = ((VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_StaticFields*)il2cpp_codegen_static_fields_for(VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var))->___s_Description_6;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_1), L_0, /*hidden argument*/NULL);
|
|
((VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_StaticFields*)il2cpp_codegen_static_fields_for(VisualTreeViewDataUpdater_t79CB853ABA16F193CFC65AA0826641D78CF8B986_il2cpp_TypeInfo_var))->___s_ProfilerMarker_7 = L_1;
|
|
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.IBinding UnityEngine.UIElements.BindableElement::get_binding()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* BindableElement_get_binding_m6175B80F3A495FAE7155D19DB30D155B583B9302 (BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CbindingU3Ek__BackingField_65;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BindableElement::set_bindingPath(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BindableElement_set_bindingPath_mEFF8EBFB54F86ECB9E073B98FBCEA22AC351DE54 (BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CbindingPathU3Ek__BackingField_66 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CbindingPathU3Ek__BackingField_66), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BindableElement::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BindableElement__ctor_m827E1D7852F342FCC582E31E9857F6976D958454 (BindableElement_t873EFF65032D21AB3B7BFBA21675D1693967435C* __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;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115_il2cpp_TypeInfo_var);
|
|
VisualElement__ctor_m4C59A7BA0CE74223A61F07C39A60071DD0207E2D(__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.BindableElement/UxmlFactory::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlFactory__ctor_mEB14D7A253EE2815F42F86F6E03A32E190F7738C (UxmlFactory_t1DB561BFFA7E2E3836F7AB008BCE7B6119542F33* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlFactory_2__ctor_m654F9F18593CC65382457296A874E76F08800729_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlFactory_2__ctor_m654F9F18593CC65382457296A874E76F08800729(__this, UxmlFactory_2__ctor_m654F9F18593CC65382457296A874E76F08800729_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.BindableElement/UxmlTraits::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits__ctor_mD1446358752A926B32BC92B0446AA5E87090DD97 (UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral29784256C60A93E08D09354C1B895C1F5D2C22EF);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
UxmlTraits__ctor_m99053329DC8F0D4087968FCA3C60857B853E4346(__this, NULL);
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_0 = (UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF*)il2cpp_codegen_object_new(UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
UxmlStringAttributeDescription__ctor_mA8A849D4B098131C4D456911CAA16E3A964B51D7(L_0, NULL);
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_1 = L_0;
|
|
NullCheck(L_1);
|
|
UxmlAttributeDescription_set_name_mCE9C58621BAD7AB4E59D83DD21224A8FA6517E3E_inline(L_1, _stringLiteral29784256C60A93E08D09354C1B895C1F5D2C22EF, NULL);
|
|
__this->___m_PropertyPath_12 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_PropertyPath_12), (void*)L_1);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.BindableElement/UxmlTraits::Init(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void UxmlTraits_Init_mF7618ABBF84731C43491CE8BD8ADB637AF5CD44D (UxmlTraits_tDED0FF94BF82D1F4DCFD14DBC22DCA51D30D1172* __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*)&IBindable_tC033D86A91EFC1DB9A0DD25E218A1D6E0C4D306A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
bool V_1 = false;
|
|
RuntimeObject* V_2 = NULL;
|
|
bool V_3 = 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);
|
|
UxmlStringAttributeDescription_t60C9BE81B6A3251AD7A38A90E46F240E016293EF* L_3 = __this->___m_PropertyPath_12;
|
|
RuntimeObject* L_4 = ___1_bag;
|
|
CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 L_5 = ___2_cc;
|
|
NullCheck(L_3);
|
|
String_t* L_6;
|
|
L_6 = VirtualFuncInvoker2< String_t*, RuntimeObject*, CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257 >::Invoke(4 /* T UnityEngine.UIElements.TypedUxmlAttributeDescription`1<System.String>::GetValueFromBag(UnityEngine.UIElements.IUxmlAttributes,UnityEngine.UIElements.CreationContext) */, L_3, L_4, L_5);
|
|
V_0 = L_6;
|
|
String_t* L_7 = V_0;
|
|
bool L_8;
|
|
L_8 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_7, NULL);
|
|
V_1 = (bool)((((int32_t)L_8) == ((int32_t)0))? 1 : 0);
|
|
bool L_9 = V_1;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* L_10 = ___0_ve;
|
|
V_2 = ((RuntimeObject*)IsInst((RuntimeObject*)L_10, IBindable_tC033D86A91EFC1DB9A0DD25E218A1D6E0C4D306A_il2cpp_TypeInfo_var));
|
|
RuntimeObject* L_11 = V_2;
|
|
V_3 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0040;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_13 = V_2;
|
|
String_t* L_14 = V_0;
|
|
NullCheck(L_13);
|
|
InterfaceActionInvoker1< String_t* >::Invoke(1 /* System.Void UnityEngine.UIElements.IBindable::set_bindingPath(System.String) */, IBindable_tC033D86A91EFC1DB9A0DD25E218A1D6E0C4D306A_il2cpp_TypeInfo_var, L_13, L_14);
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Int64 UnityEngine.UIElements.TimerState::get_start()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CstartU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
int64_t _returnValue;
|
|
_returnValue = TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TimerState::set_start(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerState_set_start_m53092239224A3793D0ED6BE94BCB2D47BE8A9579 (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CstartU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TimerState_set_start_m53092239224A3793D0ED6BE94BCB2D47BE8A9579_AdjustorThunk (RuntimeObject* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
TimerState_set_start_m53092239224A3793D0ED6BE94BCB2D47BE8A9579_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.TimerState::get_now()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62 (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CnowU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
int64_t _returnValue;
|
|
_returnValue = TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_inline(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Void UnityEngine.UIElements.TimerState::set_now(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerState_set_now_mCB7E8520AC475C4B107AEB4FFBB2C7DB78613C6B (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CnowU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C void TimerState_set_now_mCB7E8520AC475C4B107AEB4FFBB2C7DB78613C6B_AdjustorThunk (RuntimeObject* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
TimerState_set_now_mCB7E8520AC475C4B107AEB4FFBB2C7DB78613C6B_inline(_thisAdjusted, ___0_value, method);
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.TimerState::get_deltaTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t TimerState_get_deltaTime_m2308020C14A5A06E9A032C76B477D205F4933C1D (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method)
|
|
{
|
|
int64_t V_0 = 0;
|
|
{
|
|
int64_t L_0;
|
|
L_0 = TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_inline(__this, NULL);
|
|
int64_t L_1;
|
|
L_1 = TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_inline(__this, NULL);
|
|
V_0 = ((int64_t)il2cpp_codegen_subtract(L_0, L_1));
|
|
goto IL_0011;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
int64_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int64_t TimerState_get_deltaTime_m2308020C14A5A06E9A032C76B477D205F4933C1D_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
int64_t _returnValue;
|
|
_returnValue = TimerState_get_deltaTime_m2308020C14A5A06E9A032C76B477D205F4933C1D(_thisAdjusted, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TimerState::Equals(System.Object)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerState_Equals_m3E9333E4C2EA9A1498A901A3EB28B17E526C630F (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
RuntimeObject* L_0 = ___0_obj;
|
|
if (!((RuntimeObject*)IsInstSealed((RuntimeObject*)L_0, TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE_il2cpp_TypeInfo_var)))
|
|
{
|
|
goto IL_0017;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_1 = ___0_obj;
|
|
bool L_2;
|
|
L_2 = TimerState_Equals_m394CAD48AA75FFF63F07F9640628D4DFE3CF03DF(__this, ((*(TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*)((TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*)(TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*)UnBox(L_1, TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE_il2cpp_TypeInfo_var)))), NULL);
|
|
G_B3_0 = ((int32_t)(L_2));
|
|
goto IL_0018;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0018:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_001b;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
bool L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TimerState_Equals_m3E9333E4C2EA9A1498A901A3EB28B17E526C630F_AdjustorThunk (RuntimeObject* __this, RuntimeObject* ___0_obj, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TimerState_Equals_m3E9333E4C2EA9A1498A901A3EB28B17E526C630F(_thisAdjusted, ___0_obj, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TimerState::Equals(UnityEngine.UIElements.TimerState)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerState_Equals_m394CAD48AA75FFF63F07F9640628D4DFE3CF03DF (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE ___0_other, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
int64_t L_0;
|
|
L_0 = TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_inline(__this, NULL);
|
|
int64_t L_1;
|
|
L_1 = TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_inline((&___0_other), NULL);
|
|
if ((!(((uint64_t)L_0) == ((uint64_t)L_1))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_2;
|
|
L_2 = TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_inline(__this, NULL);
|
|
int64_t L_3;
|
|
L_3 = TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_inline((&___0_other), NULL);
|
|
if ((!(((uint64_t)L_2) == ((uint64_t)L_3))))
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_4;
|
|
L_4 = TimerState_get_deltaTime_m2308020C14A5A06E9A032C76B477D205F4933C1D(__this, NULL);
|
|
int64_t L_5;
|
|
L_5 = TimerState_get_deltaTime_m2308020C14A5A06E9A032C76B477D205F4933C1D((&___0_other), NULL);
|
|
G_B4_0 = ((((int64_t)L_4) == ((int64_t)L_5))? 1 : 0);
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
goto IL_0034;
|
|
}
|
|
|
|
IL_0034:
|
|
{
|
|
bool L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C bool TimerState_Equals_m394CAD48AA75FFF63F07F9640628D4DFE3CF03DF_AdjustorThunk (RuntimeObject* __this, TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE ___0_other, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
bool _returnValue;
|
|
_returnValue = TimerState_Equals_m394CAD48AA75FFF63F07F9640628D4DFE3CF03DF(_thisAdjusted, ___0_other, method);
|
|
return _returnValue;
|
|
}
|
|
// System.Int32 UnityEngine.UIElements.TimerState::GetHashCode()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t TimerState_GetHashCode_m72327F261B7D72660148BE181DC8B4914C6899EE (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
int64_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
{
|
|
V_0 = ((int32_t)540054806);
|
|
int32_t L_0 = V_0;
|
|
int64_t L_1;
|
|
L_1 = TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_inline(__this, NULL);
|
|
V_1 = L_1;
|
|
int32_t L_2;
|
|
L_2 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496((&V_1), NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_0, ((int32_t)-1521134295))), L_2));
|
|
int32_t L_3 = V_0;
|
|
int64_t L_4;
|
|
L_4 = TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_inline(__this, NULL);
|
|
V_1 = L_4;
|
|
int32_t L_5;
|
|
L_5 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496((&V_1), NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_3, ((int32_t)-1521134295))), L_5));
|
|
int32_t L_6 = V_0;
|
|
int64_t L_7;
|
|
L_7 = TimerState_get_deltaTime_m2308020C14A5A06E9A032C76B477D205F4933C1D(__this, NULL);
|
|
V_1 = L_7;
|
|
int32_t L_8;
|
|
L_8 = Int64_GetHashCode_mDB050BE2AC244D92B14D1DF725AAD279CDC48496((&V_1), NULL);
|
|
V_0 = ((int32_t)il2cpp_codegen_add(((int32_t)il2cpp_codegen_multiply(L_6, ((int32_t)-1521134295))), L_8));
|
|
int32_t L_9 = V_0;
|
|
V_2 = L_9;
|
|
goto IL_0050;
|
|
}
|
|
|
|
IL_0050:
|
|
{
|
|
int32_t L_10 = V_2;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_EXTERN_C int32_t TimerState_GetHashCode_m72327F261B7D72660148BE181DC8B4914C6899EE_AdjustorThunk (RuntimeObject* __this, const RuntimeMethod* method)
|
|
{
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* _thisAdjusted;
|
|
int32_t _offset = 1;
|
|
_thisAdjusted = reinterpret_cast<TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE*>(__this + _offset);
|
|
int32_t _returnValue;
|
|
_returnValue = TimerState_GetHashCode_m72327F261B7D72660148BE181DC8B4914C6899EE(_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.Int64 UnityEngine.UIElements.ScheduledItem::get_startMs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_startMs_m9E6A3E6FE5D0ED4888E2E0E496DDF1FEF50D0133 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CstartMsU3Ek__BackingField_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::set_startMs(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem_set_startMs_m0953A2B9FF6E45514E90635E6E7763F7DAD6A59C (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CstartMsU3Ek__BackingField_3 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::get_delayMs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_delayMs_m7F18FB89F7CBF65DBB442B14ABF78521ED9C3412 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CdelayMsU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::set_delayMs(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem_set_delayMs_m941D24B605083F1B2F7285FB04E0A01D4701C3F1 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CdelayMsU3Ek__BackingField_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::get_intervalMs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_intervalMs_m4704C59E1316CE43604B2154D0912A4835C78151 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CintervalMsU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::set_intervalMs(System.Int64)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem_set_intervalMs_m4CC440531CE50C44153A5C3B6981C48B417EAC6A (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CintervalMsU3Ek__BackingField_5 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Int64 UnityEngine.UIElements.ScheduledItem::get_endTimeMs()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_endTimeMs_m9E3111F4A4104BC573DDF07C51C13DF3B8C350CE (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CendTimeMsU3Ek__BackingField_6;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem__ctor_mF39211ECDC9F236A6D774C8AB776DA8207DBB730 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
ScheduledItem_ResetStartTime_m9ACBD805DCB9ED8B4AD86B64263FED2DEFC799A6(__this, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var);
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = ((ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_StaticFields*)il2cpp_codegen_static_fields_for(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var))->___OnceCondition_1;
|
|
__this->___timerUpdateStopCondition_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___timerUpdateStopCondition_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::ResetStartTime()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem_ResetStartTime_m9ACBD805DCB9ED8B4AD86B64263FED2DEFC799A6 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
int64_t L_0;
|
|
L_0 = Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B(NULL);
|
|
ScheduledItem_set_startMs_m0953A2B9FF6E45514E90635E6E7763F7DAD6A59C_inline(__this, L_0, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::OnItemUnscheduled()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem_OnItemUnscheduled_mB8917E9B44A87A7BE0EDDF0ABFB9D19AED12A205 (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ScheduledItem::ShouldUnschedule()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool ScheduledItem_ShouldUnschedule_m6F7B671124A1E1209572B99D2389FB927C9601BF (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_0 = __this->___timerUpdateStopCondition_0;
|
|
V_0 = (bool)((!(((RuntimeObject*)(Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457*)L_0) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_001d;
|
|
}
|
|
}
|
|
{
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_2 = __this->___timerUpdateStopCondition_0;
|
|
NullCheck(L_2);
|
|
bool L_3;
|
|
L_3 = Func_1_Invoke_mBB7F37C468451AF57FAF31635C544D6B8C4373B2_inline(L_2, NULL);
|
|
V_1 = L_3;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_0021;
|
|
}
|
|
|
|
IL_0021:
|
|
{
|
|
bool L_4 = V_1;
|
|
return L_4;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ScheduledItem__cctor_mF6DD4E14AE7AB3B6613F5E4859D512CBC6B50607 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__25_0_mE6370DE8D3164D5D959A299573C2AAEAE997BB6E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_U3C_cctorU3Eb__25_1_mB79A7ABB41B38ECB10084BAE6620F824F36C75F1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var);
|
|
U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* L_0 = ((U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var))->___U3CU3E9_0;
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_1 = (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457*)il2cpp_codegen_object_new(Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
Func_1__ctor_mDFFAE9C73346372438B5B04C4558AC42F1A3DA22(L_1, L_0, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__25_0_mE6370DE8D3164D5D959A299573C2AAEAE997BB6E_RuntimeMethod_var), NULL);
|
|
((ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_StaticFields*)il2cpp_codegen_static_fields_for(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var))->___OnceCondition_1 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_StaticFields*)il2cpp_codegen_static_fields_for(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var))->___OnceCondition_1), (void*)L_1);
|
|
U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* L_2 = ((U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var))->___U3CU3E9_0;
|
|
Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457* L_3 = (Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457*)il2cpp_codegen_object_new(Func_1_t2BE7F58348C9CC544A8973B3A9E55541DE43C457_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
Func_1__ctor_mDFFAE9C73346372438B5B04C4558AC42F1A3DA22(L_3, L_2, (intptr_t)((void*)U3CU3Ec_U3C_cctorU3Eb__25_1_mB79A7ABB41B38ECB10084BAE6620F824F36C75F1_RuntimeMethod_var), NULL);
|
|
((ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_StaticFields*)il2cpp_codegen_static_fields_for(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var))->___ForeverCondition_2 = L_3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_StaticFields*)il2cpp_codegen_static_fields_for(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0_il2cpp_TypeInfo_var))->___ForeverCondition_2), (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.ScheduledItem/<>c::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m3CD291A464FEBE22CD7D439CC657433E551F19B7 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* L_0 = (U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A*)il2cpp_codegen_object_new(U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
U3CU3Ec__ctor_m8023CC1FCC9592753697438479FC45E6A87B3745(L_0, NULL);
|
|
((U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var))->___U3CU3E9_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A_il2cpp_TypeInfo_var))->___U3CU3E9_0), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.ScheduledItem/<>c::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8023CC1FCC9592753697438479FC45E6A87B3745 (U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Object__ctor_mE837C6B9FA8C6D5D109F4B2EC885D79919AC0EA2(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ScheduledItem/<>c::<.cctor>b__25_0()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3C_cctorU3Eb__25_0_mE6370DE8D3164D5D959A299573C2AAEAE997BB6E (U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)1;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.ScheduledItem/<>c::<.cctor>b__25_1()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3C_cctorU3Eb__25_1_mB79A7ABB41B38ECB10084BAE6620F824F36C75F1 (U3CU3Ec_t3CF708FC25BE6D8EEE08659F0CB8C9E5E666D18A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return (bool)0;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic push
|
|
#pragma clang diagnostic ignored "-Winvalid-offsetof"
|
|
#pragma clang diagnostic ignored "-Wunused-variable"
|
|
#endif
|
|
// System.Void UnityEngine.UIElements.TimerEventScheduler::Schedule(UnityEngine.UIElements.ScheduledItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerEventScheduler_Schedule_m7A310D89229BAB8E97372681B0EE2747757081CB (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m640BE80A54F96962CAD5B81EBAF63B12C41EA97A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m9A43CF05514E0E3F5B93090A1F743AAF336B4CB2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
int32_t G_B10_0 = 0;
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_0 = ___0_item;
|
|
V_1 = (bool)((((RuntimeObject*)(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0*)L_0) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_1 = V_1;
|
|
if (!L_1)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_2 = ___0_item;
|
|
V_0 = L_2;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_3 = V_0;
|
|
V_2 = (bool)((((RuntimeObject*)(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0*)L_3) == ((RuntimeObject*)(RuntimeObject*)NULL))? 1 : 0);
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_0024;
|
|
}
|
|
}
|
|
{
|
|
NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A* L_5 = (NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_t1429765983D409BD2986508963C98D214E4EBF4A_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_5);
|
|
NotSupportedException__ctor_mE174750CF0247BBB47544FFD71D66BB89630945B(L_5, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralBACE2276995AF12FD78DD720806340BC0BFF5296)), NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_5, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerEventScheduler_Schedule_m7A310D89229BAB8E97372681B0EE2747757081CB_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
bool L_6 = __this->___m_TransactionMode_1;
|
|
V_3 = L_6;
|
|
bool L_7 = V_3;
|
|
if (!L_7)
|
|
{
|
|
goto IL_0091;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_8 = __this->___m_UnscheduleTransactions_3;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_9 = V_0;
|
|
NullCheck(L_8);
|
|
bool L_10;
|
|
L_10 = HashSet_1_Remove_m640BE80A54F96962CAD5B81EBAF63B12C41EA97A(L_8, L_9, HashSet_1_Remove_m640BE80A54F96962CAD5B81EBAF63B12C41EA97A_RuntimeMethod_var);
|
|
V_4 = L_10;
|
|
bool L_11 = V_4;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0045;
|
|
}
|
|
}
|
|
{
|
|
goto IL_008e;
|
|
}
|
|
|
|
IL_0045:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_12 = __this->___m_ScheduledItems_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_13 = V_0;
|
|
NullCheck(L_12);
|
|
bool L_14;
|
|
L_14 = List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA(L_12, L_13, List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA_RuntimeMethod_var);
|
|
if (L_14)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_15 = __this->___m_ScheduleTransactions_2;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_16 = V_0;
|
|
NullCheck(L_15);
|
|
bool L_17;
|
|
L_17 = List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA(L_15, L_16, List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA_RuntimeMethod_var);
|
|
G_B10_0 = ((int32_t)(L_17));
|
|
goto IL_0062;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
G_B10_0 = 1;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
V_5 = (bool)G_B10_0;
|
|
bool L_18 = V_5;
|
|
if (!L_18)
|
|
{
|
|
goto IL_007f;
|
|
}
|
|
}
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_19 = V_0;
|
|
String_t* L_20;
|
|
L_20 = String_Concat_m9DF47FC6E1F8341012CA3FF02993D372AA7A96C9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral90634457536C756A403B8BE954B00F2A226E6010)), L_19, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF80B2579612A29666520F2763654F929C34D90F)), NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_21 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_21);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_21, L_20, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_21, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerEventScheduler_Schedule_m7A310D89229BAB8E97372681B0EE2747757081CB_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_007f:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_22 = __this->___m_ScheduleTransactions_2;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_23 = V_0;
|
|
NullCheck(L_22);
|
|
List_1_Add_m9A43CF05514E0E3F5B93090A1F743AAF336B4CB2_inline(L_22, L_23, List_1_Add_m9A43CF05514E0E3F5B93090A1F743AAF336B4CB2_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_008e:
|
|
{
|
|
goto IL_00cb;
|
|
}
|
|
|
|
IL_0091:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_24 = __this->___m_ScheduledItems_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_25 = V_0;
|
|
NullCheck(L_24);
|
|
bool L_26;
|
|
L_26 = List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA(L_24, L_25, List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA_RuntimeMethod_var);
|
|
V_6 = L_26;
|
|
bool L_27 = V_6;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00bb;
|
|
}
|
|
}
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_28 = V_0;
|
|
String_t* L_29;
|
|
L_29 = String_Concat_m9DF47FC6E1F8341012CA3FF02993D372AA7A96C9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral90634457536C756A403B8BE954B00F2A226E6010)), L_28, ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDF80B2579612A29666520F2763654F929C34D90F)), NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_30 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_30);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_30, L_29, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_30, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerEventScheduler_Schedule_m7A310D89229BAB8E97372681B0EE2747757081CB_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00bb:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_31 = __this->___m_ScheduledItems_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_32 = V_0;
|
|
NullCheck(L_31);
|
|
List_1_Add_m9A43CF05514E0E3F5B93090A1F743AAF336B4CB2_inline(L_31, L_32, List_1_Add_m9A43CF05514E0E3F5B93090A1F743AAF336B4CB2_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_00cb:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TimerEventScheduler::RemovedScheduledItemAt(System.Int32)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerEventScheduler_RemovedScheduledItemAt_m84E566D4F718EA84B91AC073EF04FDEB3E7249BA (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, int32_t ___0_index, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m3CCFCE437A854F170CFAC8127E60DFBA99CCF94D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
int32_t L_0 = ___0_index;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) < ((int32_t)0))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_003c;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_2 = ___0_index;
|
|
int32_t L_3 = __this->___m_LastUpdatedIndex_5;
|
|
V_1 = (bool)((((int32_t)((((int32_t)L_2) > ((int32_t)L_3))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_4 = V_1;
|
|
if (!L_4)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_5 = __this->___m_LastUpdatedIndex_5;
|
|
__this->___m_LastUpdatedIndex_5 = ((int32_t)il2cpp_codegen_subtract(L_5, 1));
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_6 = __this->___m_ScheduledItems_0;
|
|
int32_t L_7 = ___0_index;
|
|
NullCheck(L_6);
|
|
List_1_RemoveAt_m3CCFCE437A854F170CFAC8127E60DFBA99CCF94D(L_6, L_7, List_1_RemoveAt_m3CCFCE437A854F170CFAC8127E60DFBA99CCF94D_RuntimeMethod_var);
|
|
V_2 = (bool)1;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_003c:
|
|
{
|
|
V_2 = (bool)0;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
bool L_8 = V_2;
|
|
return L_8;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TimerEventScheduler::Unschedule(UnityEngine.UIElements.ScheduledItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerEventScheduler_Unschedule_m705469B9ADF6E66EE4303F3F52E02E3AD27B0E26 (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___0_item, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m7FC3F8A1831827111D11EB02AC38E3DB5280677D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* V_0 = NULL;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
bool V_6 = false;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* G_B5_0 = NULL;
|
|
String_t* G_B5_1 = NULL;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* G_B4_0 = NULL;
|
|
String_t* G_B4_1 = NULL;
|
|
String_t* G_B6_0 = NULL;
|
|
String_t* G_B6_1 = NULL;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* G_B13_0 = NULL;
|
|
String_t* G_B13_1 = NULL;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* G_B12_0 = NULL;
|
|
String_t* G_B12_1 = NULL;
|
|
String_t* G_B14_0 = NULL;
|
|
String_t* G_B14_1 = NULL;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* G_B19_0 = NULL;
|
|
String_t* G_B19_1 = NULL;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* G_B18_0 = NULL;
|
|
String_t* G_B18_1 = NULL;
|
|
String_t* G_B20_0 = NULL;
|
|
String_t* G_B20_1 = NULL;
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_0 = ___0_item;
|
|
V_0 = L_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_1 = V_0;
|
|
V_1 = (bool)((!(((RuntimeObject*)(ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0*)L_1) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_2 = V_1;
|
|
if (!L_2)
|
|
{
|
|
goto IL_00dd;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = __this->___m_TransactionMode_1;
|
|
V_2 = L_3;
|
|
bool L_4 = V_2;
|
|
if (!L_4)
|
|
{
|
|
goto IL_00a5;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_5 = __this->___m_UnscheduleTransactions_3;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_6 = V_0;
|
|
NullCheck(L_5);
|
|
bool L_7;
|
|
L_7 = HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164(L_5, L_6, HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164_RuntimeMethod_var);
|
|
V_3 = L_7;
|
|
bool L_8 = V_3;
|
|
if (!L_8)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_9 = V_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_10 = L_9;
|
|
G_B4_0 = L_10;
|
|
G_B4_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAFA6CFE9B8762A09883928241534F54757CBDAE));
|
|
if (L_10)
|
|
{
|
|
G_B5_0 = L_10;
|
|
G_B5_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDAFA6CFE9B8762A09883928241534F54757CBDAE));
|
|
goto IL_003b;
|
|
}
|
|
}
|
|
{
|
|
G_B6_0 = ((String_t*)(NULL));
|
|
G_B6_1 = G_B4_1;
|
|
goto IL_0040;
|
|
}
|
|
|
|
IL_003b:
|
|
{
|
|
NullCheck(G_B5_0);
|
|
String_t* L_11;
|
|
L_11 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B5_0);
|
|
G_B6_0 = L_11;
|
|
G_B6_1 = G_B5_1;
|
|
}
|
|
|
|
IL_0040:
|
|
{
|
|
String_t* L_12;
|
|
L_12 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B6_1, G_B6_0, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_13 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_13);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_13, L_12, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_13, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerEventScheduler_Unschedule_m705469B9ADF6E66EE4303F3F52E02E3AD27B0E26_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_14 = __this->___m_ScheduleTransactions_2;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_15 = V_0;
|
|
NullCheck(L_14);
|
|
bool L_16;
|
|
L_16 = List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207(L_14, L_15, List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207_RuntimeMethod_var);
|
|
V_4 = L_16;
|
|
bool L_17 = V_4;
|
|
if (!L_17)
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_18 = __this->___m_ScheduledItems_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_19 = V_0;
|
|
NullCheck(L_18);
|
|
bool L_20;
|
|
L_20 = List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA(L_18, L_19, List_1_Contains_m388663E8A82ED73DF791292791AD5D532375F6FA_RuntimeMethod_var);
|
|
V_5 = L_20;
|
|
bool L_21 = V_5;
|
|
if (!L_21)
|
|
{
|
|
goto IL_0084;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_22 = __this->___m_UnscheduleTransactions_3;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_23 = V_0;
|
|
NullCheck(L_22);
|
|
bool L_24;
|
|
L_24 = HashSet_1_Add_m7FC3F8A1831827111D11EB02AC38E3DB5280677D(L_22, L_23, HashSet_1_Add_m7FC3F8A1831827111D11EB02AC38E3DB5280677D_RuntimeMethod_var);
|
|
goto IL_00a2;
|
|
}
|
|
|
|
IL_0084:
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_25 = V_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_26 = L_25;
|
|
G_B12_0 = L_26;
|
|
G_B12_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8D361F5B71C5628C159C3A28A7E85708847EFFE9));
|
|
if (L_26)
|
|
{
|
|
G_B13_0 = L_26;
|
|
G_B13_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8D361F5B71C5628C159C3A28A7E85708847EFFE9));
|
|
goto IL_0092;
|
|
}
|
|
}
|
|
{
|
|
G_B14_0 = ((String_t*)(NULL));
|
|
G_B14_1 = G_B12_1;
|
|
goto IL_0097;
|
|
}
|
|
|
|
IL_0092:
|
|
{
|
|
NullCheck(G_B13_0);
|
|
String_t* L_27;
|
|
L_27 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B13_0);
|
|
G_B14_0 = L_27;
|
|
G_B14_1 = G_B13_1;
|
|
}
|
|
|
|
IL_0097:
|
|
{
|
|
String_t* L_28;
|
|
L_28 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B14_1, G_B14_0, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_29 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_29);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_29, L_28, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_29, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerEventScheduler_Unschedule_m705469B9ADF6E66EE4303F3F52E02E3AD27B0E26_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00a2:
|
|
{
|
|
goto IL_00d5;
|
|
}
|
|
|
|
IL_00a5:
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_30 = V_0;
|
|
bool L_31;
|
|
L_31 = TimerEventScheduler_PrivateUnSchedule_m130DD2CB963F357CE9B49C3A6AC1B9323F107A8F(__this, L_30, NULL);
|
|
V_6 = (bool)((((int32_t)L_31) == ((int32_t)0))? 1 : 0);
|
|
bool L_32 = V_6;
|
|
if (!L_32)
|
|
{
|
|
goto IL_00d4;
|
|
}
|
|
}
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_33 = V_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_34 = L_33;
|
|
G_B18_0 = L_34;
|
|
G_B18_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8D361F5B71C5628C159C3A28A7E85708847EFFE9));
|
|
if (L_34)
|
|
{
|
|
G_B19_0 = L_34;
|
|
G_B19_1 = ((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral8D361F5B71C5628C159C3A28A7E85708847EFFE9));
|
|
goto IL_00c4;
|
|
}
|
|
}
|
|
{
|
|
G_B20_0 = ((String_t*)(NULL));
|
|
G_B20_1 = G_B18_1;
|
|
goto IL_00c9;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
NullCheck(G_B19_0);
|
|
String_t* L_35;
|
|
L_35 = VirtualFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, G_B19_0);
|
|
G_B20_0 = L_35;
|
|
G_B20_1 = G_B19_1;
|
|
}
|
|
|
|
IL_00c9:
|
|
{
|
|
String_t* L_36;
|
|
L_36 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(G_B20_1, G_B20_0, NULL);
|
|
ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263* L_37 = (ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263*)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ArgumentException_tAD90411542A20A9C72D5CDA3A84181D8B947A263_il2cpp_TypeInfo_var)));
|
|
NullCheck(L_37);
|
|
ArgumentException__ctor_m026938A67AF9D36BB7ED27F80425D7194B514465(L_37, L_36, NULL);
|
|
IL2CPP_RAISE_MANAGED_EXCEPTION(L_37, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&TimerEventScheduler_Unschedule_m705469B9ADF6E66EE4303F3F52E02E3AD27B0E26_RuntimeMethod_var)));
|
|
}
|
|
|
|
IL_00d4:
|
|
{
|
|
}
|
|
|
|
IL_00d5:
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_38 = V_0;
|
|
NullCheck(L_38);
|
|
VirtualActionInvoker0::Invoke(5 /* System.Void UnityEngine.UIElements.ScheduledItem::OnItemUnscheduled() */, L_38);
|
|
}
|
|
|
|
IL_00dd:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TimerEventScheduler::PrivateUnSchedule(UnityEngine.UIElements.ScheduledItem)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TimerEventScheduler_PrivateUnSchedule_m130DD2CB963F357CE9B49C3A6AC1B9323F107A8F (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* ___0_sItem, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_IndexOf_mEEED9CE5A949BA065D4454468E58ED19A29FD6BA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_0 = __this->___m_ScheduleTransactions_2;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_1 = ___0_sItem;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207(L_0, L_1, List_1_Remove_m10F82313085909994E9BC4B86FCC69ED6BE20207_RuntimeMethod_var);
|
|
if (L_2)
|
|
{
|
|
goto IL_0023;
|
|
}
|
|
}
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_3 = __this->___m_ScheduledItems_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_4 = ___0_sItem;
|
|
NullCheck(L_3);
|
|
int32_t L_5;
|
|
L_5 = List_1_IndexOf_mEEED9CE5A949BA065D4454468E58ED19A29FD6BA(L_3, L_4, List_1_IndexOf_mEEED9CE5A949BA065D4454468E58ED19A29FD6BA_RuntimeMethod_var);
|
|
bool L_6;
|
|
L_6 = TimerEventScheduler_RemovedScheduledItemAt_m84E566D4F718EA84B91AC073EF04FDEB3E7249BA(__this, L_5, NULL);
|
|
G_B3_0 = ((int32_t)(L_6));
|
|
goto IL_0024;
|
|
}
|
|
|
|
IL_0023:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0024:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
goto IL_0027;
|
|
}
|
|
|
|
IL_0027:
|
|
{
|
|
bool L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TimerEventScheduler::UpdateScheduledEvents()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerEventScheduler_UpdateScheduledEvents_mA2F7BE4899DCE345B46B2A5FE702E888EC9C2544 (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m35BF428398BECACE374D67EA6896DA08F567FE03_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mB17C0140040E808247FED5A6BCD003F4E06CE36D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m519472CA4F5205C9F74A0085F727AD1DACDE4578_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_mF80A41EE7AFB7FF3EA9D9AB3E2F23CF08C4D51A0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_m89012095DFDAB8BAC33FE93CBBDB6F85789C17D2_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mD31BCDA731E2A35E1C9757A14592933829BAE8D1_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Clear_m2963B07B3D68EEA4D267108D921637EC41B42B96_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_GetEnumerator_mC9887C2B33596BD62FB04E853D795AEDE819C672_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m83A3BAFC08E530A73E82934C7B1633B5FC197D4C_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m09AAEEC73B4C29BEAD0F8154EC63CA7349128AF4_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_mCC7B17EE4F66C7A70008E775F489B5B8BA375190_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_m546789C7848B16FD8AA7B617CCD288E4330A8482_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
int32_t V_1 = 0;
|
|
int32_t V_2 = 0;
|
|
bool V_3 = false;
|
|
int32_t V_4 = 0;
|
|
int32_t V_5 = 0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* V_6 = NULL;
|
|
bool V_7 = false;
|
|
bool V_8 = false;
|
|
bool V_9 = false;
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE V_10;
|
|
memset((&V_10), 0, sizeof(V_10));
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE V_11;
|
|
memset((&V_11), 0, sizeof(V_11));
|
|
bool V_12 = false;
|
|
bool V_13 = false;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
bool V_16 = false;
|
|
Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393 V_17;
|
|
memset((&V_17), 0, sizeof(V_17));
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* V_18 = NULL;
|
|
Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5 V_19;
|
|
memset((&V_19), 0, sizeof(V_19));
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* V_20 = NULL;
|
|
int32_t G_B16_0 = 0;
|
|
int32_t G_B18_0 = 0;
|
|
{
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_015e:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
__this->___m_TransactionMode_1 = (bool)0;
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_0 = __this->___m_UnscheduleTransactions_3;
|
|
NullCheck(L_0);
|
|
Enumerator_tB83CC1D0D97F2C36C26016A0570BF8FFDF5E9393 L_1;
|
|
L_1 = HashSet_1_GetEnumerator_mC9887C2B33596BD62FB04E853D795AEDE819C672(L_0, HashSet_1_GetEnumerator_mC9887C2B33596BD62FB04E853D795AEDE819C672_RuntimeMethod_var);
|
|
V_17 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0195:
|
|
{// begin finally (depth: 2)
|
|
Enumerator_Dispose_m35BF428398BECACE374D67EA6896DA08F567FE03((&V_17), Enumerator_Dispose_m35BF428398BECACE374D67EA6896DA08F567FE03_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
goto IL_018a_1;
|
|
}
|
|
|
|
IL_0176_1:
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_2;
|
|
L_2 = Enumerator_get_Current_mD31BCDA731E2A35E1C9757A14592933829BAE8D1_inline((&V_17), Enumerator_get_Current_mD31BCDA731E2A35E1C9757A14592933829BAE8D1_RuntimeMethod_var);
|
|
V_18 = L_2;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_3 = V_18;
|
|
bool L_4;
|
|
L_4 = TimerEventScheduler_PrivateUnSchedule_m130DD2CB963F357CE9B49C3A6AC1B9323F107A8F(__this, L_3, NULL);
|
|
}
|
|
|
|
IL_018a_1:
|
|
{
|
|
bool L_5;
|
|
L_5 = Enumerator_MoveNext_m519472CA4F5205C9F74A0085F727AD1DACDE4578((&V_17), Enumerator_MoveNext_m519472CA4F5205C9F74A0085F727AD1DACDE4578_RuntimeMethod_var);
|
|
if (L_5)
|
|
{
|
|
goto IL_0176_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01a4;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01a4:
|
|
{
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_6 = __this->___m_UnscheduleTransactions_3;
|
|
NullCheck(L_6);
|
|
HashSet_1_Clear_m2963B07B3D68EEA4D267108D921637EC41B42B96(L_6, HashSet_1_Clear_m2963B07B3D68EEA4D267108D921637EC41B42B96_RuntimeMethod_var);
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_7 = __this->___m_ScheduleTransactions_2;
|
|
NullCheck(L_7);
|
|
Enumerator_tF1CE2AE69960CBE6B01F5FBEEC677DC8B098F4C5 L_8;
|
|
L_8 = List_1_GetEnumerator_m09AAEEC73B4C29BEAD0F8154EC63CA7349128AF4(L_7, List_1_GetEnumerator_m09AAEEC73B4C29BEAD0F8154EC63CA7349128AF4_RuntimeMethod_var);
|
|
V_19 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_01df:
|
|
{// begin finally (depth: 2)
|
|
Enumerator_Dispose_mB17C0140040E808247FED5A6BCD003F4E06CE36D((&V_19), Enumerator_Dispose_mB17C0140040E808247FED5A6BCD003F4E06CE36D_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 2)
|
|
});
|
|
try
|
|
{// begin try (depth: 2)
|
|
{
|
|
goto IL_01d4_1;
|
|
}
|
|
|
|
IL_01c0_1:
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_9;
|
|
L_9 = Enumerator_get_Current_m89012095DFDAB8BAC33FE93CBBDB6F85789C17D2_inline((&V_19), Enumerator_get_Current_m89012095DFDAB8BAC33FE93CBBDB6F85789C17D2_RuntimeMethod_var);
|
|
V_20 = L_9;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_10 = V_20;
|
|
TimerEventScheduler_Schedule_m7A310D89229BAB8E97372681B0EE2747757081CB(__this, L_10, NULL);
|
|
}
|
|
|
|
IL_01d4_1:
|
|
{
|
|
bool L_11;
|
|
L_11 = Enumerator_MoveNext_mF80A41EE7AFB7FF3EA9D9AB3E2F23CF08C4D51A0((&V_19), Enumerator_MoveNext_mF80A41EE7AFB7FF3EA9D9AB3E2F23CF08C4D51A0_RuntimeMethod_var);
|
|
if (L_11)
|
|
{
|
|
goto IL_01c0_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01ee;
|
|
}
|
|
}// end try (depth: 2)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01ee:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_12 = __this->___m_ScheduleTransactions_2;
|
|
NullCheck(L_12);
|
|
List_1_Clear_m83A3BAFC08E530A73E82934C7B1633B5FC197D4C_inline(L_12, List_1_Clear_m83A3BAFC08E530A73E82934C7B1633B5FC197D4C_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
__this->___m_TransactionMode_1 = (bool)1;
|
|
il2cpp_codegen_runtime_class_init_inline(Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
int64_t L_13;
|
|
L_13 = Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B(NULL);
|
|
V_0 = L_13;
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_14 = __this->___m_ScheduledItems_0;
|
|
NullCheck(L_14);
|
|
int32_t L_15;
|
|
L_15 = List_1_get_Count_mCC7B17EE4F66C7A70008E775F489B5B8BA375190_inline(L_14, List_1_get_Count_mCC7B17EE4F66C7A70008E775F489B5B8BA375190_RuntimeMethod_var);
|
|
V_1 = L_15;
|
|
int32_t L_16 = __this->___m_LastUpdatedIndex_5;
|
|
V_2 = ((int32_t)il2cpp_codegen_add(L_16, 1));
|
|
int32_t L_17 = V_2;
|
|
int32_t L_18 = V_1;
|
|
V_3 = (bool)((((int32_t)((((int32_t)L_17) < ((int32_t)L_18))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_19 = V_3;
|
|
if (!L_19)
|
|
{
|
|
goto IL_0031_1;
|
|
}
|
|
}
|
|
{
|
|
V_2 = 0;
|
|
}
|
|
|
|
IL_0031_1:
|
|
{
|
|
V_4 = 0;
|
|
goto IL_014a_1;
|
|
}
|
|
|
|
IL_0039_1:
|
|
{
|
|
int32_t L_20 = V_2;
|
|
int32_t L_21 = V_4;
|
|
V_5 = ((int32_t)il2cpp_codegen_add(L_20, L_21));
|
|
int32_t L_22 = V_5;
|
|
int32_t L_23 = V_1;
|
|
V_8 = (bool)((((int32_t)((((int32_t)L_22) < ((int32_t)L_23))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_24 = V_8;
|
|
if (!L_24)
|
|
{
|
|
goto IL_0056_1;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_25 = V_5;
|
|
int32_t L_26 = V_1;
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_25, L_26));
|
|
}
|
|
|
|
IL_0056_1:
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_27 = __this->___m_ScheduledItems_0;
|
|
int32_t L_28 = V_5;
|
|
NullCheck(L_27);
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_29;
|
|
L_29 = List_1_get_Item_m546789C7848B16FD8AA7B617CCD288E4330A8482(L_27, L_28, List_1_get_Item_m546789C7848B16FD8AA7B617CCD288E4330A8482_RuntimeMethod_var);
|
|
V_6 = L_29;
|
|
V_7 = (bool)0;
|
|
int64_t L_30 = V_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_31 = V_6;
|
|
NullCheck(L_31);
|
|
int64_t L_32;
|
|
L_32 = ScheduledItem_get_delayMs_m7F18FB89F7CBF65DBB442B14ABF78521ED9C3412_inline(L_31, NULL);
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_33 = V_6;
|
|
NullCheck(L_33);
|
|
int64_t L_34;
|
|
L_34 = ScheduledItem_get_startMs_m9E6A3E6FE5D0ED4888E2E0E496DDF1FEF50D0133_inline(L_33, NULL);
|
|
V_9 = (bool)((((int32_t)((((int64_t)((int64_t)il2cpp_codegen_subtract(L_30, L_32))) < ((int64_t)L_34))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_35 = V_9;
|
|
if (!L_35)
|
|
{
|
|
goto IL_00f3_1;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_initobj((&V_11), sizeof(TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE));
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_36 = V_6;
|
|
NullCheck(L_36);
|
|
int64_t L_37;
|
|
L_37 = ScheduledItem_get_startMs_m9E6A3E6FE5D0ED4888E2E0E496DDF1FEF50D0133_inline(L_36, NULL);
|
|
TimerState_set_start_m53092239224A3793D0ED6BE94BCB2D47BE8A9579_inline((&V_11), L_37, NULL);
|
|
int64_t L_38 = V_0;
|
|
TimerState_set_now_mCB7E8520AC475C4B107AEB4FFBB2C7DB78613C6B_inline((&V_11), L_38, NULL);
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE L_39 = V_11;
|
|
V_10 = L_39;
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_40 = __this->___m_UnscheduleTransactions_3;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_41 = V_6;
|
|
NullCheck(L_40);
|
|
bool L_42;
|
|
L_42 = HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164(L_40, L_41, HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164_RuntimeMethod_var);
|
|
V_12 = (bool)((((int32_t)L_42) == ((int32_t)0))? 1 : 0);
|
|
bool L_43 = V_12;
|
|
if (!L_43)
|
|
{
|
|
goto IL_00c8_1;
|
|
}
|
|
}
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_44 = V_6;
|
|
TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE L_45 = V_10;
|
|
NullCheck(L_44);
|
|
VirtualActionInvoker1< TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE >::Invoke(4 /* System.Void UnityEngine.UIElements.ScheduledItem::PerformTimerUpdate(UnityEngine.UIElements.TimerState) */, L_44, L_45);
|
|
}
|
|
|
|
IL_00c8_1:
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_46 = V_6;
|
|
int64_t L_47 = V_0;
|
|
NullCheck(L_46);
|
|
ScheduledItem_set_startMs_m0953A2B9FF6E45514E90635E6E7763F7DAD6A59C_inline(L_46, L_47, NULL);
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_48 = V_6;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_49 = V_6;
|
|
NullCheck(L_49);
|
|
int64_t L_50;
|
|
L_50 = ScheduledItem_get_intervalMs_m4704C59E1316CE43604B2154D0912A4835C78151_inline(L_49, NULL);
|
|
NullCheck(L_48);
|
|
ScheduledItem_set_delayMs_m941D24B605083F1B2F7285FB04E0A01D4701C3F1_inline(L_48, L_50, NULL);
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_51 = V_6;
|
|
NullCheck(L_51);
|
|
bool L_52;
|
|
L_52 = VirtualFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.UIElements.ScheduledItem::ShouldUnschedule() */, L_51);
|
|
V_13 = L_52;
|
|
bool L_53 = V_13;
|
|
if (!L_53)
|
|
{
|
|
goto IL_00f2_1;
|
|
}
|
|
}
|
|
{
|
|
V_7 = (bool)1;
|
|
}
|
|
|
|
IL_00f2_1:
|
|
{
|
|
}
|
|
|
|
IL_00f3_1:
|
|
{
|
|
bool L_54 = V_7;
|
|
if (L_54)
|
|
{
|
|
goto IL_0111_1;
|
|
}
|
|
}
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_55 = V_6;
|
|
NullCheck(L_55);
|
|
int64_t L_56;
|
|
L_56 = ScheduledItem_get_endTimeMs_m9E3111F4A4104BC573DDF07C51C13DF3B8C350CE_inline(L_55, NULL);
|
|
if ((((int64_t)L_56) <= ((int64_t)((int64_t)0))))
|
|
{
|
|
goto IL_010e_1;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_57 = V_0;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_58 = V_6;
|
|
NullCheck(L_58);
|
|
int64_t L_59;
|
|
L_59 = ScheduledItem_get_endTimeMs_m9E3111F4A4104BC573DDF07C51C13DF3B8C350CE_inline(L_58, NULL);
|
|
G_B16_0 = ((((int64_t)L_57) > ((int64_t)L_59))? 1 : 0);
|
|
goto IL_010f_1;
|
|
}
|
|
|
|
IL_010e_1:
|
|
{
|
|
G_B16_0 = 0;
|
|
}
|
|
|
|
IL_010f_1:
|
|
{
|
|
G_B18_0 = G_B16_0;
|
|
goto IL_0112_1;
|
|
}
|
|
|
|
IL_0111_1:
|
|
{
|
|
G_B18_0 = 1;
|
|
}
|
|
|
|
IL_0112_1:
|
|
{
|
|
V_14 = (bool)G_B18_0;
|
|
bool L_60 = V_14;
|
|
if (!L_60)
|
|
{
|
|
goto IL_013b_1;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_61 = __this->___m_UnscheduleTransactions_3;
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_62 = V_6;
|
|
NullCheck(L_61);
|
|
bool L_63;
|
|
L_63 = HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164(L_61, L_62, HashSet_1_Contains_mFBEF9DEF3C32A5F529B2A85599558A3780EEC164_RuntimeMethod_var);
|
|
V_15 = (bool)((((int32_t)L_63) == ((int32_t)0))? 1 : 0);
|
|
bool L_64 = V_15;
|
|
if (!L_64)
|
|
{
|
|
goto IL_013a_1;
|
|
}
|
|
}
|
|
{
|
|
ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* L_65 = V_6;
|
|
TimerEventScheduler_Unschedule_m705469B9ADF6E66EE4303F3F52E02E3AD27B0E26(__this, L_65, NULL);
|
|
}
|
|
|
|
IL_013a_1:
|
|
{
|
|
}
|
|
|
|
IL_013b_1:
|
|
{
|
|
int32_t L_66 = V_5;
|
|
__this->___m_LastUpdatedIndex_5 = L_66;
|
|
int32_t L_67 = V_4;
|
|
V_4 = ((int32_t)il2cpp_codegen_add(L_67, 1));
|
|
}
|
|
|
|
IL_014a_1:
|
|
{
|
|
int32_t L_68 = V_4;
|
|
int32_t L_69 = V_1;
|
|
V_16 = (bool)((((int32_t)L_68) < ((int32_t)L_69))? 1 : 0);
|
|
bool L_70 = V_16;
|
|
if (L_70)
|
|
{
|
|
goto IL_0039_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_01fc;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_01fc:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TimerEventScheduler::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TimerEventScheduler__ctor_m6AD7A5372A6E2E9C9D87E724B529FDED30AA5178 (TimerEventScheduler_tAF33EE8B1C54425235E4893B0C5088629FBE7862* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m9471E480C842C124702570CB5444B1979B042FFF_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mEF41BCB48F34C2EF8A206F7BB1A9F32AFD1FFB84_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_0 = (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E*)il2cpp_codegen_object_new(List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
List_1__ctor_mEF41BCB48F34C2EF8A206F7BB1A9F32AFD1FFB84(L_0, List_1__ctor_mEF41BCB48F34C2EF8A206F7BB1A9F32AFD1FFB84_RuntimeMethod_var);
|
|
__this->___m_ScheduledItems_0 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ScheduledItems_0), (void*)L_0);
|
|
List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E* L_1 = (List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E*)il2cpp_codegen_object_new(List_1_t737146299DEBBD1D6BD15CA9BBC3A4F80931C59E_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_mEF41BCB48F34C2EF8A206F7BB1A9F32AFD1FFB84(L_1, List_1__ctor_mEF41BCB48F34C2EF8A206F7BB1A9F32AFD1FFB84_RuntimeMethod_var);
|
|
__this->___m_ScheduleTransactions_2 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_ScheduleTransactions_2), (void*)L_1);
|
|
HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45* L_2 = (HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45*)il2cpp_codegen_object_new(HashSet_1_tF6058CA088C8647427AA5C209C6D23F523EF0E45_il2cpp_TypeInfo_var);
|
|
NullCheck(L_2);
|
|
HashSet_1__ctor_m9471E480C842C124702570CB5444B1979B042FFF(L_2, HashSet_1__ctor_m9471E480C842C124702570CB5444B1979B042FFF_RuntimeMethod_var);
|
|
__this->___m_UnscheduleTransactions_3 = L_2;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_UnscheduleTransactions_3), (void*)L_2);
|
|
__this->___disableThrottling_4 = (bool)0;
|
|
__this->___m_LastUpdatedIndex_5 = (-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
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualElementAnimationSystem::get_profilerMarker()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD VisualElementAnimationSystem_get_profilerMarker_m709A297A94868F8905103045E01FEDEDF5A37194 (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_ProfilerMarker_7;
|
|
return L_0;
|
|
}
|
|
}
|
|
// Unity.Profiling.ProfilerMarker UnityEngine.UIElements.VisualElementAnimationSystem::get_stylePropertyAnimationProfilerMarker()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD VisualElementAnimationSystem_get_stylePropertyAnimationProfilerMarker_m9D89C41EB40463C80925CC5E169FD450EFE22DC9 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_StylePropertyAnimationProfilerMarker_9;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::UnregisterAnimation(UnityEngine.UIElements.Experimental.IValueAnimationUpdate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem_UnregisterAnimation_mF3F7EC1A1CD25B722E2BAD13B94699D0D96325EF (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, RuntimeObject* ___0_anim, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* L_0 = __this->___m_Animations_2;
|
|
RuntimeObject* L_1 = ___0_anim;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297(L_0, L_1, HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297_RuntimeMethod_var);
|
|
__this->___m_IterationListDirty_5 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::UnregisterAnimations(System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem_UnregisterAnimations_m8165EAA2E7DCD02E8C2F21777AD83762B79D13E9 (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ___0_anims, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* L_0 = ___0_anims;
|
|
NullCheck(L_0);
|
|
Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 L_1;
|
|
L_1 = List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D(L_0, List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902((&V_0), Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0020_1;
|
|
}
|
|
|
|
IL_000b_1:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_inline((&V_0), Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* L_3 = __this->___m_Animations_2;
|
|
RuntimeObject* L_4 = V_1;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297(L_3, L_4, HashSet_1_Remove_m34AD61534763646E785918560C227C4B3EBE0297_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0020_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD((&V_0), Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_000b_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
__this->___m_IterationListDirty_5 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::RegisterAnimation(UnityEngine.UIElements.Experimental.IValueAnimationUpdate)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem_RegisterAnimation_mD201284048B8D5C016BE7E1C25DCFAFFA9FF9887 (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, RuntimeObject* ___0_anim, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* L_0 = __this->___m_Animations_2;
|
|
RuntimeObject* L_1 = ___0_anim;
|
|
NullCheck(L_0);
|
|
bool L_2;
|
|
L_2 = HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E(L_0, L_1, HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E_RuntimeMethod_var);
|
|
__this->___m_HasNewAnimations_4 = (bool)1;
|
|
__this->___m_IterationListDirty_5 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::RegisterAnimations(System.Collections.Generic.List`1<UnityEngine.UIElements.Experimental.IValueAnimationUpdate>)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem_RegisterAnimations_mED8F7390EBFCFCD06A6BA63C82ABBAB445C55F2B (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* ___0_anims, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
RuntimeObject* V_1 = NULL;
|
|
{
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* L_0 = ___0_anims;
|
|
NullCheck(L_0);
|
|
Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 L_1;
|
|
L_1 = List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D(L_0, List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var);
|
|
V_0 = L_1;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_002b:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902((&V_0), Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_0020_1;
|
|
}
|
|
|
|
IL_000b_1:
|
|
{
|
|
RuntimeObject* L_2;
|
|
L_2 = Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_inline((&V_0), Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var);
|
|
V_1 = L_2;
|
|
HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* L_3 = __this->___m_Animations_2;
|
|
RuntimeObject* L_4 = V_1;
|
|
NullCheck(L_3);
|
|
bool L_5;
|
|
L_5 = HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E(L_3, L_4, HashSet_1_Add_m1C0A0F097F468FE3FEB82628C5BDF86D4A249E9E_RuntimeMethod_var);
|
|
}
|
|
|
|
IL_0020_1:
|
|
{
|
|
bool L_6;
|
|
L_6 = Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD((&V_0), Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var);
|
|
if (L_6)
|
|
{
|
|
goto IL_000b_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_003a;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_003a:
|
|
{
|
|
__this->___m_HasNewAnimations_4 = (bool)1;
|
|
__this->___m_IterationListDirty_5 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::Update()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem_Update_m61AF78A15FB72BFEB2BF04840024627EBAD196C5 (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerable_ToList_TisIValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_m7BE88426837502AF975B5CBB79C61817A2AF7179_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int64_t V_0 = 0;
|
|
RuntimeObject* V_1 = NULL;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
RuntimeObject* V_5 = NULL;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 V_6;
|
|
memset((&V_6), 0, sizeof(V_6));
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD V_7;
|
|
memset((&V_7), 0, sizeof(V_7));
|
|
int32_t G_B5_0 = 0;
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(Panel_t2B0DCF68A7A5EBC347FAE66F046EA98B53AF1AB9_il2cpp_TypeInfo_var);
|
|
int64_t L_0;
|
|
L_0 = Panel_TimeSinceStartupMs_mEEA20B197A3A4342A6CBB8412CF9040C815FEB7B(NULL);
|
|
V_0 = L_0;
|
|
bool L_1 = __this->___m_IterationListDirty_5;
|
|
V_2 = L_1;
|
|
bool L_2 = V_2;
|
|
if (!L_2)
|
|
{
|
|
goto IL_002b;
|
|
}
|
|
}
|
|
{
|
|
HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* L_3 = __this->___m_Animations_2;
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* L_4;
|
|
L_4 = Enumerable_ToList_TisIValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_m7BE88426837502AF975B5CBB79C61817A2AF7179(L_3, Enumerable_ToList_TisIValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_m7BE88426837502AF975B5CBB79C61817A2AF7179_RuntimeMethod_var);
|
|
__this->___m_IterationList_3 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_IterationList_3), (void*)L_4);
|
|
__this->___m_IterationListDirty_5 = (bool)0;
|
|
}
|
|
|
|
IL_002b:
|
|
{
|
|
bool L_5 = __this->___m_HasNewAnimations_4;
|
|
if (L_5)
|
|
{
|
|
goto IL_0041;
|
|
}
|
|
}
|
|
{
|
|
int64_t L_6 = __this->___lastUpdate_10;
|
|
int64_t L_7 = V_0;
|
|
G_B5_0 = ((((int32_t)((((int64_t)L_6) == ((int64_t)L_7))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0042;
|
|
}
|
|
|
|
IL_0041:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_0042:
|
|
{
|
|
V_3 = (bool)G_B5_0;
|
|
bool L_8 = V_3;
|
|
if (!L_8)
|
|
{
|
|
goto IL_0094;
|
|
}
|
|
}
|
|
{
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* L_9 = __this->___m_IterationList_3;
|
|
NullCheck(L_9);
|
|
Enumerator_t54FBE51E1E7597CC88424504B71922EE44B2AF04 L_10;
|
|
L_10 = List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D(L_9, List_1_GetEnumerator_mE6F3076D89344FC2995B486A9C47674551D68D5D_RuntimeMethod_var);
|
|
V_4 = L_10;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0076:
|
|
{// begin finally (depth: 1)
|
|
Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902((&V_4), Enumerator_Dispose_m4748880E0D5EEB4A56CBD6A5DB7A35E7DD46B902_RuntimeMethod_var);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
{
|
|
goto IL_006b_1;
|
|
}
|
|
|
|
IL_0057_1:
|
|
{
|
|
RuntimeObject* L_11;
|
|
L_11 = Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_inline((&V_4), Enumerator_get_Current_mDC3A08B923D56A2683663018E71ECB5906B92563_RuntimeMethod_var);
|
|
V_5 = L_11;
|
|
RuntimeObject* L_12 = V_5;
|
|
int64_t L_13 = V_0;
|
|
NullCheck(L_12);
|
|
InterfaceActionInvoker1< int64_t >::Invoke(0 /* System.Void UnityEngine.UIElements.Experimental.IValueAnimationUpdate::Tick(System.Int64) */, IValueAnimationUpdate_tD91305A3A7CACF4703A3FCB06D1D3349D4DDCE5B_il2cpp_TypeInfo_var, L_12, L_13);
|
|
}
|
|
|
|
IL_006b_1:
|
|
{
|
|
bool L_14;
|
|
L_14 = Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD((&V_4), Enumerator_MoveNext_m5B0ECBA1E9651467D7B7B233F99F906B30EDB9FD_RuntimeMethod_var);
|
|
if (L_14)
|
|
{
|
|
goto IL_0057_1;
|
|
}
|
|
}
|
|
{
|
|
goto IL_0085;
|
|
}
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0085:
|
|
{
|
|
__this->___m_HasNewAnimations_4 = (bool)0;
|
|
int64_t L_15 = V_0;
|
|
__this->___lastUpdate_10 = L_15;
|
|
}
|
|
|
|
IL_0094:
|
|
{
|
|
BaseVisualElementPanel_tE3811F3D1474B72CB6CD5BCEECFF5B5CBEC1E303* L_16;
|
|
L_16 = BaseVisualTreeUpdater_get_panel_mF6239BD11A1C6EDD79F9B012ABADCAFB1408FB22(__this, NULL);
|
|
NullCheck(L_16);
|
|
RuntimeObject* L_17;
|
|
L_17 = VirtualFuncInvoker0< RuntimeObject* >::Invoke(39 /* UnityEngine.UIElements.IStylePropertyAnimationSystem UnityEngine.UIElements.BaseVisualElementPanel::get_styleAnimationSystem() */, L_16);
|
|
V_1 = L_17;
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_18;
|
|
L_18 = VisualElementAnimationSystem_get_stylePropertyAnimationProfilerMarker_m9D89C41EB40463C80925CC5E169FD450EFE22DC9_inline(NULL);
|
|
V_7 = L_18;
|
|
AutoScope_tFB983697E28885CB10FFDB92D7EFD0615AEF3139 L_19;
|
|
L_19 = ProfilerMarker_Auto_m133FA724EB95D16187B37D2C8A501D7E989B1F8D_inline((&V_7), NULL);
|
|
V_6 = L_19;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_00bb:
|
|
{// begin finally (depth: 1)
|
|
AutoScope_Dispose_mED763F3F51261EF8FB79DB32CD06E0A3F6C40481_inline((&V_6), NULL);
|
|
return;
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
RuntimeObject* L_20 = V_1;
|
|
NullCheck(L_20);
|
|
InterfaceActionInvoker0::Invoke(17 /* System.Void UnityEngine.UIElements.IStylePropertyAnimationSystem::Update() */, IStylePropertyAnimationSystem_t120D77C8BFB230CA7DBF45D3FB1F5AFBA0504DE2_il2cpp_TypeInfo_var, L_20);
|
|
goto IL_00ca;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_00ca:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::OnVersionChanged(UnityEngine.UIElements.VisualElement,UnityEngine.UIElements.VersionChangeType)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem_OnVersionChanged_mBA0237C2CFF6EE2FD5945B165A773026EA404B0D (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* ___0_ve, int32_t ___1_versionChangeType, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem__ctor_m2EE4E58ABBBFF81DB0D8EED972ABC2DDB5E131B4 (VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1__ctor_m1EF60485B3C694B2264B65E4532B9AA823C9294A_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m4F0233457AF4EB4A3440E7DF64AEB37FA4FB8BCA_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_t96E9133B70FB6765E6B138E810D33E18901715DA_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE* L_0 = (HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE*)il2cpp_codegen_object_new(HashSet_1_t1E83A872D720F688A22A53879E9C48E0DE80B3BE_il2cpp_TypeInfo_var);
|
|
NullCheck(L_0);
|
|
HashSet_1__ctor_m1EF60485B3C694B2264B65E4532B9AA823C9294A(L_0, HashSet_1__ctor_m1EF60485B3C694B2264B65E4532B9AA823C9294A_RuntimeMethod_var);
|
|
__this->___m_Animations_2 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Animations_2), (void*)L_0);
|
|
List_1_t96E9133B70FB6765E6B138E810D33E18901715DA* L_1 = (List_1_t96E9133B70FB6765E6B138E810D33E18901715DA*)il2cpp_codegen_object_new(List_1_t96E9133B70FB6765E6B138E810D33E18901715DA_il2cpp_TypeInfo_var);
|
|
NullCheck(L_1);
|
|
List_1__ctor_m4F0233457AF4EB4A3440E7DF64AEB37FA4FB8BCA(L_1, List_1__ctor_m4F0233457AF4EB4A3440E7DF64AEB37FA4FB8BCA_RuntimeMethod_var);
|
|
__this->___m_IterationList_3 = L_1;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_IterationList_3), (void*)L_1);
|
|
__this->___m_HasNewAnimations_4 = (bool)0;
|
|
__this->___m_IterationListDirty_5 = (bool)0;
|
|
BaseVisualTreeUpdater__ctor_m64962BB0B4E0EE94292901B60BC5BA826FF5301B(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.VisualElementAnimationSystem::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VisualElementAnimationSystem__cctor_m29E8E7521BC7FC47059636EAC7F12110438DA093 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral17CD413977AD843771733C48B6EA198129F49690);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral35BFF0C070809528BCAE19C360FEF7D619AE8EF3);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_Description_6 = _stringLiteral35BFF0C070809528BCAE19C360FEF7D619AE8EF3;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_Description_6), (void*)_stringLiteral35BFF0C070809528BCAE19C360FEF7D619AE8EF3);
|
|
String_t* L_0 = ((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_Description_6;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_1;
|
|
memset((&L_1), 0, sizeof(L_1));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_1), L_0, /*hidden argument*/NULL);
|
|
((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_ProfilerMarker_7 = L_1;
|
|
((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_StylePropertyAnimationDescription_8 = _stringLiteral17CD413977AD843771733C48B6EA198129F49690;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_StylePropertyAnimationDescription_8), (void*)_stringLiteral17CD413977AD843771733C48B6EA198129F49690);
|
|
String_t* L_2 = ((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_StylePropertyAnimationDescription_8;
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_3;
|
|
memset((&L_3), 0, sizeof(L_3));
|
|
ProfilerMarker__ctor_mDD68B0A8B71E0301F592AF8891560150E55699C8_inline((&L_3), L_2, /*hidden argument*/NULL);
|
|
((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_StylePropertyAnimationProfilerMarker_9 = 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.TextElement::.ctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement__ctor_mB52112242702EEDC8E13BF444AB19E97329B7CE5 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_OnGenerateVisualContent_mB4B04A8CEE610D66401684E7F293C0C41481A9A3_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_OnGeometryChanged_m315369635F1BD57A1E1A1B7E0C64B020B1C68B81_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
__this->___m_Text_70 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Text_70), (void*)L_0);
|
|
__this->___m_EnableRichText_71 = (bool)1;
|
|
__this->___m_DisplayTooltipWhenElided_72 = (bool)1;
|
|
__this->___m_UpdateTextParams_76 = (bool)1;
|
|
__this->___m_PreviousTextParamsHashCode_78 = ((int32_t)2147483647LL);
|
|
BindableElement__ctor_m827E1D7852F342FCC582E31E9857F6976D958454(__this, NULL);
|
|
VisualElement_set_requireMeasureFunction_mE3D5BF29B294B0BBB7422D53743A5A5B6E35178B(__this, (bool)1, NULL);
|
|
il2cpp_codegen_runtime_class_init_inline(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
String_t* L_1 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields*)il2cpp_codegen_static_fields_for(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var))->___ussClassName_67;
|
|
VisualElement_AddToClassList_mAF0DD8D8CFD5130229A0471DD260E01ED82117F1(__this, L_1, NULL);
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* L_2;
|
|
L_2 = VisualElement_get_generateVisualContent_m11390D5634144E49934046B08681F7B7F0A94986_inline(__this, NULL);
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* L_3 = (Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B*)il2cpp_codegen_object_new(Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var);
|
|
NullCheck(L_3);
|
|
Action_1__ctor_m5C07588C369385A2FE8666A6C07F46762049C6AC(L_3, __this, (intptr_t)((void*)TextElement_OnGenerateVisualContent_mB4B04A8CEE610D66401684E7F293C0C41481A9A3_RuntimeMethod_var), NULL);
|
|
Delegate_t* L_4;
|
|
L_4 = Delegate_Combine_m1F725AEF318BE6F0426863490691A6F4606E7D00(L_2, L_3, NULL);
|
|
VisualElement_set_generateVisualContent_m1D95FEC130DF500C82FAAC2537BBF7FEE2519C15_inline(__this, ((Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B*)Castclass((RuntimeObject*)L_4, Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B_il2cpp_TypeInfo_var)), NULL);
|
|
EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30* L_5 = (EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30*)il2cpp_codegen_object_new(EventCallback_1_t435839AFF4474F7EAE0AA8A59F737E798CEAFD30_il2cpp_TypeInfo_var);
|
|
NullCheck(L_5);
|
|
EventCallback_1__ctor_mF06BFBEB6C98B9A486C131579BD98388B38997F5(L_5, __this, (intptr_t)((void*)TextElement_OnGeometryChanged_m315369635F1BD57A1E1A1B7E0C64B020B1C68B81_RuntimeMethod_var), NULL);
|
|
CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F(__this, L_5, 0, CallbackEventHandler_RegisterCallback_TisGeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A_m34764823E27F27068C7C0E4F34879B1C395A117F_RuntimeMethod_var);
|
|
return;
|
|
}
|
|
}
|
|
// UnityEngine.UIElements.ITextHandle UnityEngine.UIElements.TextElement::get_textHandle()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TextElement_get_textHandle_m0CEE611EE48A71915EE05B453C6500B281E9F697 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
RuntimeObject* V_0 = NULL;
|
|
{
|
|
RuntimeObject* L_0 = __this->___m_TextHandle_68;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
RuntimeObject* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::set_textHandle(UnityEngine.UIElements.ITextHandle)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_set_textHandle_m997A012C3E89598B104CE7E7E67D13A79FF1CB45 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, RuntimeObject* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = ___0_value;
|
|
__this->___m_TextHandle_68 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_TextHandle_68), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::HandleEvent(UnityEngine.UIElements.EventBase)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_HandleEvent_m7D61A7C5F6893F8264BE726F65F9157618D737E9 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* ___0_evt, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28* V_0 = NULL;
|
|
bool V_1 = false;
|
|
DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496* V_2 = NULL;
|
|
bool V_3 = false;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B8_0 = 0;
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_0 = ___0_evt;
|
|
NullCheck(L_0);
|
|
int64_t L_1;
|
|
L_1 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_0);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_t3BDDADBC1D58267000128C31AD0EB2BAAAEC6F22_il2cpp_TypeInfo_var);
|
|
int64_t L_2;
|
|
L_2 = EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5(EventBase_1_TypeId_m5FD7F01BE49B21E4369412015B25DE81FF705AF5_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_1) == ((uint64_t)L_2))))
|
|
{
|
|
goto IL_001b;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_3 = ___0_evt;
|
|
V_0 = ((AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28*)IsInstClass((RuntimeObject*)L_3, AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28_il2cpp_TypeInfo_var));
|
|
AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28* L_4 = V_0;
|
|
G_B3_0 = ((!(((RuntimeObject*)(AttachToPanelEvent_t95C0BC3DD37F324A7816CB2574B56D976C932B28*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_001c;
|
|
}
|
|
|
|
IL_001b:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_001c:
|
|
{
|
|
V_1 = (bool)G_B3_0;
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(TextCoreHandle_t06766751C4FA547A46F83A8E3DD33A6FF2EBE4B5_il2cpp_TypeInfo_var);
|
|
RuntimeObject* L_6;
|
|
L_6 = TextCoreHandle_New_m6352FFD6411FDBCC061B47D293700E24B98F8C96(NULL);
|
|
TextElement_set_textHandle_m997A012C3E89598B104CE7E7E67D13A79FF1CB45(__this, L_6, NULL);
|
|
goto IL_0051;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_7 = ___0_evt;
|
|
NullCheck(L_7);
|
|
int64_t L_8;
|
|
L_8 = VirtualFuncInvoker0< int64_t >::Invoke(5 /* System.Int64 UnityEngine.UIElements.EventBase::get_eventTypeId() */, L_7);
|
|
il2cpp_codegen_runtime_class_init_inline(EventBase_1_tE40FE9F8AB3B020689A80981F4566336B3EFA9B6_il2cpp_TypeInfo_var);
|
|
int64_t L_9;
|
|
L_9 = EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0(EventBase_1_TypeId_mC2FBEA9560D3D295C7EB33322052F2DC749A3CA0_RuntimeMethod_var);
|
|
if ((!(((uint64_t)L_8) == ((uint64_t)L_9))))
|
|
{
|
|
goto IL_004a;
|
|
}
|
|
}
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_10 = ___0_evt;
|
|
V_2 = ((DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496*)IsInstClass((RuntimeObject*)L_10, DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496_il2cpp_TypeInfo_var));
|
|
DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496* L_11 = V_2;
|
|
G_B8_0 = ((!(((RuntimeObject*)(DetachFromPanelEvent_t5E26427B0E6AF96F0C522D1FCEDDC078D755E496*)L_11) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
goto IL_004b;
|
|
}
|
|
|
|
IL_004a:
|
|
{
|
|
G_B8_0 = 0;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
V_3 = (bool)G_B8_0;
|
|
bool L_12 = V_3;
|
|
if (!L_12)
|
|
{
|
|
goto IL_0051;
|
|
}
|
|
}
|
|
{
|
|
}
|
|
|
|
IL_0051:
|
|
{
|
|
EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* L_13 = ___0_evt;
|
|
CallbackEventHandler_HandleEvent_m730E6D7CF91DB205557C39A7BED1874671FFCEE2(__this, L_13, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::OnGeometryChanged(UnityEngine.UIElements.GeometryChangedEvent)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_OnGeometryChanged_m315369635F1BD57A1E1A1B7E0C64B020B1C68B81 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, GeometryChangedEvent_tB4A621001850F337A676F8CC27F172B8ADB22A9A* ___0_e, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
TextElement_UpdateVisibleText_m7F0346F28CC5E5463CA517C2674C209107F0BD19(__this, NULL);
|
|
return;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.TextElement::get_text()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextElement_get_text_m0B1785DE787C2C41DE44F0A5CA1B536FC74B3F9D (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = InterfaceFuncInvoker0< String_t* >::Invoke(0 /* T UnityEngine.UIElements.INotifyValueChanged`1<System.String>::get_value() */, INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var, __this);
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
String_t* L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::set_text(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_set_text_m627742F8A34385E649A80A8D513348300AC6CDE9 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
InterfaceActionInvoker1< String_t* >::Invoke(1 /* System.Void UnityEngine.UIElements.INotifyValueChanged`1<System.String>::set_value(T) */, INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var, __this, L_0);
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextElement::get_enableRichText()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_get_enableRichText_mEE9AF3B9D18988A715A5A648FC53511ECC8EB75B (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_EnableRichText_71;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::set_enableRichText(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_set_enableRichText_m5611B38A755963EAD7F9873847930EAB20A9A1ED (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_EnableRichText_71;
|
|
bool L_1 = ___0_value;
|
|
V_0 = (bool)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
goto IL_001e;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
bool L_3 = ___0_value;
|
|
__this->___m_EnableRichText_71 = L_3;
|
|
VisualElement_MarkDirtyRepaint_mB708A0EAFDE7A535A3E4131FF99F6ED6C61490B6(__this, NULL);
|
|
}
|
|
|
|
IL_001e:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextElement::get_displayTooltipWhenElided()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_get_displayTooltipWhenElided_mD6579F23BD489FD9C4D096B7C6A6A8B14558689F (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_DisplayTooltipWhenElided_72;
|
|
V_0 = L_0;
|
|
goto IL_000a;
|
|
}
|
|
|
|
IL_000a:
|
|
{
|
|
bool L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::set_displayTooltipWhenElided(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_set_displayTooltipWhenElided_m2E431B47A8C470462557577072449AE8932A338D (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
{
|
|
bool L_0 = __this->___m_DisplayTooltipWhenElided_72;
|
|
bool L_1 = ___0_value;
|
|
V_0 = (bool)((((int32_t)((((int32_t)L_0) == ((int32_t)L_1))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0028;
|
|
}
|
|
}
|
|
{
|
|
bool L_3 = ___0_value;
|
|
__this->___m_DisplayTooltipWhenElided_72 = L_3;
|
|
TextElement_UpdateVisibleText_m7F0346F28CC5E5463CA517C2674C209107F0BD19(__this, NULL);
|
|
VisualElement_MarkDirtyRepaint_mB708A0EAFDE7A535A3E4131FF99F6ED6C61490B6(__this, NULL);
|
|
}
|
|
|
|
IL_0028:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextElement::get_isElided()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_get_isElided_m338FA73595E99F8ED578C39CB0BB380067B73026 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisElidedU3Ek__BackingField_73;
|
|
return L_0;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::set_isElided(System.Boolean)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_set_isElided_m5B22A9B2045357427FC695C27B6A775C58A27D60 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisElidedU3Ek__BackingField_73 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::OnGenerateVisualContent(UnityEngine.UIElements.MeshGenerationContext)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_OnGenerateVisualContent_mB4B04A8CEE610D66401684E7F293C0C41481A9A3 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62* ___0_mgc, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
TextElement_UpdateVisibleText_m7F0346F28CC5E5463CA517C2674C209107F0BD19(__this, NULL);
|
|
MeshGenerationContext_tD1BD8DB52C7126A7987DE5DF1A4AF47A906EAF62* L_0 = ___0_mgc;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_1 = __this->___m_TextParams_77;
|
|
RuntimeObject* L_2 = __this->___m_TextHandle_68;
|
|
float L_3;
|
|
L_3 = VisualElement_get_scaledPixelsPerPoint_m44984C56A992E21CE90E3DC15136DDF7DCDA11CD(__this, NULL);
|
|
MeshGenerationContextUtils_Text_m752741AE51EB6589AE321EAA114AE868D1B55A29(L_0, L_1, L_2, L_3, NULL);
|
|
bool L_4;
|
|
L_4 = TextElement_ShouldElide_m07D91819BEF35424692BCDBB903B26A3C6A3C005(__this, NULL);
|
|
if (!L_4)
|
|
{
|
|
goto IL_0031;
|
|
}
|
|
}
|
|
{
|
|
bool L_5;
|
|
L_5 = TextElement_TextLibraryCanElide_m90DF935AD4CC17D61DCCF99C1769C2BE9D3EFBAA(__this, NULL);
|
|
G_B3_0 = ((int32_t)(L_5));
|
|
goto IL_0032;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_6 = V_0;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0048;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_7;
|
|
L_7 = TextElement_get_textHandle_m0CEE611EE48A71915EE05B453C6500B281E9F697(__this, NULL);
|
|
NullCheck(L_7);
|
|
bool L_8;
|
|
L_8 = InterfaceFuncInvoker0< bool >::Invoke(6 /* System.Boolean UnityEngine.UIElements.ITextHandle::IsElided() */, ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var, L_7);
|
|
TextElement_set_isElided_m5B22A9B2045357427FC695C27B6A775C58A27D60_inline(__this, L_8, NULL);
|
|
}
|
|
|
|
IL_0048:
|
|
{
|
|
TextElement_UpdateTooltip_m3CD28922152477FF2FE2AF329FF2897F8E779CAD(__this, NULL);
|
|
__this->___m_UpdateTextParams_76 = (bool)1;
|
|
return;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.TextElement::ElideText(System.String,System.String,System.Single,UnityEngine.UIElements.TextOverflowPosition)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextElement_ElideText_mF95161E8B1CF647CF4D6F2EA9F3C71BF932C537D (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, String_t* ___0_drawText, String_t* ___1_ellipsisText, float ___2_width, int32_t ___3_textOverflowPosition, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_2;
|
|
memset((&V_2), 0, sizeof(V_2));
|
|
String_t* V_3 = NULL;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_4;
|
|
memset((&V_4), 0, sizeof(V_4));
|
|
int32_t V_5 = 0;
|
|
int32_t V_6 = 0;
|
|
String_t* V_7 = NULL;
|
|
int32_t V_8 = 0;
|
|
int32_t V_9 = 0;
|
|
int32_t V_10 = 0;
|
|
bool V_11 = false;
|
|
bool V_12 = false;
|
|
String_t* V_13 = NULL;
|
|
bool V_14 = false;
|
|
bool V_15 = false;
|
|
bool V_16 = false;
|
|
bool V_17 = false;
|
|
bool V_18 = false;
|
|
bool V_19 = false;
|
|
bool V_20 = false;
|
|
bool V_21 = false;
|
|
bool V_22 = false;
|
|
bool V_23 = false;
|
|
bool V_24 = false;
|
|
bool V_25 = false;
|
|
bool V_26 = false;
|
|
int32_t G_B5_0 = 0;
|
|
String_t* G_B10_0 = NULL;
|
|
int32_t G_B15_0 = 0;
|
|
int32_t G_B19_0 = 0;
|
|
String_t* G_B28_0 = NULL;
|
|
String_t* G_B30_0 = NULL;
|
|
String_t* G_B30_1 = NULL;
|
|
String_t* G_B29_0 = NULL;
|
|
String_t* G_B29_1 = NULL;
|
|
String_t* G_B31_0 = NULL;
|
|
String_t* G_B31_1 = NULL;
|
|
String_t* G_B31_2 = NULL;
|
|
int32_t G_B44_0 = 0;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = VisualElement_get_resolvedStyle_m3885B7534A94E0BCE024A9621465A0F273DA0AEB(__this, NULL);
|
|
NullCheck(L_0);
|
|
float L_1;
|
|
L_1 = InterfaceFuncInvoker0< float >::Invoke(30 /* System.Single UnityEngine.UIElements.IResolvedStyle::get_paddingRight() */, IResolvedStyle_t6A3530BA6147B091C278593F21F86B09CD42BE89_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
float L_2 = V_0;
|
|
bool L_3;
|
|
L_3 = Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline(L_2, NULL);
|
|
V_11 = L_3;
|
|
bool L_4 = V_11;
|
|
if (!L_4)
|
|
{
|
|
goto IL_001f;
|
|
}
|
|
}
|
|
{
|
|
V_0 = (0.0f);
|
|
}
|
|
|
|
IL_001f:
|
|
{
|
|
float L_5 = V_0;
|
|
float L_6;
|
|
L_6 = VisualElement_get_scaledPixelsPerPoint_m44984C56A992E21CE90E3DC15136DDF7DCDA11CD(__this, NULL);
|
|
float L_7;
|
|
L_7 = Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline(L_5, ((float)((1.0f)/L_6)), (1.0f), NULL);
|
|
V_1 = L_7;
|
|
String_t* L_8 = ___0_drawText;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9;
|
|
L_9 = TextElement_MeasureTextSize_m4F2E0FF21CE393339DD63D04723159B9CFD55386(__this, L_8, (0.0f), 0, (0.0f), 0, NULL);
|
|
V_2 = L_9;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_10 = V_2;
|
|
float L_11 = L_10.___x_0;
|
|
float L_12 = ___2_width;
|
|
float L_13 = V_1;
|
|
if ((((float)L_11) <= ((float)((float)il2cpp_codegen_add(L_12, L_13)))))
|
|
{
|
|
goto IL_005e;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_14 = ___1_ellipsisText;
|
|
bool L_15;
|
|
L_15 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_14, NULL);
|
|
G_B5_0 = ((int32_t)(L_15));
|
|
goto IL_005f;
|
|
}
|
|
|
|
IL_005e:
|
|
{
|
|
G_B5_0 = 1;
|
|
}
|
|
|
|
IL_005f:
|
|
{
|
|
V_12 = (bool)G_B5_0;
|
|
bool L_16 = V_12;
|
|
if (!L_16)
|
|
{
|
|
goto IL_006d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_17 = ___0_drawText;
|
|
V_13 = L_17;
|
|
goto IL_02c6;
|
|
}
|
|
|
|
IL_006d:
|
|
{
|
|
String_t* L_18 = ___0_drawText;
|
|
NullCheck(L_18);
|
|
int32_t L_19;
|
|
L_19 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_18, NULL);
|
|
if ((((int32_t)L_19) > ((int32_t)1)))
|
|
{
|
|
goto IL_0079;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_20 = ___0_drawText;
|
|
G_B10_0 = L_20;
|
|
goto IL_007a;
|
|
}
|
|
|
|
IL_0079:
|
|
{
|
|
String_t* L_21 = ___1_ellipsisText;
|
|
G_B10_0 = L_21;
|
|
}
|
|
|
|
IL_007a:
|
|
{
|
|
V_3 = G_B10_0;
|
|
String_t* L_22 = V_3;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_23;
|
|
L_23 = TextElement_MeasureTextSize_m4F2E0FF21CE393339DD63D04723159B9CFD55386(__this, L_22, (0.0f), 0, (0.0f), 0, NULL);
|
|
V_4 = L_23;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_24 = V_4;
|
|
float L_25 = L_24.___x_0;
|
|
float L_26 = ___2_width;
|
|
V_14 = (bool)((((int32_t)((!(((float)L_25) >= ((float)L_26)))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_27 = V_14;
|
|
if (!L_27)
|
|
{
|
|
goto IL_00ab;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_28 = V_3;
|
|
V_13 = L_28;
|
|
goto IL_02c6;
|
|
}
|
|
|
|
IL_00ab:
|
|
{
|
|
String_t* L_29 = ___0_drawText;
|
|
NullCheck(L_29);
|
|
int32_t L_30;
|
|
L_30 = String_get_Length_m42625D67623FA5CC7A44D47425CE86FB946542D2_inline(L_29, NULL);
|
|
V_5 = ((int32_t)il2cpp_codegen_subtract(L_30, 1));
|
|
V_6 = (-1);
|
|
String_t* L_31 = ___0_drawText;
|
|
V_7 = L_31;
|
|
int32_t L_32 = ___3_textOverflowPosition;
|
|
if ((((int32_t)L_32) == ((int32_t)1)))
|
|
{
|
|
goto IL_00c3;
|
|
}
|
|
}
|
|
{
|
|
G_B15_0 = 0;
|
|
goto IL_00c4;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
G_B15_0 = 1;
|
|
}
|
|
|
|
IL_00c4:
|
|
{
|
|
V_8 = G_B15_0;
|
|
int32_t L_33 = ___3_textOverflowPosition;
|
|
if ((((int32_t)L_33) == ((int32_t)1)))
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_34 = ___3_textOverflowPosition;
|
|
if ((((int32_t)L_34) == ((int32_t)2)))
|
|
{
|
|
goto IL_00d6;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_35 = V_5;
|
|
G_B19_0 = ((int32_t)il2cpp_codegen_subtract(L_35, 1));
|
|
goto IL_00d8;
|
|
}
|
|
|
|
IL_00d6:
|
|
{
|
|
int32_t L_36 = V_5;
|
|
G_B19_0 = L_36;
|
|
}
|
|
|
|
IL_00d8:
|
|
{
|
|
V_9 = G_B19_0;
|
|
int32_t L_37 = V_8;
|
|
int32_t L_38 = V_9;
|
|
V_10 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_37, L_38))/2));
|
|
goto IL_02ae;
|
|
}
|
|
|
|
IL_00e8:
|
|
{
|
|
int32_t L_39 = ___3_textOverflowPosition;
|
|
V_15 = (bool)((((int32_t)L_39) == ((int32_t)1))? 1 : 0);
|
|
bool L_40 = V_15;
|
|
if (!L_40)
|
|
{
|
|
goto IL_010d;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_41 = ___1_ellipsisText;
|
|
String_t* L_42 = ___0_drawText;
|
|
int32_t L_43 = V_10;
|
|
int32_t L_44 = V_5;
|
|
int32_t L_45 = V_10;
|
|
NullCheck(L_42);
|
|
String_t* L_46;
|
|
L_46 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_42, L_43, ((int32_t)il2cpp_codegen_subtract(L_44, ((int32_t)il2cpp_codegen_subtract(L_45, 1)))), NULL);
|
|
String_t* L_47;
|
|
L_47 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_41, L_46, NULL);
|
|
V_7 = L_47;
|
|
goto IL_0175;
|
|
}
|
|
|
|
IL_010d:
|
|
{
|
|
int32_t L_48 = ___3_textOverflowPosition;
|
|
V_16 = (bool)((((int32_t)L_48) == ((int32_t)0))? 1 : 0);
|
|
bool L_49 = V_16;
|
|
if (!L_49)
|
|
{
|
|
goto IL_012b;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_50 = ___0_drawText;
|
|
int32_t L_51 = V_10;
|
|
NullCheck(L_50);
|
|
String_t* L_52;
|
|
L_52 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_50, 0, L_51, NULL);
|
|
String_t* L_53 = ___1_ellipsisText;
|
|
String_t* L_54;
|
|
L_54 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_52, L_53, NULL);
|
|
V_7 = L_54;
|
|
goto IL_0175;
|
|
}
|
|
|
|
IL_012b:
|
|
{
|
|
int32_t L_55 = ___3_textOverflowPosition;
|
|
V_17 = (bool)((((int32_t)L_55) == ((int32_t)2))? 1 : 0);
|
|
bool L_56 = V_17;
|
|
if (!L_56)
|
|
{
|
|
goto IL_0175;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_57 = V_10;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_57, 1))) <= ((int32_t)0)))
|
|
{
|
|
goto IL_014a;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_58 = ___0_drawText;
|
|
int32_t L_59 = V_10;
|
|
NullCheck(L_58);
|
|
String_t* L_60;
|
|
L_60 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_58, 0, ((int32_t)il2cpp_codegen_subtract(L_59, 1)), NULL);
|
|
G_B28_0 = L_60;
|
|
goto IL_014f;
|
|
}
|
|
|
|
IL_014a:
|
|
{
|
|
G_B28_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
}
|
|
|
|
IL_014f:
|
|
{
|
|
String_t* L_61 = ___1_ellipsisText;
|
|
int32_t L_62 = V_5;
|
|
int32_t L_63 = V_10;
|
|
G_B29_0 = L_61;
|
|
G_B29_1 = G_B28_0;
|
|
if ((((int32_t)((int32_t)il2cpp_codegen_subtract(L_62, ((int32_t)il2cpp_codegen_subtract(L_63, 1))))) <= ((int32_t)0)))
|
|
{
|
|
G_B30_0 = L_61;
|
|
G_B30_1 = G_B28_0;
|
|
goto IL_0169;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_64 = ___0_drawText;
|
|
int32_t L_65 = V_5;
|
|
int32_t L_66 = V_10;
|
|
NullCheck(L_64);
|
|
String_t* L_67;
|
|
L_67 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_64, ((int32_t)il2cpp_codegen_subtract(L_65, ((int32_t)il2cpp_codegen_subtract(L_66, 1)))), NULL);
|
|
G_B31_0 = L_67;
|
|
G_B31_1 = G_B29_0;
|
|
G_B31_2 = G_B29_1;
|
|
goto IL_016e;
|
|
}
|
|
|
|
IL_0169:
|
|
{
|
|
G_B31_0 = _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709;
|
|
G_B31_1 = G_B30_0;
|
|
G_B31_2 = G_B30_1;
|
|
}
|
|
|
|
IL_016e:
|
|
{
|
|
String_t* L_68;
|
|
L_68 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(G_B31_2, G_B31_1, G_B31_0, NULL);
|
|
V_7 = L_68;
|
|
}
|
|
|
|
IL_0175:
|
|
{
|
|
String_t* L_69 = V_7;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_70;
|
|
L_70 = TextElement_MeasureTextSize_m4F2E0FF21CE393339DD63D04723159B9CFD55386(__this, L_69, (0.0f), 0, (0.0f), 0, NULL);
|
|
V_2 = L_70;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_71 = V_2;
|
|
float L_72 = L_71.___x_0;
|
|
float L_73 = ___2_width;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
float L_74;
|
|
L_74 = fabsf(((float)il2cpp_codegen_subtract(L_72, L_73)));
|
|
V_18 = (bool)((((float)L_74) < ((float)(1.0E-30f)))? 1 : 0);
|
|
bool L_75 = V_18;
|
|
if (!L_75)
|
|
{
|
|
goto IL_01ad;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_76 = V_7;
|
|
V_13 = L_76;
|
|
goto IL_02c6;
|
|
}
|
|
|
|
IL_01ad:
|
|
{
|
|
int32_t L_77 = ___3_textOverflowPosition;
|
|
V_19 = (bool)((((int32_t)L_77) == ((int32_t)1))? 1 : 0);
|
|
bool L_78 = V_19;
|
|
if (!L_78)
|
|
{
|
|
goto IL_020e;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_79 = V_2;
|
|
float L_80 = L_79.___x_0;
|
|
float L_81 = ___2_width;
|
|
V_20 = (bool)((((float)L_80) > ((float)L_81))? 1 : 0);
|
|
bool L_82 = V_20;
|
|
if (!L_82)
|
|
{
|
|
goto IL_01fc;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_83 = V_6;
|
|
int32_t L_84 = V_10;
|
|
V_21 = (bool)((((int32_t)L_83) == ((int32_t)((int32_t)il2cpp_codegen_subtract(L_84, 1))))? 1 : 0);
|
|
bool L_85 = V_21;
|
|
if (!L_85)
|
|
{
|
|
goto IL_01f3;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_86 = ___1_ellipsisText;
|
|
String_t* L_87 = ___0_drawText;
|
|
int32_t L_88 = V_6;
|
|
int32_t L_89 = V_5;
|
|
int32_t L_90 = V_6;
|
|
NullCheck(L_87);
|
|
String_t* L_91;
|
|
L_91 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_87, L_88, ((int32_t)il2cpp_codegen_subtract(L_89, ((int32_t)il2cpp_codegen_subtract(L_90, 1)))), NULL);
|
|
String_t* L_92;
|
|
L_92 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_86, L_91, NULL);
|
|
V_13 = L_92;
|
|
goto IL_02c6;
|
|
}
|
|
|
|
IL_01f3:
|
|
{
|
|
int32_t L_93 = V_10;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_93, 1));
|
|
goto IL_0208;
|
|
}
|
|
|
|
IL_01fc:
|
|
{
|
|
int32_t L_94 = V_10;
|
|
V_9 = ((int32_t)il2cpp_codegen_subtract(L_94, 1));
|
|
int32_t L_95 = V_10;
|
|
V_6 = L_95;
|
|
}
|
|
|
|
IL_0208:
|
|
{
|
|
goto IL_02a4;
|
|
}
|
|
|
|
IL_020e:
|
|
{
|
|
int32_t L_96 = ___3_textOverflowPosition;
|
|
if (!L_96)
|
|
{
|
|
goto IL_0219;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_97 = ___3_textOverflowPosition;
|
|
G_B44_0 = ((((int32_t)L_97) == ((int32_t)2))? 1 : 0);
|
|
goto IL_021a;
|
|
}
|
|
|
|
IL_0219:
|
|
{
|
|
G_B44_0 = 1;
|
|
}
|
|
|
|
IL_021a:
|
|
{
|
|
V_22 = (bool)G_B44_0;
|
|
bool L_98 = V_22;
|
|
if (!L_98)
|
|
{
|
|
goto IL_02a4;
|
|
}
|
|
}
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_99 = V_2;
|
|
float L_100 = L_99.___x_0;
|
|
float L_101 = ___2_width;
|
|
V_23 = (bool)((((float)L_100) > ((float)L_101))? 1 : 0);
|
|
bool L_102 = V_23;
|
|
if (!L_102)
|
|
{
|
|
goto IL_0297;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_103 = V_6;
|
|
int32_t L_104 = V_10;
|
|
V_24 = (bool)((((int32_t)L_103) == ((int32_t)((int32_t)il2cpp_codegen_subtract(L_104, 1))))? 1 : 0);
|
|
bool L_105 = V_24;
|
|
if (!L_105)
|
|
{
|
|
goto IL_028e;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_106 = ___3_textOverflowPosition;
|
|
V_25 = (bool)((((int32_t)L_106) == ((int32_t)0))? 1 : 0);
|
|
bool L_107 = V_25;
|
|
if (!L_107)
|
|
{
|
|
goto IL_0260;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_108 = ___0_drawText;
|
|
int32_t L_109 = V_6;
|
|
NullCheck(L_108);
|
|
String_t* L_110;
|
|
L_110 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_108, 0, L_109, NULL);
|
|
String_t* L_111 = ___1_ellipsisText;
|
|
String_t* L_112;
|
|
L_112 = String_Concat_m9E3155FB84015C823606188F53B47CB44C444991(L_110, L_111, NULL);
|
|
V_13 = L_112;
|
|
goto IL_02c6;
|
|
}
|
|
|
|
IL_0260:
|
|
{
|
|
String_t* L_113 = ___0_drawText;
|
|
int32_t L_114 = V_6;
|
|
int32_t L_115;
|
|
L_115 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(((int32_t)il2cpp_codegen_subtract(L_114, 1)), 0, NULL);
|
|
NullCheck(L_113);
|
|
String_t* L_116;
|
|
L_116 = String_Substring_mB1D94F47935D22E130FF2C01DBB6A4135FBB76CE(L_113, 0, L_115, NULL);
|
|
String_t* L_117 = ___1_ellipsisText;
|
|
String_t* L_118 = ___0_drawText;
|
|
int32_t L_119 = V_5;
|
|
int32_t L_120 = V_6;
|
|
int32_t L_121;
|
|
L_121 = Mathf_Max_m7FA442918DE37E3A00106D1F2E789D65829792B8_inline(((int32_t)il2cpp_codegen_subtract(L_120, 1)), 0, NULL);
|
|
NullCheck(L_118);
|
|
String_t* L_122;
|
|
L_122 = String_Substring_m6BA4A3FA3800FE92662D0847CC8E1EEF940DF472(L_118, ((int32_t)il2cpp_codegen_subtract(L_119, L_121)), NULL);
|
|
String_t* L_123;
|
|
L_123 = String_Concat_m8855A6DE10F84DA7F4EC113CADDB59873A25573B(L_116, L_117, L_122, NULL);
|
|
V_13 = L_123;
|
|
goto IL_02c6;
|
|
}
|
|
|
|
IL_028e:
|
|
{
|
|
int32_t L_124 = V_10;
|
|
V_9 = ((int32_t)il2cpp_codegen_subtract(L_124, 1));
|
|
goto IL_02a3;
|
|
}
|
|
|
|
IL_0297:
|
|
{
|
|
int32_t L_125 = V_10;
|
|
V_8 = ((int32_t)il2cpp_codegen_add(L_125, 1));
|
|
int32_t L_126 = V_10;
|
|
V_6 = L_126;
|
|
}
|
|
|
|
IL_02a3:
|
|
{
|
|
}
|
|
|
|
IL_02a4:
|
|
{
|
|
int32_t L_127 = V_8;
|
|
int32_t L_128 = V_9;
|
|
V_10 = ((int32_t)(((int32_t)il2cpp_codegen_add(L_127, L_128))/2));
|
|
}
|
|
|
|
IL_02ae:
|
|
{
|
|
int32_t L_129 = V_8;
|
|
int32_t L_130 = V_9;
|
|
V_26 = (bool)((((int32_t)((((int32_t)L_129) > ((int32_t)L_130))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
bool L_131 = V_26;
|
|
if (L_131)
|
|
{
|
|
goto IL_00e8;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_132 = V_7;
|
|
V_13 = L_132;
|
|
goto IL_02c6;
|
|
}
|
|
|
|
IL_02c6:
|
|
{
|
|
String_t* L_133 = V_13;
|
|
return L_133;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::UpdateTooltip()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_UpdateTooltip_m3CD28922152477FF2FE2AF329FF2897F8E779CAD (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
int32_t G_B3_0 = 0;
|
|
{
|
|
bool L_0;
|
|
L_0 = TextElement_get_displayTooltipWhenElided_mD6579F23BD489FD9C4D096B7C6A6A8B14558689F(__this, NULL);
|
|
if (!L_0)
|
|
{
|
|
goto IL_0011;
|
|
}
|
|
}
|
|
{
|
|
bool L_1;
|
|
L_1 = TextElement_get_isElided_m338FA73595E99F8ED578C39CB0BB380067B73026_inline(__this, NULL);
|
|
G_B3_0 = ((int32_t)(L_1));
|
|
goto IL_0012;
|
|
}
|
|
|
|
IL_0011:
|
|
{
|
|
G_B3_0 = 0;
|
|
}
|
|
|
|
IL_0012:
|
|
{
|
|
V_0 = (bool)G_B3_0;
|
|
bool L_2 = V_0;
|
|
V_1 = L_2;
|
|
bool L_3 = V_1;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0030;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4;
|
|
L_4 = VirtualFuncInvoker0< String_t* >::Invoke(103 /* System.String UnityEngine.UIElements.TextElement::get_text() */, __this);
|
|
VisualElement_set_tooltip_mD392FEBD1C4F97E4FEE2FEE3E92937D355B7FA61(__this, L_4, NULL);
|
|
__this->___m_WasElided_75 = (bool)1;
|
|
goto IL_004b;
|
|
}
|
|
|
|
IL_0030:
|
|
{
|
|
bool L_5 = __this->___m_WasElided_75;
|
|
V_2 = L_5;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_004b;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_set_tooltip_mD392FEBD1C4F97E4FEE2FEE3E92937D355B7FA61(__this, (String_t*)NULL, NULL);
|
|
__this->___m_WasElided_75 = (bool)0;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::UpdateVisibleText()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_UpdateVisibleText_m7F0346F28CC5E5463CA517C2674C209107F0BD19 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
int32_t V_1 = 0;
|
|
bool V_2 = false;
|
|
bool V_3 = false;
|
|
bool V_4 = false;
|
|
bool V_5 = false;
|
|
int32_t G_B3_0 = 0;
|
|
int32_t G_B7_0 = 0;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* G_B12_0 = NULL;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* G_B11_0 = NULL;
|
|
int32_t G_B13_0 = 0;
|
|
TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* G_B13_1 = NULL;
|
|
{
|
|
String_t* L_0;
|
|
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(103 /* System.String UnityEngine.UIElements.TextElement::get_text() */, __this);
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_1;
|
|
L_1 = TextParams_MakeStyleBased_mDF20795C3A27408BAD96FB1FCF077694FFB05124(__this, L_0, NULL);
|
|
V_0 = L_1;
|
|
int32_t L_2;
|
|
L_2 = TextParams_GetHashCode_mC8A715BCEEDF161F0CDF1510C352C3C72B30C4A6((&V_0), NULL);
|
|
V_1 = L_2;
|
|
bool L_3 = __this->___m_UpdateTextParams_76;
|
|
if (L_3)
|
|
{
|
|
goto IL_0032;
|
|
}
|
|
}
|
|
{
|
|
int32_t L_4 = V_1;
|
|
int32_t L_5 = __this->___m_PreviousTextParamsHashCode_78;
|
|
G_B3_0 = ((((int32_t)((((int32_t)L_4) == ((int32_t)L_5))? 1 : 0)) == ((int32_t)0))? 1 : 0);
|
|
goto IL_0033;
|
|
}
|
|
|
|
IL_0032:
|
|
{
|
|
G_B3_0 = 1;
|
|
}
|
|
|
|
IL_0033:
|
|
{
|
|
V_2 = (bool)G_B3_0;
|
|
bool L_6 = V_2;
|
|
if (!L_6)
|
|
{
|
|
goto IL_00fd;
|
|
}
|
|
}
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F L_7 = V_0;
|
|
__this->___m_TextParams_77 = L_7;
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_TextParams_77))->___text_1), (void*)NULL);
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_TextParams_77))->___font_2), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_TextParams_77))->___fontDefinition_3))->___m_Font_0), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&((&(((&__this->___m_TextParams_77))->___fontDefinition_3))->___m_FontAsset_1), (void*)NULL);
|
|
#endif
|
|
#if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS
|
|
Il2CppCodeGenWriteBarrier((void**)&(((&__this->___m_TextParams_77))->___panel_18), (void*)NULL);
|
|
#endif
|
|
bool L_8;
|
|
L_8 = TextElement_ShouldElide_m07D91819BEF35424692BCDBB903B26A3C6A3C005(__this, NULL);
|
|
V_3 = L_8;
|
|
bool L_9 = V_3;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0054;
|
|
}
|
|
}
|
|
{
|
|
bool L_10;
|
|
L_10 = TextElement_TextLibraryCanElide_m90DF935AD4CC17D61DCCF99C1769C2BE9D3EFBAA(__this, NULL);
|
|
G_B7_0 = ((int32_t)(L_10));
|
|
goto IL_0055;
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
G_B7_0 = 0;
|
|
}
|
|
|
|
IL_0055:
|
|
{
|
|
V_4 = (bool)G_B7_0;
|
|
bool L_11 = V_4;
|
|
if (!L_11)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
goto IL_00ee;
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
bool L_12 = V_3;
|
|
V_5 = L_12;
|
|
bool L_13 = V_5;
|
|
if (!L_13)
|
|
{
|
|
goto IL_00d8;
|
|
}
|
|
}
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_14 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_15 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
String_t* L_16 = L_15->___text_1;
|
|
il2cpp_codegen_runtime_class_init_inline(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
String_t* L_17 = ((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields*)il2cpp_codegen_static_fields_for(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var))->___k_EllipsisText_74;
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_18 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D* L_19 = (Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D*)(&L_18->___rect_0);
|
|
float L_20;
|
|
L_20 = Rect_get_width_m620D67551372073C9C32C4C4624C2A5713F7F9A9(L_19, NULL);
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_21 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
int32_t L_22 = L_21->___textOverflowPosition_16;
|
|
String_t* L_23;
|
|
L_23 = TextElement_ElideText_mF95161E8B1CF647CF4D6F2EA9F3C71BF932C537D(__this, L_16, L_17, L_20, L_22, NULL);
|
|
L_14->___text_1 = L_23;
|
|
Il2CppCodeGenWriteBarrier((void**)(&L_14->___text_1), (void*)L_23);
|
|
bool L_24 = V_3;
|
|
G_B11_0 = __this;
|
|
if (!L_24)
|
|
{
|
|
G_B12_0 = __this;
|
|
goto IL_00c2;
|
|
}
|
|
}
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_25 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
String_t* L_26 = L_25->___text_1;
|
|
String_t* L_27;
|
|
L_27 = VirtualFuncInvoker0< String_t* >::Invoke(103 /* System.String UnityEngine.UIElements.TextElement::get_text() */, __this);
|
|
bool L_28;
|
|
L_28 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_26, L_27, NULL);
|
|
G_B13_0 = ((int32_t)(L_28));
|
|
G_B13_1 = G_B11_0;
|
|
goto IL_00c3;
|
|
}
|
|
|
|
IL_00c2:
|
|
{
|
|
G_B13_0 = 0;
|
|
G_B13_1 = G_B12_0;
|
|
}
|
|
|
|
IL_00c3:
|
|
{
|
|
NullCheck(G_B13_1);
|
|
TextElement_set_isElided_m5B22A9B2045357427FC695C27B6A775C58A27D60_inline(G_B13_1, (bool)G_B13_0, NULL);
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_29 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
L_29->___textOverflow_15 = 0;
|
|
goto IL_00ee;
|
|
}
|
|
|
|
IL_00d8:
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_30 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
L_30->___textOverflow_15 = 0;
|
|
TextElement_set_isElided_m5B22A9B2045357427FC695C27B6A775C58A27D60_inline(__this, (bool)0, NULL);
|
|
}
|
|
|
|
IL_00ee:
|
|
{
|
|
int32_t L_31 = V_1;
|
|
__this->___m_PreviousTextParamsHashCode_78 = L_31;
|
|
__this->___m_UpdateTextParams_76 = (bool)0;
|
|
}
|
|
|
|
IL_00fd:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextElement::ShouldElide()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_ShouldElide_m07D91819BEF35424692BCDBB903B26A3C6A3C005 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
int32_t G_B4_0 = 0;
|
|
{
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_0;
|
|
L_0 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(__this, NULL);
|
|
int32_t L_1;
|
|
L_1 = ComputedStyle_get_textOverflow_m1D6D87744472BFD4F90C88C34E5601F79CD22A49(L_0, NULL);
|
|
if ((!(((uint32_t)L_1) == ((uint32_t)1))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_2;
|
|
L_2 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(__this, NULL);
|
|
int32_t L_3;
|
|
L_3 = ComputedStyle_get_overflow_m904B36CF971CBAD3B1B5D6239E1FB982FCF5548F(L_2, NULL);
|
|
if ((!(((uint32_t)L_3) == ((uint32_t)1))))
|
|
{
|
|
goto IL_002d;
|
|
}
|
|
}
|
|
{
|
|
ComputedStyle_t8B08CCCEE20525528B3FFDAC6D3F58F101AAF54C* L_4;
|
|
L_4 = VisualElement_get_computedStyle_m8124059EC4D72CCEDE7107FFF72A614131604C3A(__this, NULL);
|
|
int32_t L_5;
|
|
L_5 = ComputedStyle_get_whiteSpace_m4A7A9F132EDFE87B9E119DC21A25FB0FAB4D2D2D(L_4, NULL);
|
|
G_B4_0 = ((((int32_t)L_5) == ((int32_t)1))? 1 : 0);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
G_B4_0 = 0;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
V_0 = (bool)G_B4_0;
|
|
goto IL_0031;
|
|
}
|
|
|
|
IL_0031:
|
|
{
|
|
bool L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.Boolean UnityEngine.UIElements.TextElement::TextLibraryCanElide()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TextElement_TextLibraryCanElide_m90DF935AD4CC17D61DCCF99C1769C2BE9D3EFBAA (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
bool V_2 = false;
|
|
{
|
|
RuntimeObject* L_0;
|
|
L_0 = TextElement_get_textHandle_m0CEE611EE48A71915EE05B453C6500B281E9F697(__this, NULL);
|
|
NullCheck(L_0);
|
|
bool L_1;
|
|
L_1 = InterfaceFuncInvoker0< bool >::Invoke(5 /* System.Boolean UnityEngine.UIElements.ITextHandle::IsLegacy() */, ITextHandle_tE073838D8ECC8553222F256E181F96527EC273E4_il2cpp_TypeInfo_var, L_0);
|
|
V_0 = L_1;
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_0014;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_0014:
|
|
{
|
|
TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F* L_3 = (TextParams_t943244753F8E3A49632BBEC7272DAEAA8E10546F*)(&__this->___m_TextParams_77);
|
|
int32_t L_4 = L_3->___textOverflowPosition_16;
|
|
V_2 = (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0);
|
|
bool L_5 = V_2;
|
|
if (!L_5)
|
|
{
|
|
goto IL_002a;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (bool)1;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002a:
|
|
{
|
|
V_1 = (bool)0;
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
bool L_6 = V_1;
|
|
return L_6;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextElement::MeasureTextSize(System.String,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextElement_MeasureTextSize_m4F2E0FF21CE393339DD63D04723159B9CFD55386 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, String_t* ___0_textToMeasure, float ___1_width, int32_t ___2_widthMode, float ___3_height, int32_t ___4_heightMode, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0 = ___0_textToMeasure;
|
|
float L_1 = ___1_width;
|
|
int32_t L_2 = ___2_widthMode;
|
|
float L_3 = ___3_height;
|
|
int32_t L_4 = ___4_heightMode;
|
|
RuntimeObject* L_5 = __this->___m_TextHandle_68;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6;
|
|
L_6 = TextUtilities_MeasureVisualElementTextSize_mDFC56166DDEA46A5C23F8CC55986E05FA0220A1A(__this, L_0, L_1, L_2, L_3, L_4, L_5, NULL);
|
|
V_0 = L_6;
|
|
goto IL_0017;
|
|
}
|
|
|
|
IL_0017:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = V_0;
|
|
return L_7;
|
|
}
|
|
}
|
|
// UnityEngine.Vector2 UnityEngine.UIElements.TextElement::DoMeasure(System.Single,UnityEngine.UIElements.VisualElement/MeasureMode,System.Single,UnityEngine.UIElements.VisualElement/MeasureMode)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 TextElement_DoMeasure_mACBEF309D70F6C8D7C4C8F1314AE37B9989F52C0 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, float ___0_desiredWidth, int32_t ___1_widthMode, float ___2_desiredHeight, int32_t ___3_heightMode, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
String_t* L_0;
|
|
L_0 = VirtualFuncInvoker0< String_t* >::Invoke(103 /* System.String UnityEngine.UIElements.TextElement::get_text() */, __this);
|
|
float L_1 = ___0_desiredWidth;
|
|
int32_t L_2 = ___1_widthMode;
|
|
float L_3 = ___2_desiredHeight;
|
|
int32_t L_4 = ___3_heightMode;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_5;
|
|
L_5 = TextElement_MeasureTextSize_m4F2E0FF21CE393339DD63D04723159B9CFD55386(__this, L_0, L_1, L_2, L_3, L_4, NULL);
|
|
V_0 = L_5;
|
|
goto IL_0015;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = V_0;
|
|
return L_6;
|
|
}
|
|
}
|
|
// System.String UnityEngine.UIElements.TextElement::UnityEngine.UIElements.INotifyValueChanged<System.String>.get_value()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextElement_UnityEngine_UIElements_INotifyValueChangedU3CSystem_StringU3E_get_value_m2618FD77611FCB0FF2681C32FFEF80925512B4FB (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&String_t_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
String_t* V_0 = NULL;
|
|
String_t* G_B2_0 = NULL;
|
|
String_t* G_B1_0 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___m_Text_70;
|
|
String_t* L_1 = L_0;
|
|
G_B1_0 = L_1;
|
|
if (L_1)
|
|
{
|
|
G_B2_0 = L_1;
|
|
goto IL_0010;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_2 = ((String_t_StaticFields*)il2cpp_codegen_static_fields_for(String_t_il2cpp_TypeInfo_var))->___Empty_6;
|
|
G_B2_0 = L_2;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
V_0 = G_B2_0;
|
|
goto IL_0013;
|
|
}
|
|
|
|
IL_0013:
|
|
{
|
|
String_t* L_3 = V_0;
|
|
return L_3;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::UnityEngine.UIElements.INotifyValueChanged<System.String>.set_value(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_UnityEngine_UIElements_INotifyValueChangedU3CSystem_StringU3E_set_value_mDD998C85C9E0033C9C956F61B6FE4D5E1A426969 (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ChangeEvent_1_GetPooled_mF8F78E2DFC01AE418EFCD2AC9A74536DADCC1D83_RuntimeMethod_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F* V_2 = NULL;
|
|
{
|
|
String_t* L_0 = __this->___m_Text_70;
|
|
String_t* L_1 = ___0_value;
|
|
bool L_2;
|
|
L_2 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0062;
|
|
}
|
|
}
|
|
{
|
|
RuntimeObject* L_4;
|
|
L_4 = VisualElement_get_panel_m44AEFA3041785E57641AA3F895D11215C841BED1(__this, NULL);
|
|
V_1 = (bool)((!(((RuntimeObject*)(RuntimeObject*)L_4) <= ((RuntimeObject*)(RuntimeObject*)NULL)))? 1 : 0);
|
|
bool L_5 = V_1;
|
|
if (!L_5)
|
|
{
|
|
goto IL_0057;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_6;
|
|
L_6 = VirtualFuncInvoker0< String_t* >::Invoke(103 /* System.String UnityEngine.UIElements.TextElement::get_text() */, __this);
|
|
String_t* L_7 = ___0_value;
|
|
ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F* L_8;
|
|
L_8 = ChangeEvent_1_GetPooled_mF8F78E2DFC01AE418EFCD2AC9A74536DADCC1D83(L_6, L_7, ChangeEvent_1_GetPooled_mF8F78E2DFC01AE418EFCD2AC9A74536DADCC1D83_RuntimeMethod_var);
|
|
V_2 = L_8;
|
|
}
|
|
{
|
|
auto __finallyBlock = il2cpp::utils::Finally([&]
|
|
{
|
|
|
|
FINALLY_0049:
|
|
{// begin finally (depth: 1)
|
|
{
|
|
ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F* L_9 = V_2;
|
|
if (!L_9)
|
|
{
|
|
goto IL_0053;
|
|
}
|
|
}
|
|
{
|
|
ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F* L_10 = V_2;
|
|
NullCheck(L_10);
|
|
InterfaceActionInvoker0::Invoke(0 /* System.Void System.IDisposable::Dispose() */, IDisposable_t030E0496B4E0E4E4F086825007979AF51F7248C5_il2cpp_TypeInfo_var, L_10);
|
|
}
|
|
|
|
IL_0053:
|
|
{
|
|
return;
|
|
}
|
|
}// end finally (depth: 1)
|
|
});
|
|
try
|
|
{// begin try (depth: 1)
|
|
ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F* L_11 = V_2;
|
|
NullCheck(L_11);
|
|
EventBase_set_target_mBDBE0FB1321254FEDFC4B0EF34DBDA8105FFCBA2(L_11, __this, NULL);
|
|
String_t* L_12 = ___0_value;
|
|
InterfaceActionInvoker1< String_t* >::Invoke(2 /* System.Void UnityEngine.UIElements.INotifyValueChanged`1<System.String>::SetValueWithoutNotify(T) */, INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var, __this, L_12);
|
|
ChangeEvent_1_tC8920B8153267870361787158B3897821AA4522F* L_13 = V_2;
|
|
VirtualActionInvoker1< EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* >::Invoke(6 /* System.Void UnityEngine.UIElements.CallbackEventHandler::SendEvent(UnityEngine.UIElements.EventBase) */, __this, L_13);
|
|
goto IL_0054;
|
|
}// end try (depth: 1)
|
|
catch(Il2CppExceptionWrapper& e)
|
|
{
|
|
__finallyBlock.StoreException(e.ex);
|
|
}
|
|
}
|
|
|
|
IL_0054:
|
|
{
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
String_t* L_14 = ___0_value;
|
|
InterfaceActionInvoker1< String_t* >::Invoke(2 /* System.Void UnityEngine.UIElements.INotifyValueChanged`1<System.String>::SetValueWithoutNotify(T) */, INotifyValueChanged_1_t9F444590945CE5030A5A1DAE3E564F8BC5B76594_il2cpp_TypeInfo_var, __this, L_14);
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
}
|
|
|
|
IL_0062:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::UnityEngine.UIElements.INotifyValueChanged<System.String>.SetValueWithoutNotify(System.String)
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement_UnityEngine_UIElements_INotifyValueChangedU3CSystem_StringU3E_SetValueWithoutNotify_m26B3D7C3D117DFC3DC6630B110503C9FDAD1654E (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, String_t* ___0_newValue, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
{
|
|
String_t* L_0 = __this->___m_Text_70;
|
|
String_t* L_1 = ___0_newValue;
|
|
bool L_2;
|
|
L_2 = String_op_Inequality_m8C940F3CFC42866709D7CA931B3D77B4BE94BCB6(L_0, L_1, NULL);
|
|
V_0 = L_2;
|
|
bool L_3 = V_0;
|
|
if (!L_3)
|
|
{
|
|
goto IL_003f;
|
|
}
|
|
}
|
|
{
|
|
String_t* L_4 = ___0_newValue;
|
|
__this->___m_Text_70 = L_4;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___m_Text_70), (void*)L_4);
|
|
VisualElement_IncrementVersion_m03581665EE480D3C329058FFE08734450493E33E(__this, ((int32_t)2056), NULL);
|
|
String_t* L_5;
|
|
L_5 = VisualElement_get_viewDataKey_m1F990A70B7861D0071A4462C62477363C69223F5(__this, NULL);
|
|
bool L_6;
|
|
L_6 = String_IsNullOrEmpty_mEA9E3FB005AC28FE02E69FCF95A7B8456192B478(L_5, NULL);
|
|
V_1 = (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0);
|
|
bool L_7 = V_1;
|
|
if (!L_7)
|
|
{
|
|
goto IL_003e;
|
|
}
|
|
}
|
|
{
|
|
VisualElement_SaveViewData_m6F18758E27148CBC3B9E4FCB1F33798AAB427CD6(__this, NULL);
|
|
}
|
|
|
|
IL_003e:
|
|
{
|
|
}
|
|
|
|
IL_003f:
|
|
{
|
|
return;
|
|
}
|
|
}
|
|
// System.Void UnityEngine.UIElements.TextElement::.cctor()
|
|
IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextElement__cctor_m9CEAA36544B738F459257B25D88E429B435DF758 (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCA4C37D993E9DE9D6A9ACD0A4394D625D239626D);
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields*)il2cpp_codegen_static_fields_for(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var))->___ussClassName_67 = _stringLiteralCA4C37D993E9DE9D6A9ACD0A4394D625D239626D;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields*)il2cpp_codegen_static_fields_for(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var))->___ussClassName_67), (void*)_stringLiteralCA4C37D993E9DE9D6A9ACD0A4394D625D239626D);
|
|
il2cpp_codegen_runtime_class_init_inline(MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F_il2cpp_TypeInfo_var);
|
|
int32_t L_0 = ((MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F_StaticFields*)il2cpp_codegen_static_fields_for(MeshBuilder_t73D46F57E528BF26B22D710789F8E63D0F966A1F_il2cpp_TypeInfo_var))->___s_MaxTextMeshVertices_4;
|
|
((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields*)il2cpp_codegen_static_fields_for(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var))->___maxTextVertices_69 = L_0;
|
|
((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields*)il2cpp_codegen_static_fields_for(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var))->___k_EllipsisText_74 = _stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A;
|
|
Il2CppCodeGenWriteBarrier((void**)(&((TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_StaticFields*)il2cpp_codegen_static_fields_for(TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0_il2cpp_TypeInfo_var))->___k_EllipsisText_74), (void*)_stringLiteralFFEF3DBE279EE1F92E1E2E46F45BC18EBBF55A1A);
|
|
return;
|
|
}
|
|
}
|
|
#ifdef __clang__
|
|
#pragma clang diagnostic pop
|
|
#endif
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Type_t* TypeData_get_type_m19385722AD487765EADAE8F2DCAF294D8251D1DB_inline (TypeData_t01D670B4E71B5571B38C7412B1E652A47D6AF66A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Type_t* L_0 = __this->___U3CtypeU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_button_m8661CD81ADA679F625C9FD8E9B3EF9B282499F59_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CbuttonU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ManipulatorActivationFilter_set_button_m7D270A0FB7BF8D63EE26483770D72A0676374769_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CbuttonU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_modifiers_mEF6562F67467567816B75BE923125F51CFAA1860_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CmodifiersU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ManipulatorActivationFilter_get_clickCount_m8EF3978EDDB6111E7805D79D2596F90E6D2AA978_inline (ManipulatorActivationFilter_t866A0295DA75EA271B30BDC1F9EEA2C4FDEB1A81* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CclickCountU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MouseManipulator_set_activators_m8171261B8934A9481FA39098335919DC3A189A67_inline (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_0 = ___0_value;
|
|
__this->___U3CactivatorsU3Ek__BackingField_1 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CactivatorsU3Ek__BackingField_1), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* MouseManipulator_get_activators_mAB6DB832B06575DF49E23F84AE0B79EACE0509C9_inline (MouseManipulator_tE6C609D476BDF311E2934791E620CF833BB4097D* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t569CB45C96475FFA9C716A7CC2ADE24112D38121* L_0 = __this->___U3CactivatorsU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool VisualElementPanelActivator_get_isActive_m6F081918AB91EABC70D5CD2B2D6948EC342637FE_inline (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisActiveU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementPanelActivator_set_isActive_m24D8DEA69844B06E802EA1FBEA607A9C0D2943A8_inline (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisActiveU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementPanelActivator_set_isDetaching_mCBE238B4B8C605C23C7B09853C0B095B537A1E23_inline (VisualElementPanelActivator_t1CCD740B7D2995A4097A8FCF6ADCDD6B6A51B7DB* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisDetachingU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
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 bool Mathf_Approximately_m1DADD012A8FC82E11FB282501AE2EBBF9A77150B_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
bool V_0 = false;
|
|
{
|
|
float L_0 = ___1_b;
|
|
float L_1 = ___0_a;
|
|
float L_2;
|
|
L_2 = fabsf(((float)il2cpp_codegen_subtract(L_0, L_1)));
|
|
float L_3 = ___0_a;
|
|
float L_4;
|
|
L_4 = fabsf(L_3);
|
|
float L_5 = ___1_b;
|
|
float L_6;
|
|
L_6 = fabsf(L_5);
|
|
float L_7;
|
|
L_7 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(L_4, L_6, NULL);
|
|
float L_8 = ((Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_StaticFields*)il2cpp_codegen_static_fields_for(Mathf_tE284D016E3B297B72311AAD9EB8F0E643F6A4682_il2cpp_TypeInfo_var))->___Epsilon_0;
|
|
float L_9;
|
|
L_9 = Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline(((float)il2cpp_codegen_multiply((9.99999997E-07f), L_7)), ((float)il2cpp_codegen_multiply(L_8, (8.0f))), NULL);
|
|
V_0 = (bool)((((float)L_2) < ((float)L_9))? 1 : 0);
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
bool L_10 = V_0;
|
|
return L_10;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_LerpUnclamped_mF35042F9D25A221BDD4B3FD6251224610AFC1F35_inline (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
float L_2 = ___0_a;
|
|
float L_3 = ___2_t;
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_1, L_2)), L_3))));
|
|
goto IL_000b;
|
|
}
|
|
|
|
IL_000b:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Mathf_RoundToInt_m60F8B66CF27F1FA75AA219342BD184B75771EB4B_inline (float ___0_f, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
int32_t V_0 = 0;
|
|
{
|
|
float L_0 = ___0_f;
|
|
il2cpp_codegen_runtime_class_init_inline(Math_tEB65DE7CA8B083C412C969C92981C030865486CE_il2cpp_TypeInfo_var);
|
|
double L_1;
|
|
L_1 = bankers_round(((double)L_0));
|
|
V_0 = il2cpp_codegen_cast_double_to_int<int32_t>(L_1);
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
int32_t L_2 = V_0;
|
|
return L_2;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Length_get_unit_m35495152DF180B333572A9BB8C24452530BB338E_inline (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___m_Unit_2;
|
|
return (int32_t)(L_0);
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Length_get_value_m28A7FBD9908A795F0C73FED461EE32E5A3D6456F_inline (Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_Value_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_LerpUnclamped_m91027D026E64424B71959149B942F706FC16B1A2_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___0_a, Color_tD001788D726C3A7F1379BEED0260B9591F440C1F ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0 = ___0_a;
|
|
float L_1 = L_0.___r_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_2 = ___1_b;
|
|
float L_3 = L_2.___r_0;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_4 = ___0_a;
|
|
float L_5 = L_4.___r_0;
|
|
float L_6 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_7 = ___0_a;
|
|
float L_8 = L_7.___g_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_9 = ___1_b;
|
|
float L_10 = L_9.___g_1;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_11 = ___0_a;
|
|
float L_12 = L_11.___g_1;
|
|
float L_13 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_14 = ___0_a;
|
|
float L_15 = L_14.___b_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_16 = ___1_b;
|
|
float L_17 = L_16.___b_2;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_18 = ___0_a;
|
|
float L_19 = L_18.___b_2;
|
|
float L_20 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_21 = ___0_a;
|
|
float L_22 = L_21.___a_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_23 = ___1_b;
|
|
float L_24 = L_23.___a_3;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_25 = ___0_a;
|
|
float L_26 = L_25.___a_3;
|
|
float L_27 = ___2_t;
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_28;
|
|
memset((&L_28), 0, sizeof(L_28));
|
|
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_28), ((float)il2cpp_codegen_add(L_1, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_3, L_5)), L_6)))), ((float)il2cpp_codegen_add(L_8, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_10, L_12)), L_13)))), ((float)il2cpp_codegen_add(L_15, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_17, L_19)), L_20)))), ((float)il2cpp_codegen_add(L_22, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_24, L_26)), L_27)))), /*hidden argument*/NULL);
|
|
V_0 = L_28;
|
|
goto IL_0061;
|
|
}
|
|
|
|
IL_0061:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_29 = V_0;
|
|
return L_29;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Scale_get_value_m27CE2F2A3DD1A14DE72EE744A3817BFE3D3DDD96_inline (Scale_t5594C69C1AC9398B57ABF6C4FA0D4E791B7A4DC7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___m_Scale_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 Vector3_LerpUnclamped_m4109A459C1DB823310A10B8B1E80CB6877418347_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___0_a, Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = ___0_a;
|
|
float L_1 = L_0.___x_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_2 = ___1_b;
|
|
float L_3 = L_2.___x_2;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_4 = ___0_a;
|
|
float L_5 = L_4.___x_2;
|
|
float L_6 = ___2_t;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_7 = ___0_a;
|
|
float L_8 = L_7.___y_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_9 = ___1_b;
|
|
float L_10 = L_9.___y_3;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_11 = ___0_a;
|
|
float L_12 = L_11.___y_3;
|
|
float L_13 = ___2_t;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_14 = ___0_a;
|
|
float L_15 = L_14.___z_4;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_16 = ___1_b;
|
|
float L_17 = L_16.___z_4;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_18 = ___0_a;
|
|
float L_19 = L_18.___z_4;
|
|
float L_20 = ___2_t;
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_21;
|
|
memset((&L_21), 0, sizeof(L_21));
|
|
Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline((&L_21), ((float)il2cpp_codegen_add(L_1, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_3, L_5)), L_6)))), ((float)il2cpp_codegen_add(L_8, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_10, L_12)), L_13)))), ((float)il2cpp_codegen_add(L_15, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_17, L_19)), L_20)))), /*hidden argument*/NULL);
|
|
V_0 = L_21;
|
|
goto IL_004b;
|
|
}
|
|
|
|
IL_004b:
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_22 = V_0;
|
|
return L_22;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC Rotate_get_angle_mF31EBAC339112FEEB451FC221CD60909745E7324_inline (Rotate_tE965CA0281A547AB38B881A3416FF97756D3F4D7* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Angle_t0229F612898D65B3CC646C40A32D93D8A33C1DFC L_0 = __this->___m_Angle_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 Translate_get_x_m20B598ADBC230B32AA055FF13B07038E629AA599_inline (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_0 = __this->___m_X_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 Translate_get_y_m587EA6A26C8B48C4B7D44B9B914A8DE3FAB42D80_inline (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_0 = __this->___m_Y_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Translate_get_z_mB2327E142162E26835FB78D9E48E0CAA1C387854_inline (Translate_t494F6E802F8A640D67819C9D26BE62DED1218A8E* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_Z_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Lerp_m47EF2FFB7647BD0A1FDC26DC03E28B19812139B5_inline (float ___0_a, float ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
float L_2 = ___0_a;
|
|
float L_3 = ___2_t;
|
|
float L_4;
|
|
L_4 = Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline(L_3, NULL);
|
|
V_0 = ((float)il2cpp_codegen_add(L_0, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_1, L_2)), L_4))));
|
|
goto IL_0010;
|
|
}
|
|
|
|
IL_0010:
|
|
{
|
|
float L_5 = V_0;
|
|
return L_5;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 TransformOrigin_get_x_m45B713C35F41919099DFE89257682A47EA02EB1C_inline (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_0 = __this->___m_X_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 TransformOrigin_get_y_m2B16F6E4821E20812F1A091AB94F88558FA7EE44_inline (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Length_t90BB06D47DD6DB461ED21BD3E3241FAB6C824256 L_0 = __this->___m_Y_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float TransformOrigin_get_z_m1B0602F587F9B7DF875C751BE1DA610E0CFBFAD7_inline (TransformOrigin_tD11A368A96C0771398EBB4E6D435318AC0EF8502* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = __this->___m_Z_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 VisualElement_MultiplyMatrix44Point2_m0D9B66607EF7792AA21696927BAA8404C403EA60_inline (Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_point, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_1;
|
|
memset((&V_1), 0, sizeof(V_1));
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_0 = ___0_lhs;
|
|
float L_1 = L_0->___m00_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_point;
|
|
float L_3 = L_2.___x_0;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_4 = ___0_lhs;
|
|
float L_5 = L_4->___m01_4;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___1_point;
|
|
float L_7 = L_6.___y_1;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_8 = ___0_lhs;
|
|
float L_9 = L_8->___m03_12;
|
|
(&V_0)->___x_0 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_1, L_3)), ((float)il2cpp_codegen_multiply(L_5, L_7)))), L_9));
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_10 = ___0_lhs;
|
|
float L_11 = L_10->___m10_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_12 = ___1_point;
|
|
float L_13 = L_12.___x_0;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_14 = ___0_lhs;
|
|
float L_15 = L_14->___m11_5;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_16 = ___1_point;
|
|
float L_17 = L_16.___y_1;
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6* L_18 = ___0_lhs;
|
|
float L_19 = L_18->___m13_13;
|
|
(&V_0)->___y_1 = ((float)il2cpp_codegen_add(((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_11, L_13)), ((float)il2cpp_codegen_multiply(L_15, L_17)))), L_19));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_20 = V_0;
|
|
V_1 = L_20;
|
|
goto IL_0057;
|
|
}
|
|
|
|
IL_0057:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_21 = V_1;
|
|
return L_21;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Clickable_get_acceptClicksIfDisabled_mA0E7C1A446C04D7998C902BAA933460DA3D3C18B_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___m_AcceptClicksIfDisabled_11;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Clickable_set_active_m5A9F66452B394E4B3A58FB79185281B6DB6D5DFE_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CactiveU3Ek__BackingField_8 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Clickable_get_active_m1885E6AB31D356D4227AD0F212E474C906A540AD_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CactiveU3Ek__BackingField_8;
|
|
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 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 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 void Clickable_set_lastMousePosition_m62DECE599D6299F5C39D0D9807595C7172BAEA9D_inline (Clickable_tED3E313565F64BDF5DA9D3FE0FEFFD0E17E53834* __this, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_value;
|
|
__this->___U3ClastMousePositionU3Ek__BackingField_9 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool IMGUIContainer_get_focusOnlyIfHasFocusableControls_mC1087D0F8DA51A70FD651042D1D8795DB4BE9E80_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CfocusOnlyIfHasFocusableControlsU3Ek__BackingField_81;
|
|
return L_0;
|
|
}
|
|
}
|
|
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 Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 Matrix4x4_get_identity_m6568A73831F3E2D587420D20FF423959D7D8AB56_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_0 = ((Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_StaticFields*)il2cpp_codegen_static_fields_for(Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6_il2cpp_TypeInfo_var))->___identityMatrix_17;
|
|
V_0 = L_0;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_unspecified_m9FB894AACF20C8B223620A79F72B64B674DA4E96_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CunspecifiedU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IMGUIContainer_set_contextType_m937F47F6F399E6A209CFB3A25DDE6BCB0A2FB17F_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CcontextTypeU3Ek__BackingField_75 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Focusable_set_focusable_m85547438A92A464B90AB91ACBD458677A0BA41CB_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CfocusableU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* VisualElement_get_generateVisualContent_m11390D5634144E49934046B08681F7B7F0A94986_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* L_0 = __this->___U3CgenerateVisualContentU3Ek__BackingField_48;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElement_set_generateVisualContent_m1D95FEC130DF500C82FAAC2537BBF7FEE2519C15_inline (VisualElement_t2667F9D19E62C7A315927506C06F223AB9234115* __this, Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Action_1_t3DC3411926243F1DB9C330F8E105B904E38C1A0B* L_0 = ___0_value;
|
|
__this->___U3CgenerateVisualContentU3Ek__BackingField_48 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CgenerateVisualContentU3Ek__BackingField_48), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D RepaintData_get_currentWorldClip_mE52CAF22424660749DDE20C3E02B15E735FC05DF_inline (RepaintData_t90534752135661579EC254884F550545D001B5EA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = __this->___U3CcurrentWorldClipU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void IMGUIContainer_set_lastWorldClip_mC822DD231DA4F87845FB5FAD4F5BB36CDE429AF6_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = ___0_value;
|
|
__this->___U3ClastWorldClipU3Ek__BackingField_68 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void FocusController_set_imguiKeyboardControl_mF0465DDC02D3633ABB46765EA4D0B84263629155_inline (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CimguiKeyboardControlU3Ek__BackingField_5 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_none_mF1681D2A13FA909305F76B62CABFAF3139B9A016_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3CnoneU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusChangeDirection_get_left_mC921347E5D037C1D96D254C565831368C7C00183_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* L_0 = ((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Left_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* VisualElementFocusChangeDirection_get_right_m7ABCCCB1E11E601279097312838B4CB93AC9BD9F_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var);
|
|
VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C* L_0 = ((VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementFocusChangeDirection_tD1DD80791661F047CF3190012233938B756F871C_il2cpp_TypeInfo_var))->___s_Right_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t FocusController_get_imguiKeyboardControl_mE4C649D44C402954EE90C4B648A0EA349A999AEA_inline (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CimguiKeyboardControlU3Ek__BackingField_5;
|
|
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 Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 RepaintData_get_currentOffset_m3892F6A8C226B0710B9A149DDAAF87E1B208675F_inline (RepaintData_t90534752135661579EC254884F550545D001B5EA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Matrix4x4_tDB70CF134A14BA38190C59AA700BCE10E2AED3E6 L_0 = __this->___U3CcurrentOffsetU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* RepaintData_get_repaintEvent_mFF94EDCD02BDF49EC4C8DF4A34DA0AADAD177F2E_inline (RepaintData_t90534752135661579EC254884F550545D001B5EA* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Event_tEBC6F24B56CE22B9C9AD1AC6C24A6B83BC3860CB* L_0 = __this->___U3CrepaintEventU3Ek__BackingField_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* EventDispatcher_get_pointerState_mC4FD7936160D687BC2370EDAF719E295BCB85B80_inline (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
PointerDispatchState_t145BB8BB02690F87487325596E690295E39A383A* L_0 = __this->___U3CpointerStateU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 EventBase_get_originalMousePosition_mCFBF87CA4B5FAC3020630860CDEBB332A189C78A_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3CoriginalMousePositionU3Ek__BackingField_14;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR 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 float Mathf_Min_m747CA71A9483CDB394B13BD0AD048EE17E48FFE4_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
if ((((float)L_0) < ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR 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 Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D IMGUIContainer_get_lastWorldClip_m8C52B289F6A977B23F442ADA3D3E6250D8115C6D_inline (IMGUIContainer_t2BB1312DCDFA8AC98E9ADA9EA696F2328A598A26* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Rect_tA04E0F8A1830E767F40FB27ECD8D309303571F0D L_0 = __this->___U3ClastWorldClipU3Ek__BackingField_68;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* UxmlTraits_get_focusIndex_mA04335E58B6371CEA9F27B3DB87FDBBAD44457C3_inline (UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UxmlIntAttributeDescription_tFDF4F77C2CD7C4790E8E135B0F353699D19CB5B4* L_0 = __this->___U3CfocusIndexU3Ek__BackingField_6;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* UxmlTraits_get_focusable_m672D1BF4B4ECA421F11891639C82E4BEF4FBD650_inline (UxmlTraits_t45D4AB9B0148A110826C5201495FF23814A12E4B* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
UxmlBoolAttributeDescription_t86EA1242C539B39911E63699A4AE0C47918701CE* L_0 = __this->___U3CfocusableU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Color_tD001788D726C3A7F1379BEED0260B9591F440C1F Color_get_white_m068F5AF879B0FCA584E3693F762EA41BB65532C6_inline (const RuntimeMethod* method)
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_0;
|
|
memset((&L_0), 0, sizeof(L_0));
|
|
Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline((&L_0), (1.0f), (1.0f), (1.0f), (1.0f), /*hidden argument*/NULL);
|
|
V_0 = L_0;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
Color_tD001788D726C3A7F1379BEED0260B9591F440C1F L_1 = V_0;
|
|
return L_1;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Focusable_set_tabIndex_m1D41B758C7AA057707AE7CC919ED868075575E96_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CtabIndexU3Ek__BackingField_2 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
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 Focusable_get_tabIndex_mC676871EBF0337A7609B71C8BA92F38F8D611CCE_inline (Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CtabIndexU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* EventBase_get_leafTarget_m04359C6A144D1D92913C96EA6410ED01955D438E_inline (EventBase_tD7F89B936EB8074AE31E7B15976C072277371F7C* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CleafTargetU3Ek__BackingField_8;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject* FocusController_get_focusRing_m605E2D611EC0BE81B08D3DBA4C596E1B834AC02B_inline (FocusController_t5D2E45F2CCBE3B7082DE4088EE03C2E8F736011A* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
RuntimeObject* L_0 = __this->___U3CfocusRingU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Vector2_op_Equality_m6F2E069A50E787D131261E5CB25FC9E03F95B5E1_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_lhs, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_rhs, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_lhs;
|
|
float L_1 = L_0.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_rhs;
|
|
float L_3 = L_2.___x_0;
|
|
V_0 = ((float)il2cpp_codegen_subtract(L_1, L_3));
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_lhs;
|
|
float L_5 = L_4.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_6 = ___1_rhs;
|
|
float L_7 = L_6.___y_1;
|
|
V_1 = ((float)il2cpp_codegen_subtract(L_5, L_7));
|
|
float L_8 = V_0;
|
|
float L_9 = V_0;
|
|
float L_10 = V_1;
|
|
float L_11 = V_1;
|
|
V_2 = (bool)((((float)((float)il2cpp_codegen_add(((float)il2cpp_codegen_multiply(L_8, L_9)), ((float)il2cpp_codegen_multiply(L_10, L_11))))) < ((float)(9.99999944E-11f)))? 1 : 0);
|
|
goto IL_002e;
|
|
}
|
|
|
|
IL_002e:
|
|
{
|
|
bool L_12 = V_2;
|
|
return L_12;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR 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 Vector2_GetHashCode_mED8670C0E122B7ED0DAB4C3381ADFF04B75E0B03_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7* __this, const RuntimeMethod* method)
|
|
{
|
|
int32_t V_0 = 0;
|
|
{
|
|
float* L_0 = (float*)(&__this->___x_0);
|
|
int32_t L_1;
|
|
L_1 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_0, NULL);
|
|
float* L_2 = (float*)(&__this->___y_1);
|
|
int32_t L_3;
|
|
L_3 = Single_GetHashCode_mC3F1E099D1CF165C2D71FBCC5EF6A6792F9021D2(L_2, NULL);
|
|
V_0 = ((int32_t)(L_1^((int32_t)(L_3<<2))));
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
int32_t L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR 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 Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 Vector2_LerpUnclamped_mB0B50875D4509E21FF43F4D87610333D55E6A44F_inline (Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___0_a, Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 ___1_b, float ___2_t, const RuntimeMethod* method)
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 V_0;
|
|
memset((&V_0), 0, sizeof(V_0));
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = ___0_a;
|
|
float L_1 = L_0.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_2 = ___1_b;
|
|
float L_3 = L_2.___x_0;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_4 = ___0_a;
|
|
float L_5 = L_4.___x_0;
|
|
float L_6 = ___2_t;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_7 = ___0_a;
|
|
float L_8 = L_7.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_9 = ___1_b;
|
|
float L_10 = L_9.___y_1;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_11 = ___0_a;
|
|
float L_12 = L_11.___y_1;
|
|
float L_13 = ___2_t;
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_14;
|
|
memset((&L_14), 0, sizeof(L_14));
|
|
Vector2__ctor_m9525B79969AFFE3254B303A40997A56DEEB6F548_inline((&L_14), ((float)il2cpp_codegen_add(L_1, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_3, L_5)), L_6)))), ((float)il2cpp_codegen_add(L_8, ((float)il2cpp_codegen_multiply(((float)il2cpp_codegen_subtract(L_10, L_12)), L_13)))), /*hidden argument*/NULL);
|
|
V_0 = L_14;
|
|
goto IL_0035;
|
|
}
|
|
|
|
IL_0035:
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_15 = V_0;
|
|
return L_15;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void EventDispatcher_set_processingEvents_mA0D599A467E0C916B87517A95C90B9D5F490C542_inline (EventDispatcher_t9BC38CC96E93EAD1D818EE751260FE4687B0D398* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CprocessingEventsU3Ek__BackingField_9 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TemplateContainer_set_templateId_m0E14566E4F401DDFB2DC0222836842DDE57806B1_inline (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, String_t* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = ___0_value;
|
|
__this->___U3CtemplateIdU3Ek__BackingField_67 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtemplateIdU3Ek__BackingField_67), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* CreationContext_get_visualTreeAsset_m478AAEFDA03B37814BAE57058C7614528E1C2A42_inline (CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
VisualTreeAsset_tFB5BF81F0780A412AE5A7C2C552B3EEA64EA2EEB* L_0 = __this->___U3CvisualTreeAssetU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR String_t* TemplateContainer_get_templateId_m33148C018084F7A90609850FF61B74347BFC0A4C_inline (TemplateContainer_tDF6DDDD82C75A6332F0194C2B39AF157F6342DA2* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
String_t* L_0 = __this->___U3CtemplateIdU3Ek__BackingField_67;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR List_1_t70EE7982F45810D4B024CF720D910E67974A3094* CreationContext_get_attributeOverrides_m45F8DFA6FD690CD45E801AACCA682B387904EF8C_inline (CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
List_1_t70EE7982F45810D4B024CF720D910E67974A3094* L_0 = __this->___U3CattributeOverridesU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* CreationContext_get_slotInsertionPoints_mA3E7A2671AAAAA39B4654437B75CFF8961B06DFB_inline (CreationContext_t9C57B5BE551CCE200C0A2C72711BFF9DA298C257* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Dictionary_2_t41165BF747F041590086BE39A59BE164430A3CEF* L_0 = __this->___U3CslotInsertionPointsU3Ek__BackingField_3;
|
|
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 void UxmlAttributeDescription_set_use_mFD75FD3BD463C53DE6BA50A97E8703E29904E42D_inline (UxmlAttributeDescription_t742D021489DB2B564142146CAAAC3F9191825EF2* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CuseU3Ek__BackingField_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Max_mF5379E63D2BBAC76D090748695D833934F8AD051_inline (float ___0_a, float ___1_b, const RuntimeMethod* method)
|
|
{
|
|
float V_0 = 0.0f;
|
|
float G_B3_0 = 0.0f;
|
|
{
|
|
float L_0 = ___0_a;
|
|
float L_1 = ___1_b;
|
|
if ((((float)L_0) > ((float)L_1)))
|
|
{
|
|
goto IL_0008;
|
|
}
|
|
}
|
|
{
|
|
float L_2 = ___1_b;
|
|
G_B3_0 = L_2;
|
|
goto IL_0009;
|
|
}
|
|
|
|
IL_0008:
|
|
{
|
|
float L_3 = ___0_a;
|
|
G_B3_0 = L_3;
|
|
}
|
|
|
|
IL_0009:
|
|
{
|
|
V_0 = G_B3_0;
|
|
goto IL_000c;
|
|
}
|
|
|
|
IL_000c:
|
|
{
|
|
float L_4 = V_0;
|
|
return L_4;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusChangeDirection_get_lastValue_m52B79A0EB6A80606939B69A21ABF225C558B5051_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var);
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = ((FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_StaticFields*)il2cpp_codegen_static_fields_for(FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF_il2cpp_TypeInfo_var))->___U3ClastValueU3Ek__BackingField_2;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementFocusChangeTarget_set_target_m4C370F63B4F101E13717910B4B57953BF3BDDB0C_inline (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = ___0_value;
|
|
__this->___U3CtargetU3Ek__BackingField_5 = L_0;
|
|
Il2CppCodeGenWriteBarrier((void**)(&__this->___U3CtargetU3Ek__BackingField_5), (void*)L_0);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void VisualElementFocusRing_set_defaultFocusOrder_mAC9B8A1BF3794CD876D494D2C39A935B60E290E2_inline (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, int32_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = ___0_value;
|
|
__this->___U3CdefaultFocusOrderU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t VisualElementFocusRing_get_defaultFocusOrder_m203045C5C38AE34531DB2B05436514C4EB34CD2A_inline (VisualElementFocusRing_t8965E2C7F4AC653F2C416E2B81F66E51FE8EEFE3* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CdefaultFocusOrderU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* VisualElementFocusChangeTarget_get_target_mBA38952FC20D275B53503D14F2A8F9DE36586961_inline (VisualElementFocusChangeTarget_t0179C01AB4F011FA3A5292A3FE63702A9603E0BD* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Focusable_t39F2BAF0AF6CA465BC2BEDAF9B5B2CF379B846D0* L_0 = __this->___U3CtargetU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimerState_get_start_m848A6F2EB5D34AA83AB401FEEC410D7685C2EB2E_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CstartU3Ek__BackingField_0;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerState_set_start_m53092239224A3793D0ED6BE94BCB2D47BE8A9579_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CstartU3Ek__BackingField_0 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t TimerState_get_now_m13E7E91ED9B7D94D4C68F8E27D1567F49431DB62_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CnowU3Ek__BackingField_1;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TimerState_set_now_mCB7E8520AC475C4B107AEB4FFBB2C7DB78613C6B_inline (TimerState_t82C7C29B095D6ACDC06AC172C269E9D5F0508ECE* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CnowU3Ek__BackingField_1 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScheduledItem_set_startMs_m0953A2B9FF6E45514E90635E6E7763F7DAD6A59C_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CstartMsU3Ek__BackingField_3 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_delayMs_m7F18FB89F7CBF65DBB442B14ABF78521ED9C3412_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CdelayMsU3Ek__BackingField_4;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_startMs_m9E6A3E6FE5D0ED4888E2E0E496DDF1FEF50D0133_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CstartMsU3Ek__BackingField_3;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_intervalMs_m4704C59E1316CE43604B2154D0912A4835C78151_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CintervalMsU3Ek__BackingField_5;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ScheduledItem_set_delayMs_m941D24B605083F1B2F7285FB04E0A01D4701C3F1_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, int64_t ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = ___0_value;
|
|
__this->___U3CdelayMsU3Ek__BackingField_4 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int64_t ScheduledItem_get_endTimeMs_m9E3111F4A4104BC573DDF07C51C13DF3B8C350CE_inline (ScheduledItem_t423152D61DCAD8E5EC98FB4DEFC04FB023EDADE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int64_t L_0 = __this->___U3CendTimeMsU3Ek__BackingField_6;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD VisualElementAnimationSystem_get_stylePropertyAnimationProfilerMarker_m9D89C41EB40463C80925CC5E169FD450EFE22DC9_inline (const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
il2cpp_codegen_runtime_class_init_inline(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var);
|
|
ProfilerMarker_tA256E18DA86EDBC5528CE066FC91C96EE86501AD L_0 = ((VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_StaticFields*)il2cpp_codegen_static_fields_for(VisualElementAnimationSystem_t234427A8D095436E29A167AF646B5B5B2908D5A7_il2cpp_TypeInfo_var))->___s_StylePropertyAnimationProfilerMarker_9;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TextElement_set_isElided_m5B22A9B2045357427FC695C27B6A775C58A27D60_inline (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, bool ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = ___0_value;
|
|
__this->___U3CisElidedU3Ek__BackingField_73 = L_0;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Single_IsNaN_mFE637F6ECA9F7697CE8EFF56427858F4C5EDF75D_inline (float ___0_f, const RuntimeMethod* method)
|
|
{
|
|
static bool s_Il2CppMethodInitialized;
|
|
if (!s_Il2CppMethodInitialized)
|
|
{
|
|
il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
s_Il2CppMethodInitialized = true;
|
|
}
|
|
{
|
|
float L_0 = ___0_f;
|
|
il2cpp_codegen_runtime_class_init_inline(BitConverter_t6E99605185963BC12B3D369E13F2B88997E64A27_il2cpp_TypeInfo_var);
|
|
int32_t L_1;
|
|
L_1 = BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline(L_0, NULL);
|
|
return (bool)((((int32_t)((int32_t)(L_1&((int32_t)2147483647LL)))) > ((int32_t)((int32_t)2139095040)))? 1 : 0);
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp_mEB9AEA827D27D20FCC787F7375156AF46BB12BBF_inline (float ___0_value, float ___1_min, float ___2_max, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
bool V_1 = false;
|
|
float V_2 = 0.0f;
|
|
{
|
|
float L_0 = ___0_value;
|
|
float L_1 = ___1_min;
|
|
V_0 = (bool)((((float)L_0) < ((float)L_1))? 1 : 0);
|
|
bool L_2 = V_0;
|
|
if (!L_2)
|
|
{
|
|
goto IL_000e;
|
|
}
|
|
}
|
|
{
|
|
float L_3 = ___1_min;
|
|
___0_value = L_3;
|
|
goto IL_0019;
|
|
}
|
|
|
|
IL_000e:
|
|
{
|
|
float L_4 = ___0_value;
|
|
float L_5 = ___2_max;
|
|
V_1 = (bool)((((float)L_4) > ((float)L_5))? 1 : 0);
|
|
bool L_6 = V_1;
|
|
if (!L_6)
|
|
{
|
|
goto IL_0019;
|
|
}
|
|
}
|
|
{
|
|
float L_7 = ___2_max;
|
|
___0_value = L_7;
|
|
}
|
|
|
|
IL_0019:
|
|
{
|
|
float L_8 = ___0_value;
|
|
V_2 = L_8;
|
|
goto IL_001d;
|
|
}
|
|
|
|
IL_001d:
|
|
{
|
|
float L_9 = V_2;
|
|
return L_9;
|
|
}
|
|
}
|
|
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 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 TextElement_get_isElided_m338FA73595E99F8ED578C39CB0BB380067B73026_inline (TextElement_tD56C5044CCC5552285DC8A9950CC60448C80FEE0* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CisElidedU3Ek__BackingField_73;
|
|
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 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 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 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 Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 MouseEventBase_1_get_localMousePosition_m6FB2AFCA7C36A008619542851C365CAD9C3864C5_gshared_inline (MouseEventBase_1_t5B5081D29C8BECF72DF89EF50BB137E251C48228* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector2_t1FD6F485C871E832B347AB2DC8CBA08B739D8DF7 L_0 = __this->___U3ClocalMousePositionU3Ek__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 Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 PointerEventBase_1_get_localPosition_m2A8E02DBA7F7F7A8519822E757D084204BE7D90D_gshared_inline (PointerEventBase_1_tCC99C5B34F8B8F012105435FC4A3CE4FD098045F* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2 L_0 = __this->___U3ClocalPositionU3Ek__BackingField_24;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t PointerCaptureEventBase_1_get_pointerId_m4E4F2967D333957F5F474673769B7FFFC128A89A_gshared_inline (PointerCaptureEventBase_1_t265201C952224C804DDA3B4C56A4CA46B8A665CC* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->___U3CpointerIdU3Ek__BackingField_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* FocusEventBase_1_get_direction_mCCB2D3D34DDDE8B4356F24D58ED52CC0F008F7D3_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
FocusChangeDirection_t95F4784CF68331792EB9077AEAB01E17822991EF* L_0 = __this->___U3CdirectionU3Ek__BackingField_19;
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool FocusEventBase_1_get_IsFocusDelegated_m59F1CF51ACF3A0C6CC65B946635F1A5692443DAB_gshared_inline (FocusEventBase_1_t5C59DF705446E1FD98D905F21B5B80F74D2D16A8* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = __this->___U3CIsFocusDelegatedU3Ek__BackingField_21;
|
|
return L_0;
|
|
}
|
|
}
|
|
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_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 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 bool Nullable_1_get_HasValue_m14F273FB376DF00D727434CDCD28AB4EDCC14C3C_gshared_inline (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
bool L_0 = *(bool*)il2cpp_codegen_get_instance_field_data_pointer(__this, il2cpp_rgctx_field(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 1),0));
|
|
return L_0;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Nullable_1_GetValueOrDefault_mC057FBD944AF068B90EBDD0B496231A01B2A4228_gshared_inline (Nullable_1_t71C4EA4E848DBD7A4A97704069FB951159A3A339* __this, Il2CppFullySharedGenericStruct* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_tF1352992D99D495C6F2BE3DC43F8A00BAD6B2EAA = il2cpp_codegen_sizeof(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 0));
|
|
// T
|
|
const Il2CppFullySharedGenericStruct L_0 = alloca(SizeOf_T_tF1352992D99D495C6F2BE3DC43F8A00BAD6B2EAA);
|
|
{
|
|
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),1)), SizeOf_T_tF1352992D99D495C6F2BE3DC43F8A00BAD6B2EAA);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_T_tF1352992D99D495C6F2BE3DC43F8A00BAD6B2EAA);
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Queue_1_get_Count_mE6103188ACDEC07F90F2D2986554730D18029750_gshared_inline (Queue_1_t00794C5F46E3254E713B03F949E6AB3A1AB1FD41* __this, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = __this->____size_3;
|
|
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_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 void Enumerator_get_Current_m51282E47C90E55BF2D96A0D329869ABC122A85A0_gshared_inline (Enumerator_t0D36BD6D63D775CDEAF8501F5A252535FFFF52CB* __this, Il2CppFullySharedGenericAny* il2cppRetVal, const RuntimeMethod* method)
|
|
{
|
|
// sizeof(T)
|
|
const uint32_t SizeOf_T_t6D22409F37413B725563BF484486F55FB7202BB8 = il2cpp_codegen_sizeof(il2cpp_rgctx_data(InitializedTypeInfo(method->klass)->rgctx_data, 2));
|
|
// T
|
|
const Il2CppFullySharedGenericAny L_0 = alloca(SizeOf_T_t6D22409F37413B725563BF484486F55FB7202BB8);
|
|
{
|
|
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_t6D22409F37413B725563BF484486F55FB7202BB8);
|
|
il2cpp_codegen_memcpy(il2cppRetVal, L_0, SizeOf_T_t6D22409F37413B725563BF484486F55FB7202BB8);
|
|
return;
|
|
}
|
|
}
|
|
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 Color__ctor_m3786F0D6E510D9CFA544523A955870BD2A514C8C_inline (Color_tD001788D726C3A7F1379BEED0260B9591F440C1F* __this, float ___0_r, float ___1_g, float ___2_b, float ___3_a, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_r;
|
|
__this->___r_0 = L_0;
|
|
float L_1 = ___1_g;
|
|
__this->___g_1 = L_1;
|
|
float L_2 = ___2_b;
|
|
__this->___b_2 = L_2;
|
|
float L_3 = ___3_a;
|
|
__this->___a_3 = L_3;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m376936E6B999EF1ECBE57D990A386303E2283DE0_inline (Vector3_t24C512C7B96BBABAD472002D0BA2BDA40A5A80B2* __this, float ___0_x, float ___1_y, float ___2_z, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
float L_0 = ___0_x;
|
|
__this->___x_2 = L_0;
|
|
float L_1 = ___1_y;
|
|
__this->___y_3 = L_1;
|
|
float L_2 = ___2_z;
|
|
__this->___z_4 = L_2;
|
|
return;
|
|
}
|
|
}
|
|
IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Mathf_Clamp01_mA7E048DBDA832D399A581BE4D6DED9FA44CE0F14_inline (float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
bool V_0 = false;
|
|
float V_1 = 0.0f;
|
|
bool V_2 = false;
|
|
{
|
|
float L_0 = ___0_value;
|
|
V_0 = (bool)((((float)L_0) < ((float)(0.0f)))? 1 : 0);
|
|
bool L_1 = V_0;
|
|
if (!L_1)
|
|
{
|
|
goto IL_0015;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (0.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0015:
|
|
{
|
|
float L_2 = ___0_value;
|
|
V_2 = (bool)((((float)L_2) > ((float)(1.0f)))? 1 : 0);
|
|
bool L_3 = V_2;
|
|
if (!L_3)
|
|
{
|
|
goto IL_0029;
|
|
}
|
|
}
|
|
{
|
|
V_1 = (1.0f);
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_0029:
|
|
{
|
|
float L_4 = ___0_value;
|
|
V_1 = L_4;
|
|
goto IL_002d;
|
|
}
|
|
|
|
IL_002d:
|
|
{
|
|
float L_5 = V_1;
|
|
return L_5;
|
|
}
|
|
}
|
|
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 int32_t BitConverter_SingleToInt32Bits_mC760C7CFC89725E3CF68DC45BE3A9A42A7E7DA73_inline (float ___0_value, const RuntimeMethod* method)
|
|
{
|
|
{
|
|
int32_t L_0 = *((int32_t*)((uintptr_t)(&___0_value)));
|
|
return L_0;
|
|
}
|
|
}
|
|
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;
|
|
}
|
|
}
|