#include "pch-cpp.hpp" #ifndef _MSC_VER # include #else # include #endif #include #include template struct VirtFuncInvoker0 { 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); } }; struct VirtActionInvoker0 { 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 struct VirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct VirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; template struct VirtFuncInvoker5 { typedef R (*Func)(void*, T1, T2, T3, T4, T5, const RuntimeMethod*); static inline R Invoke (Il2CppMethodSlot slot, RuntimeObject* obj, T1 p1, T2 p2, T3 p3, T4 p4, T5 p5) { const VirtualInvokeData& invokeData = il2cpp_codegen_get_virtual_invoke_data(slot, obj); return ((Func)invokeData.methodPtr)(obj, p1, p2, p3, p4, p5, invokeData.method); } }; template struct VirtActionInvoker1 { 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 struct VirtActionInvoker2 { 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 struct GenericVirtFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericVirtFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct GenericVirtActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_virtual_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; template 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 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 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); } }; 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 struct GenericInterfaceFuncInvoker1 { typedef R (*Func)(void*, T1, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, invokeData.method); } }; template struct GenericInterfaceFuncInvoker2 { typedef R (*Func)(void*, T1, T2, const RuntimeMethod*); static inline R Invoke (const RuntimeMethod* method, RuntimeObject* obj, T1 p1, T2 p2) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); return ((Func)invokeData.methodPtr)(obj, p1, p2, invokeData.method); } }; struct GenericInterfaceActionInvoker0 { typedef void (*Action)(void*, const RuntimeMethod*); static inline void Invoke (const RuntimeMethod* method, RuntimeObject* obj) { VirtualInvokeData invokeData; il2cpp_codegen_get_generic_interface_invoke_data(method, obj, &invokeData); ((Action)invokeData.methodPtr)(obj, invokeData.method); } }; // System.Action`1 struct Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31; // System.Action`1 struct Action_1_t75B6371B869E36A42B0DFFC8D8B2630F1D659A6C; // System.Action`1 struct Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455; // System.Action`1 struct Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91; // System.Action`2 struct Action_2_tBA82D2430D3596594262E1ACAD640A8EEB5DB2F2; // System.Action`3 struct Action_3_t1898E42A573C06F569B73238FC1A38625F7D9021; // System.Action`3 struct Action_3_t3758EBDA081B24412ED63A3941C20EBC3E5CFCB0; // System.Action`4 struct Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A; // System.Action`4 struct Action_4_t7BBA57B6362983DFBF3E6DDFD0FCB65D9D4E511A; // System.Action`4 struct Action_4_t0B9EF883AC063A1E200FE9EB95FC8C272CB243D8; // System.Action`4 struct Action_4_t9E12995424CAFA0450021E48FF6FE4ABF2A895EE; // System.Action`4 struct Action_4_tC40012D9691E5DE5C97D2E1EF4FE6A87C8C0FC3E; // System.Comparison`1 struct Comparison_1_t56DA2BF5E200CD0955B14F85C5669DD0B3F17E15; // System.Comparison`1 struct Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0; // System.Comparison`1 struct Comparison_1_t2A0FDAFB7FAEC9EA981CEC81112645F678674713; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t60275C105022D515270F8E8181130D8B1020CB74; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC; // System.Collections.Generic.Dictionary`2 struct Dictionary_2_tF1A1BB8BB6BCB70F241AA8204D801193E9E0211A; // System.Func`2 struct Func_2_t557464437C03A4FBA07635260F8075F8249A7CB8; // System.Collections.Generic.IEnumerable`1 struct IEnumerable_1_t1CEFC4032D36100FE58999A10DFB02F5139BC4AF; // System.Collections.Generic.List`1 struct List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E; // System.Collections.Generic.List`1 struct List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3; // System.Collections.Generic.List`1 struct List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF; // System.Collections.Generic.List`1 struct List_1_t56455D217921470E52E7D33A1794256E31084DD8; // System.Collections.Generic.List`1 struct List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048; // System.Collections.Generic.List`1 struct List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4; // System.Collections.Generic.List`1 struct List_1_t615E6F3A4C2A54B096257A75A930596B3A8DDC4B; // System.Collections.Generic.List`1 struct List_1_tE7A3E65EF4EFEB8E88A946737890AE19BB382B79; // System.Collections.Generic.List`1 struct List_1_t3B0820C8464D06CB2C98E3D7C75B224815E79323; // System.Collections.Generic.List`1 struct List_1_t2DE3B74946EBD10D047A5D64DF04DE92A3B067D8; // System.Collections.Generic.List`1 struct List_1_t89FE3B3C624BEEC726B8850113C0F37A0D0CF8FF; // System.Collections.Generic.List`1 struct List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D; // UnityEngine.UI.CoroutineTween.TweenRunner`1 struct TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3; // System.WeakReference`1 struct WeakReference_1_t31103BF0AB213236F697B644B27B7480DEF79D5E; // System.Byte[][] struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D; // UnityEngine.AssetBundle[] struct AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; // UnityEngine.Color32[] struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; // System.Int16[] struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; // UnityEngine.MeshRenderer[] struct MeshRendererU5BU5D_t535468079DEF88AD38546DC5D04E9102C401D228; // OVROverlay[] struct OVROverlayU5BU5D_t47CED282C83A22FEF097666B7182AB0538A6B2D0; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; // System.Single[] struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; // System.Diagnostics.StackTrace[] struct StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; // System.Net.Sockets.TcpClient[] struct TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A; // UnityEngine.Texture[] struct TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150; // System.Type[] struct TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755; // System.UInt16[] struct UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67; // UnityEngine.Vector2[] struct Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA; // OVRHaptics/OVRHapticsChannel[] struct OVRHapticsChannelU5BU5D_t26BA3E1C8D54352F52B58BEBC5AD9BC08A740059; // OVRHaptics/OVRHapticsOutput[] struct OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D; // OVRInput/HapticInfo[] struct HapticInfoU5BU5D_t211B0C9EE0EA90574B4037CCF26B3B52375D8751; // OVRInput/OpenVRControllerDetails[] struct OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8; // OVROverlay/LayerTexture[] struct LayerTextureU5BU5D_tD59724CCA852586FDC68CC76E1DE5B180B68B8CE; // OVRPlugin/AppPerfFrameStats[] struct AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A; // OVRPlugin/Bone[] struct BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981; // OVRPlugin/BoneCapsule[] struct BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295; // OVRPlugin/Fovf[] struct FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D; // OVRPlugin/Quatf[] struct QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5; // OVRPlugin/Rectf[] struct RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F; // OVRPlugin/Recti[] struct RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00; // OVRPlugin/SpatialEntityComponentType[] struct SpatialEntityComponentTypeU5BU5D_t36EC2C947308D99EFA43208D6523D0E43A270BA8; // OVRPlugin/SpatialEntityUuid[] struct SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093; // OVRPlugin/TrackingConfidence[] struct TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322; // OVRPlugin/Vector2f[] struct Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81; // OVRPlugin/Vector3f[] struct Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1; // OVRPlugin/Vector4f[] struct Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4; // OVRPlugin/Vector4s[] struct Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4; // OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker[] struct ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6; // UnityEngine.AssetBundle struct AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA; // UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86; // System.Reflection.Binder struct Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30; // UnityEngine.BoxCollider struct BoxCollider_tA530691AC1A3C9FE6428F68F98588FCB1BF9AAA5; // System.Globalization.Calendar struct Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A; // UnityEngine.Camera struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C; // UnityEngine.Canvas struct Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA; // UnityEngine.CanvasRenderer struct CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E; // UnityEngine.CapsuleCollider struct CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635; // System.Globalization.CodePageDataItem struct CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E; // System.Globalization.CompareInfo struct CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7; // System.Globalization.CultureData struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529; // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98; // System.Globalization.DateTimeFormatInfo struct DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90; // System.Text.DecoderFallback struct DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D; // System.Delegate struct Delegate_t; // System.DelegateData struct DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288; // System.Text.EncoderFallback struct EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827; // System.Net.EndPoint struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA; // System.Threading.EventWaitHandle struct EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319; // UnityEngine.Gradient struct Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24; // System.Collections.Hashtable struct Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC; // System.IAsyncResult struct IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370; // System.Collections.IDictionary struct IDictionary_t99871C56B8EC2452AC5C4CF3831695E617B89D3A; // System.Collections.IEnumerator struct IEnumerator_t5956F3AFB7ECF1117E3BC5890E7FC7B7F7A04105; // System.IFormatProvider struct IFormatProvider_tF2AECC4B14F41D36718920D67F930CED940412DF; // System.Net.IPAddress struct IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE; // System.Net.IPEndPoint struct IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E; // OVRSimpleJSON.JSONNode struct JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B; // OVRSimpleJSON.JSONNumber struct JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F; // OVRSimpleJSON.JSONObject struct JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4; // UnityEngine.LineRenderer struct LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967; // System.Threading.ManualResetEvent struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE; // System.Reflection.MemberFilter struct MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81; // UnityEngine.Mesh struct Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6; // UnityEngine.MeshFilter struct MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A; // UnityEngine.MeshRenderer struct MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B; // System.Reflection.MethodInfo struct MethodInfo_t; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A; // System.Net.Sockets.NetworkStream struct NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339; // System.Globalization.NumberFormatInfo struct NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D; // OVRBoneCapsule struct OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F; // OVRBoundary struct OVRBoundary_tD61D7BB91BDB049797EFCC542682BCEC658B4EEF; // OVRCameraRig struct OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517; // OVRDisplay struct OVRDisplay_tF5034EBAB0DA4F06CA0F3CD89B81E383C433032E; // OVRGLTFLoader struct OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01; // OVRHapticsClip struct OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619; // OVRMixedRealityCaptureSettings struct OVRMixedRealityCaptureSettings_t83BE3A431BD6F52C2F2E6EE7A73394AE7DC99F8D; // OVRNativeBuffer struct OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0; // OVROverlay struct OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7; // OVRPassthroughLayer struct OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB; // OVRProfile struct OVRProfile_t50093ECE56A92AB8622A8E48DD458E8CEFE71C76; // OVRRuntimeController struct OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0; // OVRRuntimeSettings struct OVRRuntimeSettings_t3D2B8321092BAC35E39905B41D0690CEFD8AB343; // OVRSceneLoader struct OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3; // OVRScreenFade struct OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308; // OVRSkeleton struct OVRSkeleton_tE727DD0833515B8FCF6E7DE4BD16859BE26404EC; // OVRTrackedKeyboard struct OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4; // OVRTracker struct OVRTracker_tF07580E7AD8A4B9913B767CB1E7246CA0716599A; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A; // UnityEngine.RectTransform struct RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072; // UnityEngine.RenderTexture struct RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849; // UnityEngine.Renderer struct Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C; // UnityEngine.Rigidbody struct Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A; // System.Runtime.Serialization.SafeSerializationManager struct SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F; // Microsoft.Win32.SafeHandles.SafeWaitHandle struct SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1; // System.Threading.SemaphoreSlim struct SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385; // UnityEngine.Shader struct Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39; // System.Net.Sockets.Socket struct Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB; // System.String struct String_t; // System.Text.StringBuilder struct StringBuilder_t; // System.Net.Sockets.TcpClient struct TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE; // System.Net.Sockets.TcpListener struct TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B; // UnityEngine.UI.Text struct Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1; // System.Globalization.TextInfo struct TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C; // UnityEngine.Texture struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1; // System.Type struct Type_t; // UnityEngine.Events.UnityAction struct UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099; // System.Version struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C; // UnityEngine.UI.VertexHelper struct VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5; // UnityEngine.WaitForEndOfFrame struct WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4; // UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013; // UnityEngine.Camera/CameraCallback struct CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D; // OVRControllerTest/BoolMonitor struct BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1; // OVRGLTFLoader/<>c__DisplayClass16_0 struct U3CU3Ec__DisplayClass16_0_t0F271AD861E4457446EA28F2A62A60968C4B1C2E; // OVRHandTest/<>c struct U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F; // OVRHandTest/BoolMonitor struct BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626; // OVRHaptics/OVRHapticsChannel struct OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05; // OVRHaptics/OVRHapticsOutput struct OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D; // OVRInput/HapticInfo struct HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6; // OVRInput/OVRControllerBase struct OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF; // OVRInput/OVRControllerGamepadAndroid struct OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191; // OVRInput/OVRControllerGamepadMac struct OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924; // OVRInput/OVRControllerGamepadPC struct OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE; // OVRInput/OVRControllerHands struct OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D; // OVRInput/OVRControllerLHand struct OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926; // OVRInput/OVRControllerLTouch struct OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF; // OVRInput/OVRControllerRHand struct OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E; // OVRInput/OVRControllerRTouch struct OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE; // OVRInput/OVRControllerRemote struct OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457; // OVRInput/OVRControllerTouch struct OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245; // OVRManager/<>c struct U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E; // OVRManager/InstantiateMrcCameraDelegate struct InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4; // OVRNetwork/OVRNetworkTcpClient struct OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8; // OVRNetwork/OVRNetworkTcpServer struct OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA; // OVROverlay/ExternalSurfaceObjectCreated struct ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96; // OVRPassthroughLayer/<>c__DisplayClass10_0 struct U3CU3Ec__DisplayClass10_0_t315AFCB3B5BB2075D2D2616908508577B5525985; // OVRPassthroughLayer/<>c__DisplayClass9_0 struct U3CU3Ec__DisplayClass9_0_tEAC6F88D667E0A40E71FEFDC036FE784B1CCCAEC; // UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c struct U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B; // OVRPlugin/AppPerfStats struct AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5; // OVRPlugin/BoundaryGeometry struct BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470; // OVRPlugin/EventDataBuffer struct EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9; // OVRPlugin/GUID struct GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC; // OVRPlugin/KeyboardDescription struct KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E; // OVRPlugin/Ktx struct Ktx_t669F38C48356BFC8873F62B3B883E225D964410B; // OVRPlugin/LayerDesc struct LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780; // OVRPlugin/Media struct Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637; // OVRPlugin/Mesh struct Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E; // OVRPlugin/RenderModelPropertiesInternal struct RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43; // OVRPlugin/Skeleton struct Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099; // OVRPlugin/SpatialEntityFilterInfoIds struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730; // OVRPlugin/SpatialEntityQueryInfo struct SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722; // OVRRaycaster/<>c struct U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD; // OVRResources/<>c__DisplayClass2_0 struct U3CU3Ec__DisplayClass2_0_tF07D6041A80B6F44715DA2A741053A86E6E038B5; // OVRRuntimeController/d__14 struct U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA; // OVRSceneLoader/d__24 struct U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7; // OVRSceneLoader/d__25 struct U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D; // OVRScreenFade/d__25 struct U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC; // OVRSkeletonRenderer/BoneVisualization struct BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E; // OVRSkeletonRenderer/CapsuleVisualization struct CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28; // OVRSkeletonRenderer/IOVRSkeletonRendererDataProvider struct IOVRSkeletonRendererDataProvider_t6B02FFB2CD376E28433E315365BB071F17396227; // OVRSpectatorModeDomeTest/d__11 struct U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425; // OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer struct OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7; // OVRSystemPerfMetrics/PerfMetrics struct PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B; // OVRTrackedKeyboard/<>c struct U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B; // OVRTrackedKeyboard/d__74 struct U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474; // OVRTrackedKeyboard/d__73 struct U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599; // OVRTrackedKeyboard/d__81 struct U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D; // OVRTrackedKeyboard/d__83 struct U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500; // System.IO.Stream/ReadWriteTask struct ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974; // OVRControllerTest/BoolMonitor/BoolGenerator struct BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4; // OVRHandTest/BoolMonitor/BoolGenerator struct BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A; // OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker struct ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D; // OVRInput/OVRControllerBase/VirtualAxis1DMap struct VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7; // OVRInput/OVRControllerBase/VirtualAxis2DMap struct VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA; // OVRInput/OVRControllerBase/VirtualButtonMap struct VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF; // OVRInput/OVRControllerBase/VirtualNearTouchMap struct VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A; // OVRInput/OVRControllerBase/VirtualTouchMap struct VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC; IL2CPP_EXTERN_C RuntimeClass* AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Controller_tEEDA108639533B73057BAE8B95FE21725355C48F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Exception_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* EyeTextureFormat_tA6D50F360539FD57E20BCFB425C3E717E180A89E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* IntPtr_t_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* LayerLayout_t69210A1A9CCEF0BA738C09450D8AA2C9460F40DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* MrcCameraType_tA0C0F09054FEED61597585A592B5A72AD5DF6F68_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_0_1_0_tCA0A91720B4965A49CFBDE2BB8B46C45C0506363_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_0_1_1_tDBA6AC71AD154F15B030DA727A007698955CAC35_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_0_1_2_t9F1777A7676D69850A9FCE246B828AF39B37B21F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_0_1_3_t02842C0873561109CAACB9DFB89EA536B03CE6DB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_0_5_0_tC3F2B3F8B4CB16E8BA1CBF6523368CD534A8FC6B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_0_0_t7A7165DD6675CECD30E91119E2C52E21FE6511EA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_10_0_t0DB86A7DDD12A1BA29B958F15F2D2BEA2B8ACA78_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_11_0_t78D9B40FC078D1401B97BAF10425F4FD166FF515_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_12_0_tED05232B37787981D9EFBC2FF6D9B09B63F179E8_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_15_0_t33D48C3749C0197D1B6487D5D5AAF37377115C91_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_16_0_tA9EB48CC4CAB14D7009355FA1AA70D079D7F924C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_17_0_t04D4429D59A774AB70E76FCB013083375ACDA6A5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_18_0_t6554FAD6B9EF4306F89E47B14D3D2FFF0759B4D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_19_0_tE0652374D565ADA545D322BA86725747DD2C0F18_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_21_0_tB9C80014C524327C3350066E149A543AE1EF619D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_28_0_tF0B7D50816EA5B6A633C6C428992573947320565_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_29_0_t918278FFDFD85AAB45BDD32748CB748326A99CDB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_2_0_t86480FE48DC2A17D54962BE5255652B2CAE172FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_30_0_t4D250C144546622A0795A2F91B99E8E77BB5EDC2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_31_0_t8C43CCA8BA64FB271C032EDD8AF604AC7DA07D46_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_32_0_t693E99E48FBAB6F9EC9AE0284958D46A10112BC3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_34_0_t9F3B8A75B7A40F061C00A0F5354B3F7E5DCF6403_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_35_0_t51609337F43CCA6D6D0DF34912B4BF73906C8705_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_36_0_t1094A26C603F8CD2A54535DCC3E74434C3741ABC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_37_0_t23CF12293B399D5E79375E624C273FEF47F079FC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_39_0_t5E5BBE71ADDCAAF2353AA317E9B9456BEF8FE6D0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_3_0_t1670A3C38353D3938DCBD5377D6F9073CFD17637_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_40_0_tBA066085CDF028B94AE5EF9EAF6FE59B49229DF1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_41_0_t865D1E54DF6EAA3DE85B98D21CCFB5EC8DC3BDA0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_42_0_tFBBAC38B46711688EA744EC2739609E6EF095A49_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_43_0_t35BA9379F2B044991E2E9B5CAD1DA29ABFE07AEC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_44_0_t0DF156B1270FA4A8B5EA797E36FBCF02543E2533_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_46_0_tC3400A2C00B6D8EE38FD932CDD1C4F0A1ED21A42_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_47_0_tA3F6C267E50F56F86ED5EB532817040B8EAE048F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_48_0_tB369070283C048120D89034AA803B4BC3D3B2C34_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_50_0_t9EFA9357FF3FEF8C309DC6EE50F28377385FD921_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_51_0_t7B10C0008BFA569FB4619BB2D28EB3B1137647B9_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_52_0_t30E413ECB7211AE4893F53F474EF6B6D7F61BABC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_53_0_t9E3767EEB3CA2A0B34A76D5F7FD6767FF7AD4F2F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_55_0_tDCA8C7B9D9A46B3E59241FA312C9EF811A9CFE78_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_55_1_tEBBDE7CE8383D1C93474948609762A9723868E97_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_56_0_t8A33D176366CF62890EE8AD9878986B0980BEA3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_58_0_tE0F165BCC9707558309BE31DE2A44AA8FA0C0ADD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_59_0_t42CD637E323FB0EA06D160293FE5E247F157FD42_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_5_0_t6A85C8628F00CC1DF9984C6D56E2F7F8A0E8C6CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_60_0_tFC45B48EA6EFC0E25EC1CC710E9C4A4CBCA95E3A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_61_0_t37221D9E3C4918BD6E0C7198F29A09BBE1A77DCB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_62_0_t6459C076884CE1ACA2B2AC0DFFB731E00CB18FCA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_63_0_t41C3B110FD473A2D016105D3597E467398423C6B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_64_0_t8BADB40670843F14D970DF497770D145D19DF740_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_67_0_t520D6EB5DA725CF803E8C83168059AB3A4A636E3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_68_0_tD68BE9E69A7CCD84E81240104FD4CE0B0ABDDCFB_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_69_0_t8501AD6F6097431F5C11055E4F7B3155381936E1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_6_0_t4FD03ADC1458C7CEB4C56C3CA72D59EF7C2BCE86_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_7_0_t2AD10FF99244465E1A50F39303B92FFC45C9D450_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_8_0_tD6FEA7A91F5F105CD8843B0E2D5459C0218252E7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRP_1_9_0_tC543307A6CB01708A6E9EDEBBB3FA2D80BC65B65_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* OverlayShape_tF919BB207C80855BDF33A30CB464646F18826DB7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* RuntimeObject_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C RuntimeClass* WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var; IL2CPP_EXTERN_C String_t* _stringLiteral034E95B764C7F04918E4232C4F532EE7FEBD39EA; IL2CPP_EXTERN_C String_t* _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B; IL2CPP_EXTERN_C String_t* _stringLiteral0B5EC81DB3A7E99DD6ED84EECB633BAB54105865; IL2CPP_EXTERN_C String_t* _stringLiteral1187D2B39B7DDEAF8FE68782177C91FF0E0B98D0; IL2CPP_EXTERN_C String_t* _stringLiteral1708923037EA681607AB485F1A283D9C9CABA8E5; IL2CPP_EXTERN_C String_t* _stringLiteral1E11DDEEB724AD3406E3728566428721728F1A62; IL2CPP_EXTERN_C String_t* _stringLiteral2608588C385D3CE01583F2D62DC89077A6A043AB; IL2CPP_EXTERN_C String_t* _stringLiteral283D953D5A718826052D7CABF29ED6100F4B0FE5; IL2CPP_EXTERN_C String_t* _stringLiteral3ADC6EE78D777472770D1292033B14A399649C26; IL2CPP_EXTERN_C String_t* _stringLiteral3CD8BA18F33960DD303C36F2DB2999FE7B59D6AB; IL2CPP_EXTERN_C String_t* _stringLiteral3F5A76A6EFD255B87288234C880CAAD794F5CD3F; IL2CPP_EXTERN_C String_t* _stringLiteral40F25CA0D76D9E8F556848E95592BC4241B2F76B; IL2CPP_EXTERN_C String_t* _stringLiteral457979F1C04A0B981FED363114FC80299C515382; IL2CPP_EXTERN_C String_t* _stringLiteral48E09DD514BBD4C9E4AF28ED8A23D87B4144126C; IL2CPP_EXTERN_C String_t* _stringLiteral4ED37E028DAF6A6051712ECF16D493541C0DE09C; IL2CPP_EXTERN_C String_t* _stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318; IL2CPP_EXTERN_C String_t* _stringLiteral5CD508BB561A1E08FD169CFDC251B28531A431E8; IL2CPP_EXTERN_C String_t* _stringLiteral5ECA8F6B262FF8111FA2C3AF66DB25099D9346AE; IL2CPP_EXTERN_C String_t* _stringLiteral5EF702A821BCE5B36DDE7B4CE39A3D071DD13CC4; IL2CPP_EXTERN_C String_t* _stringLiteral6351FEA72E6FEA64FAC0F16B623B66326E1F82FE; IL2CPP_EXTERN_C String_t* _stringLiteral66B70291F72C704C47764C440901AB4CD0D5D9DA; IL2CPP_EXTERN_C String_t* _stringLiteral6740FFC755394B7CA81B6421DE962654C7155A81; IL2CPP_EXTERN_C String_t* _stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862; IL2CPP_EXTERN_C String_t* _stringLiteral6B65FDCC4E8C32741FEF6ECFD2D8D89760D43A43; IL2CPP_EXTERN_C String_t* _stringLiteral6D8A8131613224718E750F99069C304A6816CBE3; IL2CPP_EXTERN_C String_t* _stringLiteral738B42EA58E92B8EC359A10DF5560ABCA16F1DA5; IL2CPP_EXTERN_C String_t* _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D; IL2CPP_EXTERN_C String_t* _stringLiteral75C161F9DC3BCB0CC29B7D4D4C35DA27A0177ADB; IL2CPP_EXTERN_C String_t* _stringLiteral76C3D4024DE9EE847070E35CC5A197DC21F66FEE; IL2CPP_EXTERN_C String_t* _stringLiteral7A69078B1F3C8BF1B99BCA261B178909859DF28A; IL2CPP_EXTERN_C String_t* _stringLiteral7CB541CC4DF753F79B44E64590960740240EFCF1; IL2CPP_EXTERN_C String_t* _stringLiteral7E0D888AD2B37768070F720A6324E0D300832EFB; IL2CPP_EXTERN_C String_t* _stringLiteral7E2946B0195FA422A460E9E13AF65BC7E50C33BE; IL2CPP_EXTERN_C String_t* _stringLiteral82097C506C2DF7D20A917D134A69D64749DA1B9E; IL2CPP_EXTERN_C String_t* _stringLiteral82FF2E4A5CEA89085A6360163E86CB104CFC8CE8; IL2CPP_EXTERN_C String_t* _stringLiteral834C24914A794818188788A7179F9DE88ED5B4F1; IL2CPP_EXTERN_C String_t* _stringLiteral83F7325406C26EABB74F53C853EF630635DDEF8E; IL2CPP_EXTERN_C String_t* _stringLiteral95674ED6468AAF938DEE1233C9550EDD41B8581E; IL2CPP_EXTERN_C String_t* _stringLiteral958C9E2CB4146338612393E0D365F7C51BA96DDF; IL2CPP_EXTERN_C String_t* _stringLiteral98164E7992D3EADAC7D117F47FF63DF04B28F689; IL2CPP_EXTERN_C String_t* _stringLiteral9BF37059A69719214A60091BC5C2FCFD346916EA; IL2CPP_EXTERN_C String_t* _stringLiteralA83365DE47F10CF708EE1858733DE1AA5560C7D5; IL2CPP_EXTERN_C String_t* _stringLiteralAB017F6D6C155E62406CC65AB824948AF55A47F4; IL2CPP_EXTERN_C String_t* _stringLiteralAB4ED7E329C0615E473C2D266FC4E958CD9968A3; IL2CPP_EXTERN_C String_t* _stringLiteralAE59BC44B8A9FCADA788D5D8E4B7A0107CF0B5ED; IL2CPP_EXTERN_C String_t* _stringLiteralAEEAFA4FE16A0FB39EE9F63CE8B336131780BBDE; IL2CPP_EXTERN_C String_t* _stringLiteralBCB4BE7067F30922E2FF08232DD5A0559DC98380; IL2CPP_EXTERN_C String_t* _stringLiteralBE6207B57ACB2D3BF84DBA40B2F4C492644729E1; IL2CPP_EXTERN_C String_t* _stringLiteralBF8DAE4DC7B77A925289E2FC828E8DDD7A20DA7A; IL2CPP_EXTERN_C String_t* _stringLiteralC27791D35D47A632E8E99033E2E23380DF718F72; IL2CPP_EXTERN_C String_t* _stringLiteralC442518354BF1E10C6787775537CBF4ABBE28856; IL2CPP_EXTERN_C String_t* _stringLiteralC4BD9225A2C2C41626298E7DB8C48EC673EC32F7; IL2CPP_EXTERN_C String_t* _stringLiteralC542CC9C93D445E88AB42B279F37DA5557472745; IL2CPP_EXTERN_C String_t* _stringLiteralC8B15F26A03EBCABFBFF3878227491BDBE10183C; IL2CPP_EXTERN_C String_t* _stringLiteralCF87CB7DC9CAD27150E405BFC06F6A8622B2C270; IL2CPP_EXTERN_C String_t* _stringLiteralCF90BB1377B63B2AFE691B1CD8F605010EC4EC9C; IL2CPP_EXTERN_C String_t* _stringLiteralD898A9B1C2512E3891CC67EAA5F03B0ACF5ADDB3; IL2CPP_EXTERN_C String_t* _stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709; IL2CPP_EXTERN_C String_t* _stringLiteralDAACE09E1233CE71A1ADAD97FA1AC137EC6E52C9; IL2CPP_EXTERN_C String_t* _stringLiteralDB16B4049DA2FFF96C66FAC35111911389DE0F60; IL2CPP_EXTERN_C String_t* _stringLiteralE42D6F85C35A4D2B14F7579409F3B191CBA8C3E2; IL2CPP_EXTERN_C String_t* _stringLiteralE431ED0970BCA8CE9732F814C44CB9A9812E2781; IL2CPP_EXTERN_C String_t* _stringLiteralE8672FE7717B02C7A2C854939FD920F54D2C8501; IL2CPP_EXTERN_C String_t* _stringLiteralEEA7284E6E16304D68AF729475EEBA3479A59D32; IL2CPP_EXTERN_C String_t* _stringLiteralF57952D7922E2538C221F98FBC65352E6DEF8AB3; IL2CPP_EXTERN_C String_t* _stringLiteralF816F55F5BBAF9B9CBB88B57A6B44DA56DF2FFD4; IL2CPP_EXTERN_C const RuntimeMethod* Action_1_Invoke_mDE80C4E19F1DA60EC4FB7F2A5FDDE660C50C4D0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Action_4_Invoke_m5C5575295FC53B71D731787F105081E0A41546F6_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_m2236A593ACA4C39E3840B4D162D958C4F7A2F65B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m196A9AEBCB4B9E2F917188534526C57C62484B72_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Enumerator_get_Current_mDAC3EB024CDED1C4A4CC7C742D888A114D6F0CF5_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisLineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967_mDBF1085005984D110DBAB1A2051888DC0AAC10B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_AddComponent_TisOVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_m55344729170268134539249661AC0A1FB6D9BDDC_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m6EBBC2FEDBA32E3404BD034FD75FB37DFDFF0C95_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* GameObject_GetComponent_TisMeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B_m4E244CD0EBBF9E0A3A73AF14F6EC434CA82E6F4B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Add_mF1161F60869367A62BE942BA993283E5CC883D74_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m077FEBDE60869DB8984521EE8A6909B5F7AA3A73_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_Clear_m80B8BBE459F9190E7AD8CD8E79E9713784B6664D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m2F9DADF593B6CECDFCC6C7F93CE6A03CBA8B7AB0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_m6C3621F4A8BFF62170632AEEA2475A91D4F43E9F_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1__ctor_mA4C146613E9FC96772F1A41CE5AB7BE3C95DFED9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* List_1_set_Item_mACD06DBFD3A91D4C8DE94D7A7313CC6E6C8C08B0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Marshal_StructureToPtr_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mF11EB121DE2E6AC7E77A32E4FC71DDF87F3FB15A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OVRNetworkTcpClient_ConnectCallback_m1EDAA437EDBD6DFA12C406077F8DA113C3EF9E0B_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OVRNetworkTcpClient_OnReadDataCallback_m29C29895F5141A179E337CFC7608AF954E1255BE_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OVRNetworkTcpServer_DoAcceptTcpClientCallback_m061A9EA78D0C8DE70EF44DA32AD361DC90579EA0_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* OVRNetworkTcpServer_DoWriteDataCallback_mB902BCBED044EC9449BC3E4FF1B107ADCA8A8699_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* Object_FindObjectOfType_TisOVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517_mB862EB6825CF928615C882DD6A4AC5AD8AFEE0E7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CDelayCanvasPosUpdateU3Ed__24_System_Collections_IEnumerator_Reset_mA8A32223C8829D233FF72042B76081EF794FAD5C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CFadeU3Ed__25_System_Collections_IEnumerator_Reset_m32E2A9E170C78E29353CA16B052F5DDF2AC87962_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CInitializeHandPresenceDataU3Ed__74_System_Collections_IEnumerator_Reset_mCC69431436602D9F88CD7740A380AB25BB6753D9_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CStartKeyboardTrackingCoroutineU3Ed__81_System_Collections_IEnumerator_Reset_mDDD433B764D415F22C30B88C5EF10C4629E0CA86_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CStartU3Ed__73_System_Collections_IEnumerator_Reset_mCB21E568EBD016BB3F3185EAAA74BCDA5D6202A7_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CTimerCoroutineU3Ed__11_System_Collections_IEnumerator_Reset_mC3783CA2260EC67826E0D9EC22E0434B4F9A1961_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CUpdateControllerModelU3Ed__14_System_Collections_IEnumerator_Reset_mD365C28AA3F499F10484AD39EA48AE36C7F46D13_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3CUpdateKeyboardPoseU3Ed__83_System_Collections_IEnumerator_Reset_mE929904DABD9EFEC4484F101D4934097E61EBB7C_RuntimeMethod_var; IL2CPP_EXTERN_C const RuntimeMethod* U3ConCheckSceneCoroutineU3Ed__25_System_Collections_IEnumerator_Reset_m8038D8D4B6C77B7EFF8455925C22097A517AC97E_RuntimeMethod_var; struct AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 ; struct AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5;; struct AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke; struct AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke;; struct BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ; struct Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ; struct BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470;; struct BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke; struct BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke;; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com; struct CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com; struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke; struct Delegate_t_marshaled_com; struct Delegate_t_marshaled_pinvoke; struct EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9;; struct EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke; struct EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke;; struct Exception_t_marshaled_com; struct Exception_t_marshaled_pinvoke; struct Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF ; struct KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E;; struct KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke; struct KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke;; struct LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780;; struct LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke; struct LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke;; struct Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ; struct Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 ; struct Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B ; struct RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43;; struct RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke; struct RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke;; struct Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099;; struct Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke; struct Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke;; struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730;; struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com; struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com;; struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke; struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke;; struct SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722;; struct SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke; struct SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke;; struct SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 ; struct Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ; struct Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ; struct Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE ; struct Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 ; struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D; struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726; struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34; struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2; struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8; struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD; struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6; struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE; struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA; struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A; struct TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150; struct OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D; struct OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8; struct AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A; struct BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981; struct BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295; struct FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D; struct QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5; struct RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F; struct RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00; struct SpatialEntityComponentTypeU5BU5D_t36EC2C947308D99EFA43208D6523D0E43A270BA8; struct SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093; struct TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322; struct Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81; struct Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1; struct Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4; struct Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4; 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.Object // System.Collections.Generic.List`1 struct List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E, ____items_1)); } inline AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D* get__items_1() const { return ____items_1; } inline AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D** get_address_of__items_1() { return &____items_1; } inline void set__items_1(AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____items_1)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__items_1() const { return ____items_1; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____items_1)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__items_1() const { return ____items_1; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF, ____items_1)); } inline TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A* get__items_1() const { return ____items_1; } inline TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A** get_address_of__items_1() { return &____items_1; } inline void set__items_1(TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; // System.Collections.Generic.List`1 struct List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D : public RuntimeObject { public: // T[] System.Collections.Generic.List`1::_items ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5* ____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; public: inline static int32_t get_offset_of__items_1() { return static_cast(offsetof(List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D, ____items_1)); } inline ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5* get__items_1() const { return ____items_1; } inline ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5** get_address_of__items_1() { return &____items_1; } inline void set__items_1(ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5* value) { ____items_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____items_1), (void*)value); } inline static int32_t get_offset_of__size_2() { return static_cast(offsetof(List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D, ____size_2)); } inline int32_t get__size_2() const { return ____size_2; } inline int32_t* get_address_of__size_2() { return &____size_2; } inline void set__size_2(int32_t value) { ____size_2 = value; } inline static int32_t get_offset_of__version_3() { return static_cast(offsetof(List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D, ____version_3)); } inline int32_t get__version_3() const { return ____version_3; } inline int32_t* get_address_of__version_3() { return &____version_3; } inline void set__version_3(int32_t value) { ____version_3 = value; } inline static int32_t get_offset_of__syncRoot_4() { return static_cast(offsetof(List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D, ____syncRoot_4)); } inline RuntimeObject * get__syncRoot_4() const { return ____syncRoot_4; } inline RuntimeObject ** get_address_of__syncRoot_4() { return &____syncRoot_4; } inline void set__syncRoot_4(RuntimeObject * value) { ____syncRoot_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____syncRoot_4), (void*)value); } }; struct Il2CppArrayBounds; // System.Array // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 : public RuntimeObject { public: // System.Boolean System.Globalization.CultureInfo::m_isReadOnly bool ___m_isReadOnly_3; // System.Int32 System.Globalization.CultureInfo::cultureID int32_t ___cultureID_4; // System.Int32 System.Globalization.CultureInfo::parent_lcid int32_t ___parent_lcid_5; // System.Int32 System.Globalization.CultureInfo::datetime_index int32_t ___datetime_index_6; // System.Int32 System.Globalization.CultureInfo::number_index int32_t ___number_index_7; // System.Int32 System.Globalization.CultureInfo::default_calendar_type int32_t ___default_calendar_type_8; // System.Boolean System.Globalization.CultureInfo::m_useUserOverride bool ___m_useUserOverride_9; // System.Globalization.NumberFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::numInfo NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; // System.Globalization.DateTimeFormatInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::dateTimeInfo DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; // System.Globalization.TextInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::textInfo TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; // System.String System.Globalization.CultureInfo::m_name String_t* ___m_name_13; // System.String System.Globalization.CultureInfo::englishname String_t* ___englishname_14; // System.String System.Globalization.CultureInfo::nativename String_t* ___nativename_15; // System.String System.Globalization.CultureInfo::iso3lang String_t* ___iso3lang_16; // System.String System.Globalization.CultureInfo::iso2lang String_t* ___iso2lang_17; // System.String System.Globalization.CultureInfo::win3lang String_t* ___win3lang_18; // System.String System.Globalization.CultureInfo::territory String_t* ___territory_19; // System.String[] System.Globalization.CultureInfo::native_calendar_names StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___native_calendar_names_20; // System.Globalization.CompareInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::compareInfo CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; // System.Void* System.Globalization.CultureInfo::textinfo_data void* ___textinfo_data_22; // System.Int32 System.Globalization.CultureInfo::m_dataItem int32_t ___m_dataItem_23; // System.Globalization.Calendar System.Globalization.CultureInfo::calendar Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; // System.Globalization.CultureInfo System.Globalization.CultureInfo::parent_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___parent_culture_25; // System.Boolean System.Globalization.CultureInfo::constructed bool ___constructed_26; // System.Byte[] System.Globalization.CultureInfo::cached_serialized_form ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___cached_serialized_form_27; // System.Globalization.CultureData System.Globalization.CultureInfo::m_cultureData CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * ___m_cultureData_28; // System.Boolean System.Globalization.CultureInfo::m_isInherited bool ___m_isInherited_29; public: inline static int32_t get_offset_of_m_isReadOnly_3() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isReadOnly_3)); } inline bool get_m_isReadOnly_3() const { return ___m_isReadOnly_3; } inline bool* get_address_of_m_isReadOnly_3() { return &___m_isReadOnly_3; } inline void set_m_isReadOnly_3(bool value) { ___m_isReadOnly_3 = value; } inline static int32_t get_offset_of_cultureID_4() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cultureID_4)); } inline int32_t get_cultureID_4() const { return ___cultureID_4; } inline int32_t* get_address_of_cultureID_4() { return &___cultureID_4; } inline void set_cultureID_4(int32_t value) { ___cultureID_4 = value; } inline static int32_t get_offset_of_parent_lcid_5() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_lcid_5)); } inline int32_t get_parent_lcid_5() const { return ___parent_lcid_5; } inline int32_t* get_address_of_parent_lcid_5() { return &___parent_lcid_5; } inline void set_parent_lcid_5(int32_t value) { ___parent_lcid_5 = value; } inline static int32_t get_offset_of_datetime_index_6() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___datetime_index_6)); } inline int32_t get_datetime_index_6() const { return ___datetime_index_6; } inline int32_t* get_address_of_datetime_index_6() { return &___datetime_index_6; } inline void set_datetime_index_6(int32_t value) { ___datetime_index_6 = value; } inline static int32_t get_offset_of_number_index_7() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___number_index_7)); } inline int32_t get_number_index_7() const { return ___number_index_7; } inline int32_t* get_address_of_number_index_7() { return &___number_index_7; } inline void set_number_index_7(int32_t value) { ___number_index_7 = value; } inline static int32_t get_offset_of_default_calendar_type_8() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___default_calendar_type_8)); } inline int32_t get_default_calendar_type_8() const { return ___default_calendar_type_8; } inline int32_t* get_address_of_default_calendar_type_8() { return &___default_calendar_type_8; } inline void set_default_calendar_type_8(int32_t value) { ___default_calendar_type_8 = value; } inline static int32_t get_offset_of_m_useUserOverride_9() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_useUserOverride_9)); } inline bool get_m_useUserOverride_9() const { return ___m_useUserOverride_9; } inline bool* get_address_of_m_useUserOverride_9() { return &___m_useUserOverride_9; } inline void set_m_useUserOverride_9(bool value) { ___m_useUserOverride_9 = value; } inline static int32_t get_offset_of_numInfo_10() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___numInfo_10)); } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * get_numInfo_10() const { return ___numInfo_10; } inline NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D ** get_address_of_numInfo_10() { return &___numInfo_10; } inline void set_numInfo_10(NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * value) { ___numInfo_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___numInfo_10), (void*)value); } inline static int32_t get_offset_of_dateTimeInfo_11() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___dateTimeInfo_11)); } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * get_dateTimeInfo_11() const { return ___dateTimeInfo_11; } inline DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 ** get_address_of_dateTimeInfo_11() { return &___dateTimeInfo_11; } inline void set_dateTimeInfo_11(DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * value) { ___dateTimeInfo_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___dateTimeInfo_11), (void*)value); } inline static int32_t get_offset_of_textInfo_12() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textInfo_12)); } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * get_textInfo_12() const { return ___textInfo_12; } inline TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C ** get_address_of_textInfo_12() { return &___textInfo_12; } inline void set_textInfo_12(TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * value) { ___textInfo_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___textInfo_12), (void*)value); } inline static int32_t get_offset_of_m_name_13() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_name_13)); } inline String_t* get_m_name_13() const { return ___m_name_13; } inline String_t** get_address_of_m_name_13() { return &___m_name_13; } inline void set_m_name_13(String_t* value) { ___m_name_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_13), (void*)value); } inline static int32_t get_offset_of_englishname_14() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___englishname_14)); } inline String_t* get_englishname_14() const { return ___englishname_14; } inline String_t** get_address_of_englishname_14() { return &___englishname_14; } inline void set_englishname_14(String_t* value) { ___englishname_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___englishname_14), (void*)value); } inline static int32_t get_offset_of_nativename_15() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___nativename_15)); } inline String_t* get_nativename_15() const { return ___nativename_15; } inline String_t** get_address_of_nativename_15() { return &___nativename_15; } inline void set_nativename_15(String_t* value) { ___nativename_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___nativename_15), (void*)value); } inline static int32_t get_offset_of_iso3lang_16() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso3lang_16)); } inline String_t* get_iso3lang_16() const { return ___iso3lang_16; } inline String_t** get_address_of_iso3lang_16() { return &___iso3lang_16; } inline void set_iso3lang_16(String_t* value) { ___iso3lang_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso3lang_16), (void*)value); } inline static int32_t get_offset_of_iso2lang_17() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___iso2lang_17)); } inline String_t* get_iso2lang_17() const { return ___iso2lang_17; } inline String_t** get_address_of_iso2lang_17() { return &___iso2lang_17; } inline void set_iso2lang_17(String_t* value) { ___iso2lang_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___iso2lang_17), (void*)value); } inline static int32_t get_offset_of_win3lang_18() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___win3lang_18)); } inline String_t* get_win3lang_18() const { return ___win3lang_18; } inline String_t** get_address_of_win3lang_18() { return &___win3lang_18; } inline void set_win3lang_18(String_t* value) { ___win3lang_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___win3lang_18), (void*)value); } inline static int32_t get_offset_of_territory_19() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___territory_19)); } inline String_t* get_territory_19() const { return ___territory_19; } inline String_t** get_address_of_territory_19() { return &___territory_19; } inline void set_territory_19(String_t* value) { ___territory_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___territory_19), (void*)value); } inline static int32_t get_offset_of_native_calendar_names_20() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___native_calendar_names_20)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get_native_calendar_names_20() const { return ___native_calendar_names_20; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of_native_calendar_names_20() { return &___native_calendar_names_20; } inline void set_native_calendar_names_20(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ___native_calendar_names_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_calendar_names_20), (void*)value); } inline static int32_t get_offset_of_compareInfo_21() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___compareInfo_21)); } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * get_compareInfo_21() const { return ___compareInfo_21; } inline CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 ** get_address_of_compareInfo_21() { return &___compareInfo_21; } inline void set_compareInfo_21(CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * value) { ___compareInfo_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___compareInfo_21), (void*)value); } inline static int32_t get_offset_of_textinfo_data_22() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___textinfo_data_22)); } inline void* get_textinfo_data_22() const { return ___textinfo_data_22; } inline void** get_address_of_textinfo_data_22() { return &___textinfo_data_22; } inline void set_textinfo_data_22(void* value) { ___textinfo_data_22 = value; } inline static int32_t get_offset_of_m_dataItem_23() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_dataItem_23)); } inline int32_t get_m_dataItem_23() const { return ___m_dataItem_23; } inline int32_t* get_address_of_m_dataItem_23() { return &___m_dataItem_23; } inline void set_m_dataItem_23(int32_t value) { ___m_dataItem_23 = value; } inline static int32_t get_offset_of_calendar_24() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___calendar_24)); } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * get_calendar_24() const { return ___calendar_24; } inline Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A ** get_address_of_calendar_24() { return &___calendar_24; } inline void set_calendar_24(Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * value) { ___calendar_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___calendar_24), (void*)value); } inline static int32_t get_offset_of_parent_culture_25() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___parent_culture_25)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_parent_culture_25() const { return ___parent_culture_25; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_parent_culture_25() { return &___parent_culture_25; } inline void set_parent_culture_25(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___parent_culture_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___parent_culture_25), (void*)value); } inline static int32_t get_offset_of_constructed_26() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___constructed_26)); } inline bool get_constructed_26() const { return ___constructed_26; } inline bool* get_address_of_constructed_26() { return &___constructed_26; } inline void set_constructed_26(bool value) { ___constructed_26 = value; } inline static int32_t get_offset_of_cached_serialized_form_27() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___cached_serialized_form_27)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_cached_serialized_form_27() const { return ___cached_serialized_form_27; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_cached_serialized_form_27() { return &___cached_serialized_form_27; } inline void set_cached_serialized_form_27(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___cached_serialized_form_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___cached_serialized_form_27), (void*)value); } inline static int32_t get_offset_of_m_cultureData_28() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_cultureData_28)); } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * get_m_cultureData_28() const { return ___m_cultureData_28; } inline CultureData_t53CDF1C5F789A28897415891667799420D3C5529 ** get_address_of_m_cultureData_28() { return &___m_cultureData_28; } inline void set_m_cultureData_28(CultureData_t53CDF1C5F789A28897415891667799420D3C5529 * value) { ___m_cultureData_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_cultureData_28), (void*)value); } inline static int32_t get_offset_of_m_isInherited_29() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98, ___m_isInherited_29)); } inline bool get_m_isInherited_29() const { return ___m_isInherited_29; } inline bool* get_address_of_m_isInherited_29() { return &___m_isInherited_29; } inline void set_m_isInherited_29(bool value) { ___m_isInherited_29 = value; } }; // Native definition for P/Invoke marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; char* ___m_name_13; char* ___englishname_14; char* ___nativename_15; char* ___iso3lang_16; char* ___iso2lang_17; char* ___win3lang_18; char* ___territory_19; char** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_pinvoke* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_pinvoke* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // Native definition for COM marshalling of System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com { int32_t ___m_isReadOnly_3; int32_t ___cultureID_4; int32_t ___parent_lcid_5; int32_t ___datetime_index_6; int32_t ___number_index_7; int32_t ___default_calendar_type_8; int32_t ___m_useUserOverride_9; NumberFormatInfo_t58780B43B6A840C38FD10C50CDFE2128884CAD1D * ___numInfo_10; DateTimeFormatInfo_t0B9F6CA631A51CFC98A3C6031CF8069843137C90 * ___dateTimeInfo_11; TextInfo_tE823D0684BFE8B203501C9B2B38585E8F06E872C * ___textInfo_12; Il2CppChar* ___m_name_13; Il2CppChar* ___englishname_14; Il2CppChar* ___nativename_15; Il2CppChar* ___iso3lang_16; Il2CppChar* ___iso2lang_17; Il2CppChar* ___win3lang_18; Il2CppChar* ___territory_19; Il2CppChar** ___native_calendar_names_20; CompareInfo_t4AB62EC32E8AF1E469E315620C7E3FB8B0CAE0C9 * ___compareInfo_21; void* ___textinfo_data_22; int32_t ___m_dataItem_23; Calendar_t3D638AEAB45F029DF47138EDA4CF9A7CBBB1C32A * ___calendar_24; CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_marshaled_com* ___parent_culture_25; int32_t ___constructed_26; Il2CppSafeArray/*NONE*/* ___cached_serialized_form_27; CultureData_t53CDF1C5F789A28897415891667799420D3C5529_marshaled_com* ___m_cultureData_28; int32_t ___m_isInherited_29; }; // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 : public RuntimeObject { public: // System.Int32 System.Text.Encoding::m_codePage int32_t ___m_codePage_9; // System.Globalization.CodePageDataItem System.Text.Encoding::dataItem CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * ___dataItem_10; // System.Boolean System.Text.Encoding::m_deserializedFromEverett bool ___m_deserializedFromEverett_11; // System.Boolean System.Text.Encoding::m_isReadOnly bool ___m_isReadOnly_12; // System.Text.EncoderFallback System.Text.Encoding::encoderFallback EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * ___encoderFallback_13; // System.Text.DecoderFallback System.Text.Encoding::decoderFallback DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * ___decoderFallback_14; public: inline static int32_t get_offset_of_m_codePage_9() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_codePage_9)); } inline int32_t get_m_codePage_9() const { return ___m_codePage_9; } inline int32_t* get_address_of_m_codePage_9() { return &___m_codePage_9; } inline void set_m_codePage_9(int32_t value) { ___m_codePage_9 = value; } inline static int32_t get_offset_of_dataItem_10() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___dataItem_10)); } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * get_dataItem_10() const { return ___dataItem_10; } inline CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E ** get_address_of_dataItem_10() { return &___dataItem_10; } inline void set_dataItem_10(CodePageDataItem_t09A62F57142BF0456C8F414898A37E79BCC9F09E * value) { ___dataItem_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___dataItem_10), (void*)value); } inline static int32_t get_offset_of_m_deserializedFromEverett_11() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_deserializedFromEverett_11)); } inline bool get_m_deserializedFromEverett_11() const { return ___m_deserializedFromEverett_11; } inline bool* get_address_of_m_deserializedFromEverett_11() { return &___m_deserializedFromEverett_11; } inline void set_m_deserializedFromEverett_11(bool value) { ___m_deserializedFromEverett_11 = value; } inline static int32_t get_offset_of_m_isReadOnly_12() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___m_isReadOnly_12)); } inline bool get_m_isReadOnly_12() const { return ___m_isReadOnly_12; } inline bool* get_address_of_m_isReadOnly_12() { return &___m_isReadOnly_12; } inline void set_m_isReadOnly_12(bool value) { ___m_isReadOnly_12 = value; } inline static int32_t get_offset_of_encoderFallback_13() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___encoderFallback_13)); } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * get_encoderFallback_13() const { return ___encoderFallback_13; } inline EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 ** get_address_of_encoderFallback_13() { return &___encoderFallback_13; } inline void set_encoderFallback_13(EncoderFallback_t02AC990075E17EB09F0D7E4831C3B3F264025CC4 * value) { ___encoderFallback_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___encoderFallback_13), (void*)value); } inline static int32_t get_offset_of_decoderFallback_14() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827, ___decoderFallback_14)); } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * get_decoderFallback_14() const { return ___decoderFallback_14; } inline DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D ** get_address_of_decoderFallback_14() { return &___decoderFallback_14; } inline void set_decoderFallback_14(DecoderFallback_tF86D337D6576E81E5DA285E5673183EBC66DEF8D * value) { ___decoderFallback_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___decoderFallback_14), (void*)value); } }; // System.Net.EndPoint struct EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA : public RuntimeObject { public: public: }; // System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 : public RuntimeObject { public: // System.Object System.MarshalByRefObject::_identity RuntimeObject * ____identity_0; public: inline static int32_t get_offset_of__identity_0() { return static_cast(offsetof(MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8, ____identity_0)); } inline RuntimeObject * get__identity_0() const { return ____identity_0; } inline RuntimeObject ** get_address_of__identity_0() { return &____identity_0; } inline void set__identity_0(RuntimeObject * value) { ____identity_0 = value; Il2CppCodeGenWriteBarrier((void**)(&____identity_0), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { Il2CppIUnknown* ____identity_0; }; // Native definition for COM marshalling of System.MarshalByRefObject struct MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { Il2CppIUnknown* ____identity_0; }; // System.Reflection.MemberInfo struct MemberInfo_t : public RuntimeObject { public: public: }; // OVRBoneCapsule struct OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F : public RuntimeObject { public: // System.Int16 OVRBoneCapsule::k__BackingField int16_t ___U3CBoneIndexU3Ek__BackingField_0; // UnityEngine.Rigidbody OVRBoneCapsule::k__BackingField Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * ___U3CCapsuleRigidbodyU3Ek__BackingField_1; // UnityEngine.CapsuleCollider OVRBoneCapsule::k__BackingField CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * ___U3CCapsuleColliderU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CBoneIndexU3Ek__BackingField_0() { return static_cast(offsetof(OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F, ___U3CBoneIndexU3Ek__BackingField_0)); } inline int16_t get_U3CBoneIndexU3Ek__BackingField_0() const { return ___U3CBoneIndexU3Ek__BackingField_0; } inline int16_t* get_address_of_U3CBoneIndexU3Ek__BackingField_0() { return &___U3CBoneIndexU3Ek__BackingField_0; } inline void set_U3CBoneIndexU3Ek__BackingField_0(int16_t value) { ___U3CBoneIndexU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CCapsuleRigidbodyU3Ek__BackingField_1() { return static_cast(offsetof(OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F, ___U3CCapsuleRigidbodyU3Ek__BackingField_1)); } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * get_U3CCapsuleRigidbodyU3Ek__BackingField_1() const { return ___U3CCapsuleRigidbodyU3Ek__BackingField_1; } inline Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A ** get_address_of_U3CCapsuleRigidbodyU3Ek__BackingField_1() { return &___U3CCapsuleRigidbodyU3Ek__BackingField_1; } inline void set_U3CCapsuleRigidbodyU3Ek__BackingField_1(Rigidbody_t101F2E2F9F16E765A77429B2DE4527D2047A887A * value) { ___U3CCapsuleRigidbodyU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCapsuleRigidbodyU3Ek__BackingField_1), (void*)value); } inline static int32_t get_offset_of_U3CCapsuleColliderU3Ek__BackingField_2() { return static_cast(offsetof(OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F, ___U3CCapsuleColliderU3Ek__BackingField_2)); } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * get_U3CCapsuleColliderU3Ek__BackingField_2() const { return ___U3CCapsuleColliderU3Ek__BackingField_2; } inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 ** get_address_of_U3CCapsuleColliderU3Ek__BackingField_2() { return &___U3CCapsuleColliderU3Ek__BackingField_2; } inline void set_U3CCapsuleColliderU3Ek__BackingField_2(CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * value) { ___U3CCapsuleColliderU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CCapsuleColliderU3Ek__BackingField_2), (void*)value); } }; // OVRHaptics struct OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74 : public RuntimeObject { public: public: }; // OVRHapticsClip struct OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 : public RuntimeObject { public: // System.Int32 OVRHapticsClip::k__BackingField int32_t ___U3CCountU3Ek__BackingField_0; // System.Int32 OVRHapticsClip::k__BackingField int32_t ___U3CCapacityU3Ek__BackingField_1; // System.Byte[] OVRHapticsClip::k__BackingField ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___U3CSamplesU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CCountU3Ek__BackingField_0() { return static_cast(offsetof(OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619, ___U3CCountU3Ek__BackingField_0)); } inline int32_t get_U3CCountU3Ek__BackingField_0() const { return ___U3CCountU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CCountU3Ek__BackingField_0() { return &___U3CCountU3Ek__BackingField_0; } inline void set_U3CCountU3Ek__BackingField_0(int32_t value) { ___U3CCountU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CCapacityU3Ek__BackingField_1() { return static_cast(offsetof(OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619, ___U3CCapacityU3Ek__BackingField_1)); } inline int32_t get_U3CCapacityU3Ek__BackingField_1() const { return ___U3CCapacityU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CCapacityU3Ek__BackingField_1() { return &___U3CCapacityU3Ek__BackingField_1; } inline void set_U3CCapacityU3Ek__BackingField_1(int32_t value) { ___U3CCapacityU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CSamplesU3Ek__BackingField_2() { return static_cast(offsetof(OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619, ___U3CSamplesU3Ek__BackingField_2)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_U3CSamplesU3Ek__BackingField_2() const { return ___U3CSamplesU3Ek__BackingField_2; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_U3CSamplesU3Ek__BackingField_2() { return &___U3CSamplesU3Ek__BackingField_2; } inline void set_U3CSamplesU3Ek__BackingField_2(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___U3CSamplesU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CSamplesU3Ek__BackingField_2), (void*)value); } }; // System.String struct String_t : public RuntimeObject { public: // System.Int32 System.String::m_stringLength int32_t ___m_stringLength_0; // System.Char System.String::m_firstChar Il2CppChar ___m_firstChar_1; public: inline static int32_t get_offset_of_m_stringLength_0() { return static_cast(offsetof(String_t, ___m_stringLength_0)); } inline int32_t get_m_stringLength_0() const { return ___m_stringLength_0; } inline int32_t* get_address_of_m_stringLength_0() { return &___m_stringLength_0; } inline void set_m_stringLength_0(int32_t value) { ___m_stringLength_0 = value; } inline static int32_t get_offset_of_m_firstChar_1() { return static_cast(offsetof(String_t, ___m_firstChar_1)); } inline Il2CppChar get_m_firstChar_1() const { return ___m_firstChar_1; } inline Il2CppChar* get_address_of_m_firstChar_1() { return &___m_firstChar_1; } inline void set_m_firstChar_1(Il2CppChar value) { ___m_firstChar_1 = value; } }; // System.Text.StringBuilder struct StringBuilder_t : public RuntimeObject { public: // System.Char[] System.Text.StringBuilder::m_ChunkChars CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___m_ChunkChars_0; // System.Text.StringBuilder System.Text.StringBuilder::m_ChunkPrevious StringBuilder_t * ___m_ChunkPrevious_1; // System.Int32 System.Text.StringBuilder::m_ChunkLength int32_t ___m_ChunkLength_2; // System.Int32 System.Text.StringBuilder::m_ChunkOffset int32_t ___m_ChunkOffset_3; // System.Int32 System.Text.StringBuilder::m_MaxCapacity int32_t ___m_MaxCapacity_4; public: inline static int32_t get_offset_of_m_ChunkChars_0() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkChars_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_m_ChunkChars_0() const { return ___m_ChunkChars_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_m_ChunkChars_0() { return &___m_ChunkChars_0; } inline void set_m_ChunkChars_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___m_ChunkChars_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkChars_0), (void*)value); } inline static int32_t get_offset_of_m_ChunkPrevious_1() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkPrevious_1)); } inline StringBuilder_t * get_m_ChunkPrevious_1() const { return ___m_ChunkPrevious_1; } inline StringBuilder_t ** get_address_of_m_ChunkPrevious_1() { return &___m_ChunkPrevious_1; } inline void set_m_ChunkPrevious_1(StringBuilder_t * value) { ___m_ChunkPrevious_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ChunkPrevious_1), (void*)value); } inline static int32_t get_offset_of_m_ChunkLength_2() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkLength_2)); } inline int32_t get_m_ChunkLength_2() const { return ___m_ChunkLength_2; } inline int32_t* get_address_of_m_ChunkLength_2() { return &___m_ChunkLength_2; } inline void set_m_ChunkLength_2(int32_t value) { ___m_ChunkLength_2 = value; } inline static int32_t get_offset_of_m_ChunkOffset_3() { return static_cast(offsetof(StringBuilder_t, ___m_ChunkOffset_3)); } inline int32_t get_m_ChunkOffset_3() const { return ___m_ChunkOffset_3; } inline int32_t* get_address_of_m_ChunkOffset_3() { return &___m_ChunkOffset_3; } inline void set_m_ChunkOffset_3(int32_t value) { ___m_ChunkOffset_3 = value; } inline static int32_t get_offset_of_m_MaxCapacity_4() { return static_cast(offsetof(StringBuilder_t, ___m_MaxCapacity_4)); } inline int32_t get_m_MaxCapacity_4() const { return ___m_MaxCapacity_4; } inline int32_t* get_address_of_m_MaxCapacity_4() { return &___m_MaxCapacity_4; } inline void set_m_MaxCapacity_4(int32_t value) { ___m_MaxCapacity_4 = value; } }; // System.Net.Sockets.TcpListener struct TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B : public RuntimeObject { public: // System.Net.IPEndPoint System.Net.Sockets.TcpListener::m_ServerSocketEP IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * ___m_ServerSocketEP_0; // System.Net.Sockets.Socket System.Net.Sockets.TcpListener::m_ServerSocket Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * ___m_ServerSocket_1; // System.Boolean System.Net.Sockets.TcpListener::m_Active bool ___m_Active_2; // System.Boolean System.Net.Sockets.TcpListener::m_ExclusiveAddressUse bool ___m_ExclusiveAddressUse_3; public: inline static int32_t get_offset_of_m_ServerSocketEP_0() { return static_cast(offsetof(TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B, ___m_ServerSocketEP_0)); } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * get_m_ServerSocketEP_0() const { return ___m_ServerSocketEP_0; } inline IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E ** get_address_of_m_ServerSocketEP_0() { return &___m_ServerSocketEP_0; } inline void set_m_ServerSocketEP_0(IPEndPoint_t41C675C79A8B4EA6D5211D9B907137A2C015EA3E * value) { ___m_ServerSocketEP_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ServerSocketEP_0), (void*)value); } inline static int32_t get_offset_of_m_ServerSocket_1() { return static_cast(offsetof(TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B, ___m_ServerSocket_1)); } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * get_m_ServerSocket_1() const { return ___m_ServerSocket_1; } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 ** get_address_of_m_ServerSocket_1() { return &___m_ServerSocket_1; } inline void set_m_ServerSocket_1(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * value) { ___m_ServerSocket_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ServerSocket_1), (void*)value); } inline static int32_t get_offset_of_m_Active_2() { return static_cast(offsetof(TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B, ___m_Active_2)); } inline bool get_m_Active_2() const { return ___m_Active_2; } inline bool* get_address_of_m_Active_2() { return &___m_Active_2; } inline void set_m_Active_2(bool value) { ___m_Active_2 = value; } inline static int32_t get_offset_of_m_ExclusiveAddressUse_3() { return static_cast(offsetof(TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B, ___m_ExclusiveAddressUse_3)); } inline bool get_m_ExclusiveAddressUse_3() const { return ___m_ExclusiveAddressUse_3; } inline bool* get_address_of_m_ExclusiveAddressUse_3() { return &___m_ExclusiveAddressUse_3; } inline void set_m_ExclusiveAddressUse_3(bool value) { ___m_ExclusiveAddressUse_3 = value; } }; // System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_pinvoke { }; // Native definition for COM marshalling of System.ValueType struct ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52_marshaled_com { }; // System.Version struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C : public RuntimeObject { public: // System.Int32 System.Version::_Major int32_t ____Major_0; // System.Int32 System.Version::_Minor int32_t ____Minor_1; // System.Int32 System.Version::_Build int32_t ____Build_2; // System.Int32 System.Version::_Revision int32_t ____Revision_3; public: inline static int32_t get_offset_of__Major_0() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Major_0)); } inline int32_t get__Major_0() const { return ____Major_0; } inline int32_t* get_address_of__Major_0() { return &____Major_0; } inline void set__Major_0(int32_t value) { ____Major_0 = value; } inline static int32_t get_offset_of__Minor_1() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Minor_1)); } inline int32_t get__Minor_1() const { return ____Minor_1; } inline int32_t* get_address_of__Minor_1() { return &____Minor_1; } inline void set__Minor_1(int32_t value) { ____Minor_1 = value; } inline static int32_t get_offset_of__Build_2() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Build_2)); } inline int32_t get__Build_2() const { return ____Build_2; } inline int32_t* get_address_of__Build_2() { return &____Build_2; } inline void set__Build_2(int32_t value) { ____Build_2 = value; } inline static int32_t get_offset_of__Revision_3() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C, ____Revision_3)); } inline int32_t get__Revision_3() const { return ____Revision_3; } inline int32_t* get_address_of__Revision_3() { return &____Revision_3; } inline void set__Revision_3(int32_t value) { ____Revision_3 = value; } }; // UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF : public RuntimeObject { public: public: }; // Native definition for P/Invoke marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { }; // Native definition for COM marshalling of UnityEngine.YieldInstruction struct YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { }; // OVRControllerTest/BoolMonitor struct BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1 : public RuntimeObject { public: // System.String OVRControllerTest/BoolMonitor::m_name String_t* ___m_name_0; // OVRControllerTest/BoolMonitor/BoolGenerator OVRControllerTest/BoolMonitor::m_generator BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 * ___m_generator_1; // System.Boolean OVRControllerTest/BoolMonitor::m_prevValue bool ___m_prevValue_2; // System.Boolean OVRControllerTest/BoolMonitor::m_currentValue bool ___m_currentValue_3; // System.Boolean OVRControllerTest/BoolMonitor::m_currentValueRecentlyChanged bool ___m_currentValueRecentlyChanged_4; // System.Single OVRControllerTest/BoolMonitor::m_displayTimeout float ___m_displayTimeout_5; // System.Single OVRControllerTest/BoolMonitor::m_displayTimer float ___m_displayTimer_6; public: inline static int32_t get_offset_of_m_name_0() { return static_cast(offsetof(BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1, ___m_name_0)); } inline String_t* get_m_name_0() const { return ___m_name_0; } inline String_t** get_address_of_m_name_0() { return &___m_name_0; } inline void set_m_name_0(String_t* value) { ___m_name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_0), (void*)value); } inline static int32_t get_offset_of_m_generator_1() { return static_cast(offsetof(BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1, ___m_generator_1)); } inline BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 * get_m_generator_1() const { return ___m_generator_1; } inline BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 ** get_address_of_m_generator_1() { return &___m_generator_1; } inline void set_m_generator_1(BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 * value) { ___m_generator_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_generator_1), (void*)value); } inline static int32_t get_offset_of_m_prevValue_2() { return static_cast(offsetof(BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1, ___m_prevValue_2)); } inline bool get_m_prevValue_2() const { return ___m_prevValue_2; } inline bool* get_address_of_m_prevValue_2() { return &___m_prevValue_2; } inline void set_m_prevValue_2(bool value) { ___m_prevValue_2 = value; } inline static int32_t get_offset_of_m_currentValue_3() { return static_cast(offsetof(BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1, ___m_currentValue_3)); } inline bool get_m_currentValue_3() const { return ___m_currentValue_3; } inline bool* get_address_of_m_currentValue_3() { return &___m_currentValue_3; } inline void set_m_currentValue_3(bool value) { ___m_currentValue_3 = value; } inline static int32_t get_offset_of_m_currentValueRecentlyChanged_4() { return static_cast(offsetof(BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1, ___m_currentValueRecentlyChanged_4)); } inline bool get_m_currentValueRecentlyChanged_4() const { return ___m_currentValueRecentlyChanged_4; } inline bool* get_address_of_m_currentValueRecentlyChanged_4() { return &___m_currentValueRecentlyChanged_4; } inline void set_m_currentValueRecentlyChanged_4(bool value) { ___m_currentValueRecentlyChanged_4 = value; } inline static int32_t get_offset_of_m_displayTimeout_5() { return static_cast(offsetof(BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1, ___m_displayTimeout_5)); } inline float get_m_displayTimeout_5() const { return ___m_displayTimeout_5; } inline float* get_address_of_m_displayTimeout_5() { return &___m_displayTimeout_5; } inline void set_m_displayTimeout_5(float value) { ___m_displayTimeout_5 = value; } inline static int32_t get_offset_of_m_displayTimer_6() { return static_cast(offsetof(BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1, ___m_displayTimer_6)); } inline float get_m_displayTimer_6() const { return ___m_displayTimer_6; } inline float* get_address_of_m_displayTimer_6() { return &___m_displayTimer_6; } inline void set_m_displayTimer_6(float value) { ___m_displayTimer_6 = value; } }; // OVRHandTest/<>c struct U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F : public RuntimeObject { public: public: }; // OVRHandTest/BoolMonitor struct BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 : public RuntimeObject { public: // System.String OVRHandTest/BoolMonitor::m_name String_t* ___m_name_0; // OVRHandTest/BoolMonitor/BoolGenerator OVRHandTest/BoolMonitor::m_generator BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * ___m_generator_1; // System.Boolean OVRHandTest/BoolMonitor::m_prevValue bool ___m_prevValue_2; // System.Boolean OVRHandTest/BoolMonitor::m_currentValue bool ___m_currentValue_3; // System.Boolean OVRHandTest/BoolMonitor::m_currentValueRecentlyChanged bool ___m_currentValueRecentlyChanged_4; // System.Single OVRHandTest/BoolMonitor::m_displayTimeout float ___m_displayTimeout_5; // System.Single OVRHandTest/BoolMonitor::m_displayTimer float ___m_displayTimer_6; public: inline static int32_t get_offset_of_m_name_0() { return static_cast(offsetof(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626, ___m_name_0)); } inline String_t* get_m_name_0() const { return ___m_name_0; } inline String_t** get_address_of_m_name_0() { return &___m_name_0; } inline void set_m_name_0(String_t* value) { ___m_name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_name_0), (void*)value); } inline static int32_t get_offset_of_m_generator_1() { return static_cast(offsetof(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626, ___m_generator_1)); } inline BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * get_m_generator_1() const { return ___m_generator_1; } inline BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A ** get_address_of_m_generator_1() { return &___m_generator_1; } inline void set_m_generator_1(BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * value) { ___m_generator_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_generator_1), (void*)value); } inline static int32_t get_offset_of_m_prevValue_2() { return static_cast(offsetof(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626, ___m_prevValue_2)); } inline bool get_m_prevValue_2() const { return ___m_prevValue_2; } inline bool* get_address_of_m_prevValue_2() { return &___m_prevValue_2; } inline void set_m_prevValue_2(bool value) { ___m_prevValue_2 = value; } inline static int32_t get_offset_of_m_currentValue_3() { return static_cast(offsetof(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626, ___m_currentValue_3)); } inline bool get_m_currentValue_3() const { return ___m_currentValue_3; } inline bool* get_address_of_m_currentValue_3() { return &___m_currentValue_3; } inline void set_m_currentValue_3(bool value) { ___m_currentValue_3 = value; } inline static int32_t get_offset_of_m_currentValueRecentlyChanged_4() { return static_cast(offsetof(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626, ___m_currentValueRecentlyChanged_4)); } inline bool get_m_currentValueRecentlyChanged_4() const { return ___m_currentValueRecentlyChanged_4; } inline bool* get_address_of_m_currentValueRecentlyChanged_4() { return &___m_currentValueRecentlyChanged_4; } inline void set_m_currentValueRecentlyChanged_4(bool value) { ___m_currentValueRecentlyChanged_4 = value; } inline static int32_t get_offset_of_m_displayTimeout_5() { return static_cast(offsetof(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626, ___m_displayTimeout_5)); } inline float get_m_displayTimeout_5() const { return ___m_displayTimeout_5; } inline float* get_address_of_m_displayTimeout_5() { return &___m_displayTimeout_5; } inline void set_m_displayTimeout_5(float value) { ___m_displayTimeout_5 = value; } inline static int32_t get_offset_of_m_displayTimer_6() { return static_cast(offsetof(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626, ___m_displayTimer_6)); } inline float get_m_displayTimer_6() const { return ___m_displayTimer_6; } inline float* get_address_of_m_displayTimer_6() { return &___m_displayTimer_6; } inline void set_m_displayTimer_6(float value) { ___m_displayTimer_6 = value; } }; // OVRHaptics/Config struct Config_t9013183A0F27B3C6B9D150A51347092354F928EA : public RuntimeObject { public: public: }; // OVRHaptics/OVRHapticsChannel struct OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 : public RuntimeObject { public: // OVRHaptics/OVRHapticsOutput OVRHaptics/OVRHapticsChannel::m_output OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * ___m_output_0; public: inline static int32_t get_offset_of_m_output_0() { return static_cast(offsetof(OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05, ___m_output_0)); } inline OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * get_m_output_0() const { return ___m_output_0; } inline OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D ** get_address_of_m_output_0() { return &___m_output_0; } inline void set_m_output_0(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * value) { ___m_output_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_output_0), (void*)value); } }; // OVRHaptics/OVRHapticsOutput struct OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D : public RuntimeObject { public: // System.Boolean OVRHaptics/OVRHapticsOutput::m_lowLatencyMode bool ___m_lowLatencyMode_0; // System.Boolean OVRHaptics/OVRHapticsOutput::m_paddingEnabled bool ___m_paddingEnabled_1; // System.Int32 OVRHaptics/OVRHapticsOutput::m_prevSamplesQueued int32_t ___m_prevSamplesQueued_2; // System.Single OVRHaptics/OVRHapticsOutput::m_prevSamplesQueuedTime float ___m_prevSamplesQueuedTime_3; // System.Int32 OVRHaptics/OVRHapticsOutput::m_numPredictionHits int32_t ___m_numPredictionHits_4; // System.Int32 OVRHaptics/OVRHapticsOutput::m_numPredictionMisses int32_t ___m_numPredictionMisses_5; // System.Int32 OVRHaptics/OVRHapticsOutput::m_numUnderruns int32_t ___m_numUnderruns_6; // System.Collections.Generic.List`1 OVRHaptics/OVRHapticsOutput::m_pendingClips List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * ___m_pendingClips_7; // System.UInt32 OVRHaptics/OVRHapticsOutput::m_controller uint32_t ___m_controller_8; // OVRNativeBuffer OVRHaptics/OVRHapticsOutput::m_nativeBuffer OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * ___m_nativeBuffer_9; // OVRHapticsClip OVRHaptics/OVRHapticsOutput::m_paddingClip OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___m_paddingClip_10; public: inline static int32_t get_offset_of_m_lowLatencyMode_0() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_lowLatencyMode_0)); } inline bool get_m_lowLatencyMode_0() const { return ___m_lowLatencyMode_0; } inline bool* get_address_of_m_lowLatencyMode_0() { return &___m_lowLatencyMode_0; } inline void set_m_lowLatencyMode_0(bool value) { ___m_lowLatencyMode_0 = value; } inline static int32_t get_offset_of_m_paddingEnabled_1() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_paddingEnabled_1)); } inline bool get_m_paddingEnabled_1() const { return ___m_paddingEnabled_1; } inline bool* get_address_of_m_paddingEnabled_1() { return &___m_paddingEnabled_1; } inline void set_m_paddingEnabled_1(bool value) { ___m_paddingEnabled_1 = value; } inline static int32_t get_offset_of_m_prevSamplesQueued_2() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_prevSamplesQueued_2)); } inline int32_t get_m_prevSamplesQueued_2() const { return ___m_prevSamplesQueued_2; } inline int32_t* get_address_of_m_prevSamplesQueued_2() { return &___m_prevSamplesQueued_2; } inline void set_m_prevSamplesQueued_2(int32_t value) { ___m_prevSamplesQueued_2 = value; } inline static int32_t get_offset_of_m_prevSamplesQueuedTime_3() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_prevSamplesQueuedTime_3)); } inline float get_m_prevSamplesQueuedTime_3() const { return ___m_prevSamplesQueuedTime_3; } inline float* get_address_of_m_prevSamplesQueuedTime_3() { return &___m_prevSamplesQueuedTime_3; } inline void set_m_prevSamplesQueuedTime_3(float value) { ___m_prevSamplesQueuedTime_3 = value; } inline static int32_t get_offset_of_m_numPredictionHits_4() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_numPredictionHits_4)); } inline int32_t get_m_numPredictionHits_4() const { return ___m_numPredictionHits_4; } inline int32_t* get_address_of_m_numPredictionHits_4() { return &___m_numPredictionHits_4; } inline void set_m_numPredictionHits_4(int32_t value) { ___m_numPredictionHits_4 = value; } inline static int32_t get_offset_of_m_numPredictionMisses_5() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_numPredictionMisses_5)); } inline int32_t get_m_numPredictionMisses_5() const { return ___m_numPredictionMisses_5; } inline int32_t* get_address_of_m_numPredictionMisses_5() { return &___m_numPredictionMisses_5; } inline void set_m_numPredictionMisses_5(int32_t value) { ___m_numPredictionMisses_5 = value; } inline static int32_t get_offset_of_m_numUnderruns_6() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_numUnderruns_6)); } inline int32_t get_m_numUnderruns_6() const { return ___m_numUnderruns_6; } inline int32_t* get_address_of_m_numUnderruns_6() { return &___m_numUnderruns_6; } inline void set_m_numUnderruns_6(int32_t value) { ___m_numUnderruns_6 = value; } inline static int32_t get_offset_of_m_pendingClips_7() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_pendingClips_7)); } inline List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * get_m_pendingClips_7() const { return ___m_pendingClips_7; } inline List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D ** get_address_of_m_pendingClips_7() { return &___m_pendingClips_7; } inline void set_m_pendingClips_7(List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * value) { ___m_pendingClips_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_pendingClips_7), (void*)value); } inline static int32_t get_offset_of_m_controller_8() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_controller_8)); } inline uint32_t get_m_controller_8() const { return ___m_controller_8; } inline uint32_t* get_address_of_m_controller_8() { return &___m_controller_8; } inline void set_m_controller_8(uint32_t value) { ___m_controller_8 = value; } inline static int32_t get_offset_of_m_nativeBuffer_9() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_nativeBuffer_9)); } inline OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * get_m_nativeBuffer_9() const { return ___m_nativeBuffer_9; } inline OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 ** get_address_of_m_nativeBuffer_9() { return &___m_nativeBuffer_9; } inline void set_m_nativeBuffer_9(OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * value) { ___m_nativeBuffer_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_nativeBuffer_9), (void*)value); } inline static int32_t get_offset_of_m_paddingClip_10() { return static_cast(offsetof(OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D, ___m_paddingClip_10)); } inline OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * get_m_paddingClip_10() const { return ___m_paddingClip_10; } inline OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 ** get_address_of_m_paddingClip_10() { return &___m_paddingClip_10; } inline void set_m_paddingClip_10(OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * value) { ___m_paddingClip_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_paddingClip_10), (void*)value); } }; // OVRManager/<>c struct U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E : public RuntimeObject { public: public: }; // OVRNetwork/OVRNetworkTcpClient struct OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 : public RuntimeObject { public: // System.Action OVRNetwork/OVRNetworkTcpClient::connectionStateChangedCallback Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___connectionStateChangedCallback_0; // System.Action`4 OVRNetwork/OVRNetworkTcpClient::payloadReceivedCallback Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A * ___payloadReceivedCallback_1; // System.Net.Sockets.TcpClient OVRNetwork/OVRNetworkTcpClient::tcpClient TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * ___tcpClient_2; // System.Byte[][] OVRNetwork/OVRNetworkTcpClient::receivedBuffers ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* ___receivedBuffers_3; // System.Int32 OVRNetwork/OVRNetworkTcpClient::receivedBufferIndex int32_t ___receivedBufferIndex_4; // System.Int32 OVRNetwork/OVRNetworkTcpClient::receivedBufferDataSize int32_t ___receivedBufferDataSize_5; // System.Threading.ManualResetEvent OVRNetwork/OVRNetworkTcpClient::readyReceiveDataEvent ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * ___readyReceiveDataEvent_6; public: inline static int32_t get_offset_of_connectionStateChangedCallback_0() { return static_cast(offsetof(OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8, ___connectionStateChangedCallback_0)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_connectionStateChangedCallback_0() const { return ___connectionStateChangedCallback_0; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_connectionStateChangedCallback_0() { return &___connectionStateChangedCallback_0; } inline void set_connectionStateChangedCallback_0(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___connectionStateChangedCallback_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___connectionStateChangedCallback_0), (void*)value); } inline static int32_t get_offset_of_payloadReceivedCallback_1() { return static_cast(offsetof(OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8, ___payloadReceivedCallback_1)); } inline Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A * get_payloadReceivedCallback_1() const { return ___payloadReceivedCallback_1; } inline Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A ** get_address_of_payloadReceivedCallback_1() { return &___payloadReceivedCallback_1; } inline void set_payloadReceivedCallback_1(Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A * value) { ___payloadReceivedCallback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___payloadReceivedCallback_1), (void*)value); } inline static int32_t get_offset_of_tcpClient_2() { return static_cast(offsetof(OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8, ___tcpClient_2)); } inline TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * get_tcpClient_2() const { return ___tcpClient_2; } inline TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE ** get_address_of_tcpClient_2() { return &___tcpClient_2; } inline void set_tcpClient_2(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * value) { ___tcpClient_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___tcpClient_2), (void*)value); } inline static int32_t get_offset_of_receivedBuffers_3() { return static_cast(offsetof(OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8, ___receivedBuffers_3)); } inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* get_receivedBuffers_3() const { return ___receivedBuffers_3; } inline ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D** get_address_of_receivedBuffers_3() { return &___receivedBuffers_3; } inline void set_receivedBuffers_3(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* value) { ___receivedBuffers_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___receivedBuffers_3), (void*)value); } inline static int32_t get_offset_of_receivedBufferIndex_4() { return static_cast(offsetof(OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8, ___receivedBufferIndex_4)); } inline int32_t get_receivedBufferIndex_4() const { return ___receivedBufferIndex_4; } inline int32_t* get_address_of_receivedBufferIndex_4() { return &___receivedBufferIndex_4; } inline void set_receivedBufferIndex_4(int32_t value) { ___receivedBufferIndex_4 = value; } inline static int32_t get_offset_of_receivedBufferDataSize_5() { return static_cast(offsetof(OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8, ___receivedBufferDataSize_5)); } inline int32_t get_receivedBufferDataSize_5() const { return ___receivedBufferDataSize_5; } inline int32_t* get_address_of_receivedBufferDataSize_5() { return &___receivedBufferDataSize_5; } inline void set_receivedBufferDataSize_5(int32_t value) { ___receivedBufferDataSize_5 = value; } inline static int32_t get_offset_of_readyReceiveDataEvent_6() { return static_cast(offsetof(OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8, ___readyReceiveDataEvent_6)); } inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * get_readyReceiveDataEvent_6() const { return ___readyReceiveDataEvent_6; } inline ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA ** get_address_of_readyReceiveDataEvent_6() { return &___readyReceiveDataEvent_6; } inline void set_readyReceiveDataEvent_6(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * value) { ___readyReceiveDataEvent_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___readyReceiveDataEvent_6), (void*)value); } }; // OVRNetwork/OVRNetworkTcpServer struct OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA : public RuntimeObject { public: // System.Net.Sockets.TcpListener OVRNetwork/OVRNetworkTcpServer::tcpListener TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * ___tcpListener_0; // System.Object OVRNetwork/OVRNetworkTcpServer::clientsLock RuntimeObject * ___clientsLock_1; // System.Collections.Generic.List`1 OVRNetwork/OVRNetworkTcpServer::clients List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * ___clients_2; public: inline static int32_t get_offset_of_tcpListener_0() { return static_cast(offsetof(OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA, ___tcpListener_0)); } inline TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * get_tcpListener_0() const { return ___tcpListener_0; } inline TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B ** get_address_of_tcpListener_0() { return &___tcpListener_0; } inline void set_tcpListener_0(TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * value) { ___tcpListener_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___tcpListener_0), (void*)value); } inline static int32_t get_offset_of_clientsLock_1() { return static_cast(offsetof(OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA, ___clientsLock_1)); } inline RuntimeObject * get_clientsLock_1() const { return ___clientsLock_1; } inline RuntimeObject ** get_address_of_clientsLock_1() { return &___clientsLock_1; } inline void set_clientsLock_1(RuntimeObject * value) { ___clientsLock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___clientsLock_1), (void*)value); } inline static int32_t get_offset_of_clients_2() { return static_cast(offsetof(OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA, ___clients_2)); } inline List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * get_clients_2() const { return ___clients_2; } inline List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF ** get_address_of_clients_2() { return &___clients_2; } inline void set_clients_2(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * value) { ___clients_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___clients_2), (void*)value); } }; // OVRPassthroughLayer/<>c__DisplayClass10_0 struct U3CU3Ec__DisplayClass10_0_t315AFCB3B5BB2075D2D2616908508577B5525985 : public RuntimeObject { public: // UnityEngine.GameObject OVRPassthroughLayer/<>c__DisplayClass10_0::obj GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___obj_0; public: inline static int32_t get_offset_of_obj_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass10_0_t315AFCB3B5BB2075D2D2616908508577B5525985, ___obj_0)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_obj_0() const { return ___obj_0; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_obj_0() { return &___obj_0; } inline void set_obj_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___obj_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___obj_0), (void*)value); } }; // OVRPassthroughLayer/<>c__DisplayClass9_0 struct U3CU3Ec__DisplayClass9_0_tEAC6F88D667E0A40E71FEFDC036FE784B1CCCAEC : public RuntimeObject { public: // UnityEngine.GameObject OVRPassthroughLayer/<>c__DisplayClass9_0::obj GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___obj_0; public: inline static int32_t get_offset_of_obj_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass9_0_tEAC6F88D667E0A40E71FEFDC036FE784B1CCCAEC, ___obj_0)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_obj_0() const { return ___obj_0; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_obj_0() { return &___obj_0; } inline void set_obj_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___obj_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___obj_0), (void*)value); } }; // UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c struct U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B : public RuntimeObject { public: public: }; // OVRPlugin/GUID struct GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC : public RuntimeObject { public: // System.Int32 OVRPlugin/GUID::a int32_t ___a_0; // System.Int16 OVRPlugin/GUID::b int16_t ___b_1; // System.Int16 OVRPlugin/GUID::c int16_t ___c_2; // System.Byte OVRPlugin/GUID::d0 uint8_t ___d0_3; // System.Byte OVRPlugin/GUID::d1 uint8_t ___d1_4; // System.Byte OVRPlugin/GUID::d2 uint8_t ___d2_5; // System.Byte OVRPlugin/GUID::d3 uint8_t ___d3_6; // System.Byte OVRPlugin/GUID::d4 uint8_t ___d4_7; // System.Byte OVRPlugin/GUID::d5 uint8_t ___d5_8; // System.Byte OVRPlugin/GUID::d6 uint8_t ___d6_9; // System.Byte OVRPlugin/GUID::d7 uint8_t ___d7_10; public: inline static int32_t get_offset_of_a_0() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___a_0)); } inline int32_t get_a_0() const { return ___a_0; } inline int32_t* get_address_of_a_0() { return &___a_0; } inline void set_a_0(int32_t value) { ___a_0 = value; } inline static int32_t get_offset_of_b_1() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___b_1)); } inline int16_t get_b_1() const { return ___b_1; } inline int16_t* get_address_of_b_1() { return &___b_1; } inline void set_b_1(int16_t value) { ___b_1 = value; } inline static int32_t get_offset_of_c_2() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___c_2)); } inline int16_t get_c_2() const { return ___c_2; } inline int16_t* get_address_of_c_2() { return &___c_2; } inline void set_c_2(int16_t value) { ___c_2 = value; } inline static int32_t get_offset_of_d0_3() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d0_3)); } inline uint8_t get_d0_3() const { return ___d0_3; } inline uint8_t* get_address_of_d0_3() { return &___d0_3; } inline void set_d0_3(uint8_t value) { ___d0_3 = value; } inline static int32_t get_offset_of_d1_4() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d1_4)); } inline uint8_t get_d1_4() const { return ___d1_4; } inline uint8_t* get_address_of_d1_4() { return &___d1_4; } inline void set_d1_4(uint8_t value) { ___d1_4 = value; } inline static int32_t get_offset_of_d2_5() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d2_5)); } inline uint8_t get_d2_5() const { return ___d2_5; } inline uint8_t* get_address_of_d2_5() { return &___d2_5; } inline void set_d2_5(uint8_t value) { ___d2_5 = value; } inline static int32_t get_offset_of_d3_6() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d3_6)); } inline uint8_t get_d3_6() const { return ___d3_6; } inline uint8_t* get_address_of_d3_6() { return &___d3_6; } inline void set_d3_6(uint8_t value) { ___d3_6 = value; } inline static int32_t get_offset_of_d4_7() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d4_7)); } inline uint8_t get_d4_7() const { return ___d4_7; } inline uint8_t* get_address_of_d4_7() { return &___d4_7; } inline void set_d4_7(uint8_t value) { ___d4_7 = value; } inline static int32_t get_offset_of_d5_8() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d5_8)); } inline uint8_t get_d5_8() const { return ___d5_8; } inline uint8_t* get_address_of_d5_8() { return &___d5_8; } inline void set_d5_8(uint8_t value) { ___d5_8 = value; } inline static int32_t get_offset_of_d6_9() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d6_9)); } inline uint8_t get_d6_9() const { return ___d6_9; } inline uint8_t* get_address_of_d6_9() { return &___d6_9; } inline void set_d6_9(uint8_t value) { ___d6_9 = value; } inline static int32_t get_offset_of_d7_10() { return static_cast(offsetof(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC, ___d7_10)); } inline uint8_t get_d7_10() const { return ___d7_10; } inline uint8_t* get_address_of_d7_10() { return &___d7_10; } inline void set_d7_10(uint8_t value) { ___d7_10 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/GUID struct GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_pinvoke { int32_t ___a_0; int16_t ___b_1; int16_t ___c_2; uint8_t ___d0_3; uint8_t ___d1_4; uint8_t ___d2_5; uint8_t ___d3_6; uint8_t ___d4_7; uint8_t ___d5_8; uint8_t ___d6_9; uint8_t ___d7_10; }; // Native definition for COM marshalling of OVRPlugin/GUID struct GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_com { int32_t ___a_0; int16_t ___b_1; int16_t ___c_2; uint8_t ___d0_3; uint8_t ___d1_4; uint8_t ___d2_5; uint8_t ___d3_6; uint8_t ___d4_7; uint8_t ___d5_8; uint8_t ___d6_9; uint8_t ___d7_10; }; // OVRPlugin/Ktx struct Ktx_t669F38C48356BFC8873F62B3B883E225D964410B : public RuntimeObject { public: public: }; // OVRPlugin/Media struct Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_0_1_0 struct OVRP_0_1_0_tCA0A91720B4965A49CFBDE2BB8B46C45C0506363 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_0_1_1 struct OVRP_0_1_1_tDBA6AC71AD154F15B030DA727A007698955CAC35 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_0_1_2 struct OVRP_0_1_2_t9F1777A7676D69850A9FCE246B828AF39B37B21F : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_0_1_3 struct OVRP_0_1_3_t02842C0873561109CAACB9DFB89EA536B03CE6DB : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_0_5_0 struct OVRP_0_5_0_tC3F2B3F8B4CB16E8BA1CBF6523368CD534A8FC6B : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_0_0 struct OVRP_1_0_0_t7A7165DD6675CECD30E91119E2C52E21FE6511EA : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_10_0 struct OVRP_1_10_0_t0DB86A7DDD12A1BA29B958F15F2D2BEA2B8ACA78 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_11_0 struct OVRP_1_11_0_t78D9B40FC078D1401B97BAF10425F4FD166FF515 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_12_0 struct OVRP_1_12_0_tED05232B37787981D9EFBC2FF6D9B09B63F179E8 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_15_0 struct OVRP_1_15_0_t33D48C3749C0197D1B6487D5D5AAF37377115C91 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_16_0 struct OVRP_1_16_0_tA9EB48CC4CAB14D7009355FA1AA70D079D7F924C : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_17_0 struct OVRP_1_17_0_t04D4429D59A774AB70E76FCB013083375ACDA6A5 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_18_0 struct OVRP_1_18_0_t6554FAD6B9EF4306F89E47B14D3D2FFF0759B4D0 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_19_0 struct OVRP_1_19_0_tE0652374D565ADA545D322BA86725747DD2C0F18 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_1_0 struct OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_21_0 struct OVRP_1_21_0_tB9C80014C524327C3350066E149A543AE1EF619D : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_28_0 struct OVRP_1_28_0_tF0B7D50816EA5B6A633C6C428992573947320565 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_29_0 struct OVRP_1_29_0_t918278FFDFD85AAB45BDD32748CB748326A99CDB : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_2_0 struct OVRP_1_2_0_t86480FE48DC2A17D54962BE5255652B2CAE172FC : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_30_0 struct OVRP_1_30_0_t4D250C144546622A0795A2F91B99E8E77BB5EDC2 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_31_0 struct OVRP_1_31_0_t8C43CCA8BA64FB271C032EDD8AF604AC7DA07D46 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_32_0 struct OVRP_1_32_0_t693E99E48FBAB6F9EC9AE0284958D46A10112BC3 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_34_0 struct OVRP_1_34_0_t9F3B8A75B7A40F061C00A0F5354B3F7E5DCF6403 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_35_0 struct OVRP_1_35_0_t51609337F43CCA6D6D0DF34912B4BF73906C8705 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_36_0 struct OVRP_1_36_0_t1094A26C603F8CD2A54535DCC3E74434C3741ABC : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_37_0 struct OVRP_1_37_0_t23CF12293B399D5E79375E624C273FEF47F079FC : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_38_0 struct OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_39_0 struct OVRP_1_39_0_t5E5BBE71ADDCAAF2353AA317E9B9456BEF8FE6D0 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_3_0 struct OVRP_1_3_0_t1670A3C38353D3938DCBD5377D6F9073CFD17637 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_40_0 struct OVRP_1_40_0_tBA066085CDF028B94AE5EF9EAF6FE59B49229DF1 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_41_0 struct OVRP_1_41_0_t865D1E54DF6EAA3DE85B98D21CCFB5EC8DC3BDA0 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_42_0 struct OVRP_1_42_0_tFBBAC38B46711688EA744EC2739609E6EF095A49 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_43_0 struct OVRP_1_43_0_t35BA9379F2B044991E2E9B5CAD1DA29ABFE07AEC : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_44_0 struct OVRP_1_44_0_t0DF156B1270FA4A8B5EA797E36FBCF02543E2533 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_45_0 struct OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_46_0 struct OVRP_1_46_0_tC3400A2C00B6D8EE38FD932CDD1C4F0A1ED21A42 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_47_0 struct OVRP_1_47_0_tA3F6C267E50F56F86ED5EB532817040B8EAE048F : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_48_0 struct OVRP_1_48_0_tB369070283C048120D89034AA803B4BC3D3B2C34 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_49_0 struct OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_50_0 struct OVRP_1_50_0_t9EFA9357FF3FEF8C309DC6EE50F28377385FD921 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_51_0 struct OVRP_1_51_0_t7B10C0008BFA569FB4619BB2D28EB3B1137647B9 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_52_0 struct OVRP_1_52_0_t30E413ECB7211AE4893F53F474EF6B6D7F61BABC : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_53_0 struct OVRP_1_53_0_t9E3767EEB3CA2A0B34A76D5F7FD6767FF7AD4F2F : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_54_0 struct OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_55_0 struct OVRP_1_55_0_tDCA8C7B9D9A46B3E59241FA312C9EF811A9CFE78 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_55_1 struct OVRP_1_55_1_tEBBDE7CE8383D1C93474948609762A9723868E97 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_56_0 struct OVRP_1_56_0_t8A33D176366CF62890EE8AD9878986B0980BEA3A : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_57_0 struct OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_58_0 struct OVRP_1_58_0_tE0F165BCC9707558309BE31DE2A44AA8FA0C0ADD : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_59_0 struct OVRP_1_59_0_t42CD637E323FB0EA06D160293FE5E247F157FD42 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_5_0 struct OVRP_1_5_0_t6A85C8628F00CC1DF9984C6D56E2F7F8A0E8C6CC : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_60_0 struct OVRP_1_60_0_tFC45B48EA6EFC0E25EC1CC710E9C4A4CBCA95E3A : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_61_0 struct OVRP_1_61_0_t37221D9E3C4918BD6E0C7198F29A09BBE1A77DCB : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_62_0 struct OVRP_1_62_0_t6459C076884CE1ACA2B2AC0DFFB731E00CB18FCA : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_63_0 struct OVRP_1_63_0_t41C3B110FD473A2D016105D3597E467398423C6B : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_64_0 struct OVRP_1_64_0_t8BADB40670843F14D970DF497770D145D19DF740 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_65_0 struct OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_66_0 struct OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_67_0 struct OVRP_1_67_0_t520D6EB5DA725CF803E8C83168059AB3A4A636E3 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_68_0 struct OVRP_1_68_0_tD68BE9E69A7CCD84E81240104FD4CE0B0ABDDCFB : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_69_0 struct OVRP_1_69_0_t8501AD6F6097431F5C11055E4F7B3155381936E1 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_6_0 struct OVRP_1_6_0_t4FD03ADC1458C7CEB4C56C3CA72D59EF7C2BCE86 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_7_0 struct OVRP_1_7_0_t2AD10FF99244465E1A50F39303B92FFC45C9D450 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_8_0 struct OVRP_1_8_0_tD6FEA7A91F5F105CD8843B0E2D5459C0218252E7 : public RuntimeObject { public: public: }; // OVRPlugin/OVRP_1_9_0 struct OVRP_1_9_0_tC543307A6CB01708A6E9EDEBBB3FA2D80BC65B65 : public RuntimeObject { public: public: }; // OVRRaycaster/<>c struct U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD : public RuntimeObject { public: public: }; // OVRResources/<>c__DisplayClass2_0 struct U3CU3Ec__DisplayClass2_0_tF07D6041A80B6F44715DA2A741053A86E6E038B5 : public RuntimeObject { public: // System.String OVRResources/<>c__DisplayClass2_0::path String_t* ___path_0; public: inline static int32_t get_offset_of_path_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass2_0_tF07D6041A80B6F44715DA2A741053A86E6E038B5, ___path_0)); } inline String_t* get_path_0() const { return ___path_0; } inline String_t** get_address_of_path_0() { return &___path_0; } inline void set_path_0(String_t* value) { ___path_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___path_0), (void*)value); } }; // OVRRuntimeController/d__14 struct U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA : public RuntimeObject { public: // System.Int32 OVRRuntimeController/d__14::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRRuntimeController/d__14::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRRuntimeController OVRRuntimeController/d__14::<>4__this OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA, ___U3CU3E4__this_2)); } inline OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // OVRSceneLoader/d__24 struct U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7 : public RuntimeObject { public: // System.Int32 OVRSceneLoader/d__24::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRSceneLoader/d__24::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRSceneLoader OVRSceneLoader/d__24::<>4__this OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7, ___U3CU3E4__this_2)); } inline OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // OVRSceneLoader/d__25 struct U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D : public RuntimeObject { public: // System.Int32 OVRSceneLoader/d__25::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRSceneLoader/d__25::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRSceneLoader OVRSceneLoader/d__25::<>4__this OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D, ___U3CU3E4__this_2)); } inline OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // OVRScreenFade/d__25 struct U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC : public RuntimeObject { public: // System.Int32 OVRScreenFade/d__25::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRScreenFade/d__25::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRScreenFade OVRScreenFade/d__25::<>4__this OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * ___U3CU3E4__this_2; // System.Single OVRScreenFade/d__25::startAlpha float ___startAlpha_3; // System.Single OVRScreenFade/d__25::endAlpha float ___endAlpha_4; // System.Single OVRScreenFade/d__25::5__2 float ___U3CelapsedTimeU3E5__2_5; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC, ___U3CU3E4__this_2)); } inline OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } inline static int32_t get_offset_of_startAlpha_3() { return static_cast(offsetof(U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC, ___startAlpha_3)); } inline float get_startAlpha_3() const { return ___startAlpha_3; } inline float* get_address_of_startAlpha_3() { return &___startAlpha_3; } inline void set_startAlpha_3(float value) { ___startAlpha_3 = value; } inline static int32_t get_offset_of_endAlpha_4() { return static_cast(offsetof(U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC, ___endAlpha_4)); } inline float get_endAlpha_4() const { return ___endAlpha_4; } inline float* get_address_of_endAlpha_4() { return &___endAlpha_4; } inline void set_endAlpha_4(float value) { ___endAlpha_4 = value; } inline static int32_t get_offset_of_U3CelapsedTimeU3E5__2_5() { return static_cast(offsetof(U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC, ___U3CelapsedTimeU3E5__2_5)); } inline float get_U3CelapsedTimeU3E5__2_5() const { return ___U3CelapsedTimeU3E5__2_5; } inline float* get_address_of_U3CelapsedTimeU3E5__2_5() { return &___U3CelapsedTimeU3E5__2_5; } inline void set_U3CelapsedTimeU3E5__2_5(float value) { ___U3CelapsedTimeU3E5__2_5 = value; } }; // OVRSkeletonRenderer/BoneVisualization struct BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E : public RuntimeObject { public: // UnityEngine.GameObject OVRSkeletonRenderer/BoneVisualization::BoneGO GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___BoneGO_0; // UnityEngine.Transform OVRSkeletonRenderer/BoneVisualization::BoneBegin Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___BoneBegin_1; // UnityEngine.Transform OVRSkeletonRenderer/BoneVisualization::BoneEnd Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___BoneEnd_2; // UnityEngine.LineRenderer OVRSkeletonRenderer/BoneVisualization::Line LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * ___Line_3; // UnityEngine.Material OVRSkeletonRenderer/BoneVisualization::RenderMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___RenderMaterial_4; // UnityEngine.Material OVRSkeletonRenderer/BoneVisualization::SystemGestureMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___SystemGestureMaterial_5; public: inline static int32_t get_offset_of_BoneGO_0() { return static_cast(offsetof(BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E, ___BoneGO_0)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_BoneGO_0() const { return ___BoneGO_0; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_BoneGO_0() { return &___BoneGO_0; } inline void set_BoneGO_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___BoneGO_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___BoneGO_0), (void*)value); } inline static int32_t get_offset_of_BoneBegin_1() { return static_cast(offsetof(BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E, ___BoneBegin_1)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_BoneBegin_1() const { return ___BoneBegin_1; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_BoneBegin_1() { return &___BoneBegin_1; } inline void set_BoneBegin_1(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___BoneBegin_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___BoneBegin_1), (void*)value); } inline static int32_t get_offset_of_BoneEnd_2() { return static_cast(offsetof(BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E, ___BoneEnd_2)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_BoneEnd_2() const { return ___BoneEnd_2; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_BoneEnd_2() { return &___BoneEnd_2; } inline void set_BoneEnd_2(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___BoneEnd_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___BoneEnd_2), (void*)value); } inline static int32_t get_offset_of_Line_3() { return static_cast(offsetof(BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E, ___Line_3)); } inline LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * get_Line_3() const { return ___Line_3; } inline LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 ** get_address_of_Line_3() { return &___Line_3; } inline void set_Line_3(LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * value) { ___Line_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Line_3), (void*)value); } inline static int32_t get_offset_of_RenderMaterial_4() { return static_cast(offsetof(BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E, ___RenderMaterial_4)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_RenderMaterial_4() const { return ___RenderMaterial_4; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_RenderMaterial_4() { return &___RenderMaterial_4; } inline void set_RenderMaterial_4(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___RenderMaterial_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___RenderMaterial_4), (void*)value); } inline static int32_t get_offset_of_SystemGestureMaterial_5() { return static_cast(offsetof(BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E, ___SystemGestureMaterial_5)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_SystemGestureMaterial_5() const { return ___SystemGestureMaterial_5; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_SystemGestureMaterial_5() { return &___SystemGestureMaterial_5; } inline void set_SystemGestureMaterial_5(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___SystemGestureMaterial_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___SystemGestureMaterial_5), (void*)value); } }; // OVRSpectatorModeDomeTest/d__11 struct U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425 : public RuntimeObject { public: // System.Int32 OVRSpectatorModeDomeTest/d__11::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRSpectatorModeDomeTest/d__11::<>2__current RuntimeObject * ___U3CU3E2__current_1; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } }; // OVRSystemPerfMetrics/PerfMetrics struct PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B : public RuntimeObject { public: // System.Int32 OVRSystemPerfMetrics/PerfMetrics::frameCount int32_t ___frameCount_0; // System.Single OVRSystemPerfMetrics/PerfMetrics::frameTime float ___frameTime_1; // System.Single OVRSystemPerfMetrics/PerfMetrics::deltaFrameTime float ___deltaFrameTime_2; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::appCpuTime_IsValid bool ___appCpuTime_IsValid_3; // System.Single OVRSystemPerfMetrics/PerfMetrics::appCpuTime float ___appCpuTime_4; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::appGpuTime_IsValid bool ___appGpuTime_IsValid_5; // System.Single OVRSystemPerfMetrics/PerfMetrics::appGpuTime float ___appGpuTime_6; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::compositorCpuTime_IsValid bool ___compositorCpuTime_IsValid_7; // System.Single OVRSystemPerfMetrics/PerfMetrics::compositorCpuTime float ___compositorCpuTime_8; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::compositorGpuTime_IsValid bool ___compositorGpuTime_IsValid_9; // System.Single OVRSystemPerfMetrics/PerfMetrics::compositorGpuTime float ___compositorGpuTime_10; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::compositorDroppedFrameCount_IsValid bool ___compositorDroppedFrameCount_IsValid_11; // System.Int32 OVRSystemPerfMetrics/PerfMetrics::compositorDroppedFrameCount int32_t ___compositorDroppedFrameCount_12; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::systemGpuUtilPercentage_IsValid bool ___systemGpuUtilPercentage_IsValid_13; // System.Single OVRSystemPerfMetrics/PerfMetrics::systemGpuUtilPercentage float ___systemGpuUtilPercentage_14; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::systemCpuUtilAveragePercentage_IsValid bool ___systemCpuUtilAveragePercentage_IsValid_15; // System.Single OVRSystemPerfMetrics/PerfMetrics::systemCpuUtilAveragePercentage float ___systemCpuUtilAveragePercentage_16; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::systemCpuUtilWorstPercentage_IsValid bool ___systemCpuUtilWorstPercentage_IsValid_17; // System.Single OVRSystemPerfMetrics/PerfMetrics::systemCpuUtilWorstPercentage float ___systemCpuUtilWorstPercentage_18; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::deviceCpuClockFrequencyInMHz_IsValid bool ___deviceCpuClockFrequencyInMHz_IsValid_19; // System.Single OVRSystemPerfMetrics/PerfMetrics::deviceCpuClockFrequencyInMHz float ___deviceCpuClockFrequencyInMHz_20; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::deviceGpuClockFrequencyInMHz_IsValid bool ___deviceGpuClockFrequencyInMHz_IsValid_21; // System.Single OVRSystemPerfMetrics/PerfMetrics::deviceGpuClockFrequencyInMHz float ___deviceGpuClockFrequencyInMHz_22; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::deviceCpuClockLevel_IsValid bool ___deviceCpuClockLevel_IsValid_23; // System.Int32 OVRSystemPerfMetrics/PerfMetrics::deviceCpuClockLevel int32_t ___deviceCpuClockLevel_24; // System.Boolean OVRSystemPerfMetrics/PerfMetrics::deviceGpuClockLevel_IsValid bool ___deviceGpuClockLevel_IsValid_25; // System.Int32 OVRSystemPerfMetrics/PerfMetrics::deviceGpuClockLevel int32_t ___deviceGpuClockLevel_26; public: inline static int32_t get_offset_of_frameCount_0() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___frameCount_0)); } inline int32_t get_frameCount_0() const { return ___frameCount_0; } inline int32_t* get_address_of_frameCount_0() { return &___frameCount_0; } inline void set_frameCount_0(int32_t value) { ___frameCount_0 = value; } inline static int32_t get_offset_of_frameTime_1() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___frameTime_1)); } inline float get_frameTime_1() const { return ___frameTime_1; } inline float* get_address_of_frameTime_1() { return &___frameTime_1; } inline void set_frameTime_1(float value) { ___frameTime_1 = value; } inline static int32_t get_offset_of_deltaFrameTime_2() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deltaFrameTime_2)); } inline float get_deltaFrameTime_2() const { return ___deltaFrameTime_2; } inline float* get_address_of_deltaFrameTime_2() { return &___deltaFrameTime_2; } inline void set_deltaFrameTime_2(float value) { ___deltaFrameTime_2 = value; } inline static int32_t get_offset_of_appCpuTime_IsValid_3() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___appCpuTime_IsValid_3)); } inline bool get_appCpuTime_IsValid_3() const { return ___appCpuTime_IsValid_3; } inline bool* get_address_of_appCpuTime_IsValid_3() { return &___appCpuTime_IsValid_3; } inline void set_appCpuTime_IsValid_3(bool value) { ___appCpuTime_IsValid_3 = value; } inline static int32_t get_offset_of_appCpuTime_4() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___appCpuTime_4)); } inline float get_appCpuTime_4() const { return ___appCpuTime_4; } inline float* get_address_of_appCpuTime_4() { return &___appCpuTime_4; } inline void set_appCpuTime_4(float value) { ___appCpuTime_4 = value; } inline static int32_t get_offset_of_appGpuTime_IsValid_5() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___appGpuTime_IsValid_5)); } inline bool get_appGpuTime_IsValid_5() const { return ___appGpuTime_IsValid_5; } inline bool* get_address_of_appGpuTime_IsValid_5() { return &___appGpuTime_IsValid_5; } inline void set_appGpuTime_IsValid_5(bool value) { ___appGpuTime_IsValid_5 = value; } inline static int32_t get_offset_of_appGpuTime_6() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___appGpuTime_6)); } inline float get_appGpuTime_6() const { return ___appGpuTime_6; } inline float* get_address_of_appGpuTime_6() { return &___appGpuTime_6; } inline void set_appGpuTime_6(float value) { ___appGpuTime_6 = value; } inline static int32_t get_offset_of_compositorCpuTime_IsValid_7() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___compositorCpuTime_IsValid_7)); } inline bool get_compositorCpuTime_IsValid_7() const { return ___compositorCpuTime_IsValid_7; } inline bool* get_address_of_compositorCpuTime_IsValid_7() { return &___compositorCpuTime_IsValid_7; } inline void set_compositorCpuTime_IsValid_7(bool value) { ___compositorCpuTime_IsValid_7 = value; } inline static int32_t get_offset_of_compositorCpuTime_8() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___compositorCpuTime_8)); } inline float get_compositorCpuTime_8() const { return ___compositorCpuTime_8; } inline float* get_address_of_compositorCpuTime_8() { return &___compositorCpuTime_8; } inline void set_compositorCpuTime_8(float value) { ___compositorCpuTime_8 = value; } inline static int32_t get_offset_of_compositorGpuTime_IsValid_9() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___compositorGpuTime_IsValid_9)); } inline bool get_compositorGpuTime_IsValid_9() const { return ___compositorGpuTime_IsValid_9; } inline bool* get_address_of_compositorGpuTime_IsValid_9() { return &___compositorGpuTime_IsValid_9; } inline void set_compositorGpuTime_IsValid_9(bool value) { ___compositorGpuTime_IsValid_9 = value; } inline static int32_t get_offset_of_compositorGpuTime_10() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___compositorGpuTime_10)); } inline float get_compositorGpuTime_10() const { return ___compositorGpuTime_10; } inline float* get_address_of_compositorGpuTime_10() { return &___compositorGpuTime_10; } inline void set_compositorGpuTime_10(float value) { ___compositorGpuTime_10 = value; } inline static int32_t get_offset_of_compositorDroppedFrameCount_IsValid_11() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___compositorDroppedFrameCount_IsValid_11)); } inline bool get_compositorDroppedFrameCount_IsValid_11() const { return ___compositorDroppedFrameCount_IsValid_11; } inline bool* get_address_of_compositorDroppedFrameCount_IsValid_11() { return &___compositorDroppedFrameCount_IsValid_11; } inline void set_compositorDroppedFrameCount_IsValid_11(bool value) { ___compositorDroppedFrameCount_IsValid_11 = value; } inline static int32_t get_offset_of_compositorDroppedFrameCount_12() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___compositorDroppedFrameCount_12)); } inline int32_t get_compositorDroppedFrameCount_12() const { return ___compositorDroppedFrameCount_12; } inline int32_t* get_address_of_compositorDroppedFrameCount_12() { return &___compositorDroppedFrameCount_12; } inline void set_compositorDroppedFrameCount_12(int32_t value) { ___compositorDroppedFrameCount_12 = value; } inline static int32_t get_offset_of_systemGpuUtilPercentage_IsValid_13() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___systemGpuUtilPercentage_IsValid_13)); } inline bool get_systemGpuUtilPercentage_IsValid_13() const { return ___systemGpuUtilPercentage_IsValid_13; } inline bool* get_address_of_systemGpuUtilPercentage_IsValid_13() { return &___systemGpuUtilPercentage_IsValid_13; } inline void set_systemGpuUtilPercentage_IsValid_13(bool value) { ___systemGpuUtilPercentage_IsValid_13 = value; } inline static int32_t get_offset_of_systemGpuUtilPercentage_14() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___systemGpuUtilPercentage_14)); } inline float get_systemGpuUtilPercentage_14() const { return ___systemGpuUtilPercentage_14; } inline float* get_address_of_systemGpuUtilPercentage_14() { return &___systemGpuUtilPercentage_14; } inline void set_systemGpuUtilPercentage_14(float value) { ___systemGpuUtilPercentage_14 = value; } inline static int32_t get_offset_of_systemCpuUtilAveragePercentage_IsValid_15() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___systemCpuUtilAveragePercentage_IsValid_15)); } inline bool get_systemCpuUtilAveragePercentage_IsValid_15() const { return ___systemCpuUtilAveragePercentage_IsValid_15; } inline bool* get_address_of_systemCpuUtilAveragePercentage_IsValid_15() { return &___systemCpuUtilAveragePercentage_IsValid_15; } inline void set_systemCpuUtilAveragePercentage_IsValid_15(bool value) { ___systemCpuUtilAveragePercentage_IsValid_15 = value; } inline static int32_t get_offset_of_systemCpuUtilAveragePercentage_16() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___systemCpuUtilAveragePercentage_16)); } inline float get_systemCpuUtilAveragePercentage_16() const { return ___systemCpuUtilAveragePercentage_16; } inline float* get_address_of_systemCpuUtilAveragePercentage_16() { return &___systemCpuUtilAveragePercentage_16; } inline void set_systemCpuUtilAveragePercentage_16(float value) { ___systemCpuUtilAveragePercentage_16 = value; } inline static int32_t get_offset_of_systemCpuUtilWorstPercentage_IsValid_17() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___systemCpuUtilWorstPercentage_IsValid_17)); } inline bool get_systemCpuUtilWorstPercentage_IsValid_17() const { return ___systemCpuUtilWorstPercentage_IsValid_17; } inline bool* get_address_of_systemCpuUtilWorstPercentage_IsValid_17() { return &___systemCpuUtilWorstPercentage_IsValid_17; } inline void set_systemCpuUtilWorstPercentage_IsValid_17(bool value) { ___systemCpuUtilWorstPercentage_IsValid_17 = value; } inline static int32_t get_offset_of_systemCpuUtilWorstPercentage_18() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___systemCpuUtilWorstPercentage_18)); } inline float get_systemCpuUtilWorstPercentage_18() const { return ___systemCpuUtilWorstPercentage_18; } inline float* get_address_of_systemCpuUtilWorstPercentage_18() { return &___systemCpuUtilWorstPercentage_18; } inline void set_systemCpuUtilWorstPercentage_18(float value) { ___systemCpuUtilWorstPercentage_18 = value; } inline static int32_t get_offset_of_deviceCpuClockFrequencyInMHz_IsValid_19() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceCpuClockFrequencyInMHz_IsValid_19)); } inline bool get_deviceCpuClockFrequencyInMHz_IsValid_19() const { return ___deviceCpuClockFrequencyInMHz_IsValid_19; } inline bool* get_address_of_deviceCpuClockFrequencyInMHz_IsValid_19() { return &___deviceCpuClockFrequencyInMHz_IsValid_19; } inline void set_deviceCpuClockFrequencyInMHz_IsValid_19(bool value) { ___deviceCpuClockFrequencyInMHz_IsValid_19 = value; } inline static int32_t get_offset_of_deviceCpuClockFrequencyInMHz_20() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceCpuClockFrequencyInMHz_20)); } inline float get_deviceCpuClockFrequencyInMHz_20() const { return ___deviceCpuClockFrequencyInMHz_20; } inline float* get_address_of_deviceCpuClockFrequencyInMHz_20() { return &___deviceCpuClockFrequencyInMHz_20; } inline void set_deviceCpuClockFrequencyInMHz_20(float value) { ___deviceCpuClockFrequencyInMHz_20 = value; } inline static int32_t get_offset_of_deviceGpuClockFrequencyInMHz_IsValid_21() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceGpuClockFrequencyInMHz_IsValid_21)); } inline bool get_deviceGpuClockFrequencyInMHz_IsValid_21() const { return ___deviceGpuClockFrequencyInMHz_IsValid_21; } inline bool* get_address_of_deviceGpuClockFrequencyInMHz_IsValid_21() { return &___deviceGpuClockFrequencyInMHz_IsValid_21; } inline void set_deviceGpuClockFrequencyInMHz_IsValid_21(bool value) { ___deviceGpuClockFrequencyInMHz_IsValid_21 = value; } inline static int32_t get_offset_of_deviceGpuClockFrequencyInMHz_22() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceGpuClockFrequencyInMHz_22)); } inline float get_deviceGpuClockFrequencyInMHz_22() const { return ___deviceGpuClockFrequencyInMHz_22; } inline float* get_address_of_deviceGpuClockFrequencyInMHz_22() { return &___deviceGpuClockFrequencyInMHz_22; } inline void set_deviceGpuClockFrequencyInMHz_22(float value) { ___deviceGpuClockFrequencyInMHz_22 = value; } inline static int32_t get_offset_of_deviceCpuClockLevel_IsValid_23() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceCpuClockLevel_IsValid_23)); } inline bool get_deviceCpuClockLevel_IsValid_23() const { return ___deviceCpuClockLevel_IsValid_23; } inline bool* get_address_of_deviceCpuClockLevel_IsValid_23() { return &___deviceCpuClockLevel_IsValid_23; } inline void set_deviceCpuClockLevel_IsValid_23(bool value) { ___deviceCpuClockLevel_IsValid_23 = value; } inline static int32_t get_offset_of_deviceCpuClockLevel_24() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceCpuClockLevel_24)); } inline int32_t get_deviceCpuClockLevel_24() const { return ___deviceCpuClockLevel_24; } inline int32_t* get_address_of_deviceCpuClockLevel_24() { return &___deviceCpuClockLevel_24; } inline void set_deviceCpuClockLevel_24(int32_t value) { ___deviceCpuClockLevel_24 = value; } inline static int32_t get_offset_of_deviceGpuClockLevel_IsValid_25() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceGpuClockLevel_IsValid_25)); } inline bool get_deviceGpuClockLevel_IsValid_25() const { return ___deviceGpuClockLevel_IsValid_25; } inline bool* get_address_of_deviceGpuClockLevel_IsValid_25() { return &___deviceGpuClockLevel_IsValid_25; } inline void set_deviceGpuClockLevel_IsValid_25(bool value) { ___deviceGpuClockLevel_IsValid_25 = value; } inline static int32_t get_offset_of_deviceGpuClockLevel_26() { return static_cast(offsetof(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B, ___deviceGpuClockLevel_26)); } inline int32_t get_deviceGpuClockLevel_26() const { return ___deviceGpuClockLevel_26; } inline int32_t* get_address_of_deviceGpuClockLevel_26() { return &___deviceGpuClockLevel_26; } inline void set_deviceGpuClockLevel_26(int32_t value) { ___deviceGpuClockLevel_26 = value; } }; // OVRTrackedKeyboard/<>c struct U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B : public RuntimeObject { public: public: }; // OVRTrackedKeyboard/d__74 struct U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474 : public RuntimeObject { public: // System.Int32 OVRTrackedKeyboard/d__74::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRTrackedKeyboard/d__74::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRTrackedKeyboard OVRTrackedKeyboard/d__74::<>4__this OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474, ___U3CU3E4__this_2)); } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // OVRTrackedKeyboard/d__73 struct U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599 : public RuntimeObject { public: // System.Int32 OVRTrackedKeyboard/d__73::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRTrackedKeyboard/d__73::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRTrackedKeyboard OVRTrackedKeyboard/d__73::<>4__this OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599, ___U3CU3E4__this_2)); } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // OVRTrackedKeyboard/d__81 struct U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D : public RuntimeObject { public: // System.Int32 OVRTrackedKeyboard/d__81::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRTrackedKeyboard/d__81::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRTrackedKeyboard OVRTrackedKeyboard/d__81::<>4__this OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D, ___U3CU3E4__this_2)); } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // OVRTrackedKeyboard/d__83 struct U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500 : public RuntimeObject { public: // System.Int32 OVRTrackedKeyboard/d__83::<>1__state int32_t ___U3CU3E1__state_0; // System.Object OVRTrackedKeyboard/d__83::<>2__current RuntimeObject * ___U3CU3E2__current_1; // OVRTrackedKeyboard OVRTrackedKeyboard/d__83::<>4__this OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * ___U3CU3E4__this_2; public: inline static int32_t get_offset_of_U3CU3E1__state_0() { return static_cast(offsetof(U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500, ___U3CU3E1__state_0)); } inline int32_t get_U3CU3E1__state_0() const { return ___U3CU3E1__state_0; } inline int32_t* get_address_of_U3CU3E1__state_0() { return &___U3CU3E1__state_0; } inline void set_U3CU3E1__state_0(int32_t value) { ___U3CU3E1__state_0 = value; } inline static int32_t get_offset_of_U3CU3E2__current_1() { return static_cast(offsetof(U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500, ___U3CU3E2__current_1)); } inline RuntimeObject * get_U3CU3E2__current_1() const { return ___U3CU3E2__current_1; } inline RuntimeObject ** get_address_of_U3CU3E2__current_1() { return &___U3CU3E2__current_1; } inline void set_U3CU3E2__current_1(RuntimeObject * value) { ___U3CU3E2__current_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E2__current_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E4__this_2() { return static_cast(offsetof(U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500, ___U3CU3E4__this_2)); } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * get_U3CU3E4__this_2() const { return ___U3CU3E4__this_2; } inline OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 ** get_address_of_U3CU3E4__this_2() { return &___U3CU3E4__this_2; } inline void set_U3CU3E4__this_2(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * value) { ___U3CU3E4__this_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_2), (void*)value); } }; // OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker struct ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D : public RuntimeObject { public: // System.Int32 OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker::k__BackingField int32_t ___U3CReadCountU3Ek__BackingField_0; // OVRHapticsClip OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker::k__BackingField OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___U3CClipU3Ek__BackingField_1; public: inline static int32_t get_offset_of_U3CReadCountU3Ek__BackingField_0() { return static_cast(offsetof(ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D, ___U3CReadCountU3Ek__BackingField_0)); } inline int32_t get_U3CReadCountU3Ek__BackingField_0() const { return ___U3CReadCountU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CReadCountU3Ek__BackingField_0() { return &___U3CReadCountU3Ek__BackingField_0; } inline void set_U3CReadCountU3Ek__BackingField_0(int32_t value) { ___U3CReadCountU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CClipU3Ek__BackingField_1() { return static_cast(offsetof(ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D, ___U3CClipU3Ek__BackingField_1)); } inline OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * get_U3CClipU3Ek__BackingField_1() const { return ___U3CClipU3Ek__BackingField_1; } inline OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 ** get_address_of_U3CClipU3Ek__BackingField_1() { return &___U3CClipU3Ek__BackingField_1; } inline void set_U3CClipU3Ek__BackingField_1(OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * value) { ___U3CClipU3Ek__BackingField_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CClipU3Ek__BackingField_1), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * ___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 AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E, ___list_0)); } inline List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * get_list_0() const { return ___list_0; } inline List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E, ___current_3)); } inline AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * get_current_3() const { return ___current_3; } inline AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * ___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; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___list_0)); } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * get_list_0() const { return ___list_0; } inline List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6, ___current_3)); } inline RuntimeObject * get_current_3() const { return ___current_3; } inline RuntimeObject ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(RuntimeObject * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Collections.Generic.List`1/Enumerator struct Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A { public: // System.Collections.Generic.List`1 System.Collections.Generic.List`1/Enumerator::list List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * ___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 TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * ___current_3; public: inline static int32_t get_offset_of_list_0() { return static_cast(offsetof(Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A, ___list_0)); } inline List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * get_list_0() const { return ___list_0; } inline List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF ** get_address_of_list_0() { return &___list_0; } inline void set_list_0(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * value) { ___list_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___list_0), (void*)value); } inline static int32_t get_offset_of_index_1() { return static_cast(offsetof(Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A, ___index_1)); } inline int32_t get_index_1() const { return ___index_1; } inline int32_t* get_address_of_index_1() { return &___index_1; } inline void set_index_1(int32_t value) { ___index_1 = value; } inline static int32_t get_offset_of_version_2() { return static_cast(offsetof(Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A, ___version_2)); } inline int32_t get_version_2() const { return ___version_2; } inline int32_t* get_address_of_version_2() { return &___version_2; } inline void set_version_2(int32_t value) { ___version_2 = value; } inline static int32_t get_offset_of_current_3() { return static_cast(offsetof(Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A, ___current_3)); } inline TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * get_current_3() const { return ___current_3; } inline TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE ** get_address_of_current_3() { return &___current_3; } inline void set_current_3(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * value) { ___current_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___current_3), (void*)value); } }; // System.Nullable`1 struct Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 { public: // T System.Nullable`1::value int32_t ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___value_0)); } inline int32_t get_value_0() const { return ___value_0; } inline int32_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(int32_t value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Nullable`1 struct Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A { public: // T System.Nullable`1::value float ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A, ___value_0)); } inline float get_value_0() const { return ___value_0; } inline float* get_address_of_value_0() { return &___value_0; } inline void set_value_0(float value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37 { public: // System.Boolean System.Boolean::m_value bool ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37, ___m_value_0)); } inline bool get_m_value_0() const { return ___m_value_0; } inline bool* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(bool value) { ___m_value_0 = value; } }; // System.Byte struct Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056 { public: // System.Byte System.Byte::m_value uint8_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Byte_t0111FAB8B8685667EDDAF77683F0D8F86B659056, ___m_value_0)); } inline uint8_t get_m_value_0() const { return ___m_value_0; } inline uint8_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint8_t value) { ___m_value_0 = value; } }; // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14 { public: // System.Char System.Char::m_value Il2CppChar ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14, ___m_value_0)); } inline Il2CppChar get_m_value_0() const { return ___m_value_0; } inline Il2CppChar* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(Il2CppChar value) { ___m_value_0 = value; } }; // UnityEngine.Color struct Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 { public: // 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; public: inline static int32_t get_offset_of_r_0() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast(offsetof(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // UnityEngine.Color32 struct Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D { public: union { #pragma pack(push, tp, 1) struct { // System.Int32 UnityEngine.Color32::rgba int32_t ___rgba_0; }; #pragma pack(pop, tp) struct { int32_t ___rgba_0_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { // System.Byte UnityEngine.Color32::r uint8_t ___r_1; }; #pragma pack(pop, tp) struct { uint8_t ___r_1_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___g_2_OffsetPadding[1]; // System.Byte UnityEngine.Color32::g uint8_t ___g_2; }; #pragma pack(pop, tp) struct { char ___g_2_OffsetPadding_forAlignmentOnly[1]; uint8_t ___g_2_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___b_3_OffsetPadding[2]; // System.Byte UnityEngine.Color32::b uint8_t ___b_3; }; #pragma pack(pop, tp) struct { char ___b_3_OffsetPadding_forAlignmentOnly[2]; uint8_t ___b_3_forAlignmentOnly; }; #pragma pack(push, tp, 1) struct { char ___a_4_OffsetPadding[3]; // System.Byte UnityEngine.Color32::a uint8_t ___a_4; }; #pragma pack(pop, tp) struct { char ___a_4_OffsetPadding_forAlignmentOnly[3]; uint8_t ___a_4_forAlignmentOnly; }; }; public: inline static int32_t get_offset_of_rgba_0() { return static_cast(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___rgba_0)); } inline int32_t get_rgba_0() const { return ___rgba_0; } inline int32_t* get_address_of_rgba_0() { return &___rgba_0; } inline void set_rgba_0(int32_t value) { ___rgba_0 = value; } inline static int32_t get_offset_of_r_1() { return static_cast(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___r_1)); } inline uint8_t get_r_1() const { return ___r_1; } inline uint8_t* get_address_of_r_1() { return &___r_1; } inline void set_r_1(uint8_t value) { ___r_1 = value; } inline static int32_t get_offset_of_g_2() { return static_cast(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___g_2)); } inline uint8_t get_g_2() const { return ___g_2; } inline uint8_t* get_address_of_g_2() { return &___g_2; } inline void set_g_2(uint8_t value) { ___g_2 = value; } inline static int32_t get_offset_of_b_3() { return static_cast(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___b_3)); } inline uint8_t get_b_3() const { return ___b_3; } inline uint8_t* get_address_of_b_3() { return &___b_3; } inline void set_b_3(uint8_t value) { ___b_3 = value; } inline static int32_t get_offset_of_a_4() { return static_cast(offsetof(Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D, ___a_4)); } inline uint8_t get_a_4() const { return ___a_4; } inline uint8_t* get_address_of_a_4() { return &___a_4; } inline void set_a_4(uint8_t value) { ___a_4 = value; } }; // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181 { public: // System.Double System.Double::m_value double ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181, ___m_value_0)); } inline double get_m_value_0() const { return ___m_value_0; } inline double* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(double value) { ___m_value_0 = value; } }; // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA : public ValueType_tDBF999C1B75C48C68621878250DBF6CDBCF51E52 { public: public: }; // Native definition for P/Invoke marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_pinvoke { }; // Native definition for COM marshalling of System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_marshaled_com { }; // System.Runtime.InteropServices.GCHandle struct GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 { public: // System.Int32 System.Runtime.InteropServices.GCHandle::handle int32_t ___handle_0; public: inline static int32_t get_offset_of_handle_0() { return static_cast(offsetof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603, ___handle_0)); } inline int32_t get_handle_0() const { return ___handle_0; } inline int32_t* get_address_of_handle_0() { return &___handle_0; } inline void set_handle_0(int32_t value) { ___handle_0 = value; } }; // System.Int16 struct Int16_tD0F031114106263BB459DA1F099FF9F42691295A { public: // System.Int16 System.Int16::m_value int16_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int16_tD0F031114106263BB459DA1F099FF9F42691295A, ___m_value_0)); } inline int16_t get_m_value_0() const { return ___m_value_0; } inline int16_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int16_t value) { ___m_value_0 = value; } }; // System.Int32 struct Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046 { public: // System.Int32 System.Int32::m_value int32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046, ___m_value_0)); } inline int32_t get_m_value_0() const { return ___m_value_0; } inline int32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int32_t value) { ___m_value_0 = value; } }; // System.Int64 struct Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3 { public: // System.Int64 System.Int64::m_value int64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Int64_t378EE0D608BD3107E77238E85F30D2BBD46981F3, ___m_value_0)); } inline int64_t get_m_value_0() const { return ___m_value_0; } inline int64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(int64_t value) { ___m_value_0 = value; } }; // System.IntPtr struct IntPtr_t { public: // System.Void* System.IntPtr::m_value void* ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(IntPtr_t, ___m_value_0)); } inline void* get_m_value_0() const { return ___m_value_0; } inline void** get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(void* value) { ___m_value_0 = value; } }; // UnityEngine.LayerMask struct LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 { public: // System.Int32 UnityEngine.LayerMask::m_Mask int32_t ___m_Mask_0; public: inline static int32_t get_offset_of_m_Mask_0() { return static_cast(offsetof(LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8, ___m_Mask_0)); } inline int32_t get_m_Mask_0() const { return ___m_Mask_0; } inline int32_t* get_address_of_m_Mask_0() { return &___m_Mask_0; } inline void set_m_Mask_0(int32_t value) { ___m_Mask_0 = value; } }; // UnityEngine.Matrix4x4 struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 { public: // 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; public: inline static int32_t get_offset_of_m00_0() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m00_0)); } inline float get_m00_0() const { return ___m00_0; } inline float* get_address_of_m00_0() { return &___m00_0; } inline void set_m00_0(float value) { ___m00_0 = value; } inline static int32_t get_offset_of_m10_1() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m10_1)); } inline float get_m10_1() const { return ___m10_1; } inline float* get_address_of_m10_1() { return &___m10_1; } inline void set_m10_1(float value) { ___m10_1 = value; } inline static int32_t get_offset_of_m20_2() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m20_2)); } inline float get_m20_2() const { return ___m20_2; } inline float* get_address_of_m20_2() { return &___m20_2; } inline void set_m20_2(float value) { ___m20_2 = value; } inline static int32_t get_offset_of_m30_3() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m30_3)); } inline float get_m30_3() const { return ___m30_3; } inline float* get_address_of_m30_3() { return &___m30_3; } inline void set_m30_3(float value) { ___m30_3 = value; } inline static int32_t get_offset_of_m01_4() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m01_4)); } inline float get_m01_4() const { return ___m01_4; } inline float* get_address_of_m01_4() { return &___m01_4; } inline void set_m01_4(float value) { ___m01_4 = value; } inline static int32_t get_offset_of_m11_5() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m11_5)); } inline float get_m11_5() const { return ___m11_5; } inline float* get_address_of_m11_5() { return &___m11_5; } inline void set_m11_5(float value) { ___m11_5 = value; } inline static int32_t get_offset_of_m21_6() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m21_6)); } inline float get_m21_6() const { return ___m21_6; } inline float* get_address_of_m21_6() { return &___m21_6; } inline void set_m21_6(float value) { ___m21_6 = value; } inline static int32_t get_offset_of_m31_7() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m31_7)); } inline float get_m31_7() const { return ___m31_7; } inline float* get_address_of_m31_7() { return &___m31_7; } inline void set_m31_7(float value) { ___m31_7 = value; } inline static int32_t get_offset_of_m02_8() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m02_8)); } inline float get_m02_8() const { return ___m02_8; } inline float* get_address_of_m02_8() { return &___m02_8; } inline void set_m02_8(float value) { ___m02_8 = value; } inline static int32_t get_offset_of_m12_9() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m12_9)); } inline float get_m12_9() const { return ___m12_9; } inline float* get_address_of_m12_9() { return &___m12_9; } inline void set_m12_9(float value) { ___m12_9 = value; } inline static int32_t get_offset_of_m22_10() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m22_10)); } inline float get_m22_10() const { return ___m22_10; } inline float* get_address_of_m22_10() { return &___m22_10; } inline void set_m22_10(float value) { ___m22_10 = value; } inline static int32_t get_offset_of_m32_11() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m32_11)); } inline float get_m32_11() const { return ___m32_11; } inline float* get_address_of_m32_11() { return &___m32_11; } inline void set_m32_11(float value) { ___m32_11 = value; } inline static int32_t get_offset_of_m03_12() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m03_12)); } inline float get_m03_12() const { return ___m03_12; } inline float* get_address_of_m03_12() { return &___m03_12; } inline void set_m03_12(float value) { ___m03_12 = value; } inline static int32_t get_offset_of_m13_13() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m13_13)); } inline float get_m13_13() const { return ___m13_13; } inline float* get_address_of_m13_13() { return &___m13_13; } inline void set_m13_13(float value) { ___m13_13 = value; } inline static int32_t get_offset_of_m23_14() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m23_14)); } inline float get_m23_14() const { return ___m23_14; } inline float* get_address_of_m23_14() { return &___m23_14; } inline void set_m23_14(float value) { ___m23_14 = value; } inline static int32_t get_offset_of_m33_15() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461, ___m33_15)); } inline float get_m33_15() const { return ___m33_15; } inline float* get_address_of_m33_15() { return &___m33_15; } inline void set_m33_15(float value) { ___m33_15 = value; } }; // OVRBinaryChunk struct OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607 { public: // System.IO.Stream OVRBinaryChunk::chunkStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___chunkStream_0; // System.UInt32 OVRBinaryChunk::chunkLength uint32_t ___chunkLength_1; // System.Int64 OVRBinaryChunk::chunkStart int64_t ___chunkStart_2; public: inline static int32_t get_offset_of_chunkStream_0() { return static_cast(offsetof(OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607, ___chunkStream_0)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_chunkStream_0() const { return ___chunkStream_0; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_chunkStream_0() { return &___chunkStream_0; } inline void set_chunkStream_0(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___chunkStream_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___chunkStream_0), (void*)value); } inline static int32_t get_offset_of_chunkLength_1() { return static_cast(offsetof(OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607, ___chunkLength_1)); } inline uint32_t get_chunkLength_1() const { return ___chunkLength_1; } inline uint32_t* get_address_of_chunkLength_1() { return &___chunkLength_1; } inline void set_chunkLength_1(uint32_t value) { ___chunkLength_1 = value; } inline static int32_t get_offset_of_chunkStart_2() { return static_cast(offsetof(OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607, ___chunkStart_2)); } inline int64_t get_chunkStart_2() const { return ___chunkStart_2; } inline int64_t* get_address_of_chunkStart_2() { return &___chunkStart_2; } inline void set_chunkStart_2(int64_t value) { ___chunkStart_2 = value; } }; // Native definition for P/Invoke marshalling of OVRBinaryChunk struct OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607_marshaled_pinvoke { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___chunkStream_0; uint32_t ___chunkLength_1; int64_t ___chunkStart_2; }; // Native definition for COM marshalling of OVRBinaryChunk struct OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607_marshaled_com { Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___chunkStream_0; uint32_t ___chunkLength_1; int64_t ___chunkStart_2; }; // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 { public: // System.Single UnityEngine.Quaternion::x float ___x_0; // System.Single UnityEngine.Quaternion::y float ___y_1; // System.Single UnityEngine.Quaternion::z float ___z_2; // System.Single UnityEngine.Quaternion::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; // UnityEngine.Rect struct Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 { public: // 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; public: inline static int32_t get_offset_of_m_XMin_0() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_XMin_0)); } inline float get_m_XMin_0() const { return ___m_XMin_0; } inline float* get_address_of_m_XMin_0() { return &___m_XMin_0; } inline void set_m_XMin_0(float value) { ___m_XMin_0 = value; } inline static int32_t get_offset_of_m_YMin_1() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_YMin_1)); } inline float get_m_YMin_1() const { return ___m_YMin_1; } inline float* get_address_of_m_YMin_1() { return &___m_YMin_1; } inline void set_m_YMin_1(float value) { ___m_YMin_1 = value; } inline static int32_t get_offset_of_m_Width_2() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Width_2)); } inline float get_m_Width_2() const { return ___m_Width_2; } inline float* get_address_of_m_Width_2() { return &___m_Width_2; } inline void set_m_Width_2(float value) { ___m_Width_2 = value; } inline static int32_t get_offset_of_m_Height_3() { return static_cast(offsetof(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878, ___m_Height_3)); } inline float get_m_Height_3() const { return ___m_Height_3; } inline float* get_address_of_m_Height_3() { return &___m_Height_3; } inline void set_m_Height_3(float value) { ___m_Height_3 = value; } }; // UnityEngine.SceneManagement.Scene struct Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE { public: // System.Int32 UnityEngine.SceneManagement.Scene::m_Handle int32_t ___m_Handle_0; public: inline static int32_t get_offset_of_m_Handle_0() { return static_cast(offsetof(Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE, ___m_Handle_0)); } inline int32_t get_m_Handle_0() const { return ___m_Handle_0; } inline int32_t* get_address_of_m_Handle_0() { return &___m_Handle_0; } inline void set_m_Handle_0(int32_t value) { ___m_Handle_0 = value; } }; // System.Single struct Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E { public: // System.Single System.Single::m_value float ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E, ___m_value_0)); } inline float get_m_value_0() const { return ___m_value_0; } inline float* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(float value) { ___m_value_0 = value; } }; // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IO.Stream/ReadWriteTask System.IO.Stream::_activeReadWriteTask ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * ____activeReadWriteTask_3; // System.Threading.SemaphoreSlim System.IO.Stream::_asyncActiveSemaphore SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * ____asyncActiveSemaphore_4; public: inline static int32_t get_offset_of__activeReadWriteTask_3() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____activeReadWriteTask_3)); } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * get__activeReadWriteTask_3() const { return ____activeReadWriteTask_3; } inline ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 ** get_address_of__activeReadWriteTask_3() { return &____activeReadWriteTask_3; } inline void set__activeReadWriteTask_3(ReadWriteTask_t32CD2C230786712954C1DB518DBE420A1F4C7974 * value) { ____activeReadWriteTask_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____activeReadWriteTask_3), (void*)value); } inline static int32_t get_offset_of__asyncActiveSemaphore_4() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB, ____asyncActiveSemaphore_4)); } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * get__asyncActiveSemaphore_4() const { return ____asyncActiveSemaphore_4; } inline SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 ** get_address_of__asyncActiveSemaphore_4() { return &____asyncActiveSemaphore_4; } inline void set__asyncActiveSemaphore_4(SemaphoreSlim_t3EF85FC980AE57957BEBB6B78E81DE2E3233D385 * value) { ____asyncActiveSemaphore_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____asyncActiveSemaphore_4), (void*)value); } }; // System.UInt32 struct UInt32_tE60352A06233E4E69DD198BCC67142159F686B15 { public: // System.UInt32 System.UInt32::m_value uint32_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt32_tE60352A06233E4E69DD198BCC67142159F686B15, ___m_value_0)); } inline uint32_t get_m_value_0() const { return ___m_value_0; } inline uint32_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint32_t value) { ___m_value_0 = value; } }; // System.UInt64 struct UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281 { public: // System.UInt64 System.UInt64::m_value uint64_t ___m_value_0; public: inline static int32_t get_offset_of_m_value_0() { return static_cast(offsetof(UInt64_tEC57511B3E3CA2DBA1BEBD434C6983E31C943281, ___m_value_0)); } inline uint64_t get_m_value_0() const { return ___m_value_0; } inline uint64_t* get_address_of_m_value_0() { return &___m_value_0; } inline void set_m_value_0(uint64_t value) { ___m_value_0 = value; } }; // OVR.OpenVR.VRControllerAxis_t struct VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A { public: // System.Single OVR.OpenVR.VRControllerAxis_t::x float ___x_0; // System.Single OVR.OpenVR.VRControllerAxis_t::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; // UnityEngine.Vector2 struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 { public: // System.Single UnityEngine.Vector2::x float ___x_0; // System.Single UnityEngine.Vector2::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E { public: // System.Single UnityEngine.Vector3::x float ___x_2; // System.Single UnityEngine.Vector3::y float ___y_3; // System.Single UnityEngine.Vector3::z float ___z_4; public: inline static int32_t get_offset_of_x_2() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___x_2)); } inline float get_x_2() const { return ___x_2; } inline float* get_address_of_x_2() { return &___x_2; } inline void set_x_2(float value) { ___x_2 = value; } inline static int32_t get_offset_of_y_3() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___y_3)); } inline float get_y_3() const { return ___y_3; } inline float* get_address_of_y_3() { return &___y_3; } inline void set_y_3(float value) { ___y_3 = value; } inline static int32_t get_offset_of_z_4() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E, ___z_4)); } inline float get_z_4() const { return ___z_4; } inline float* get_address_of_z_4() { return &___z_4; } inline void set_z_4(float value) { ___z_4 = value; } }; // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 { public: // 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; public: inline static int32_t get_offset_of_x_1() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___x_1)); } inline float get_x_1() const { return ___x_1; } inline float* get_address_of_x_1() { return &___x_1; } inline void set_x_1(float value) { ___x_1 = value; } inline static int32_t get_offset_of_y_2() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___y_2)); } inline float get_y_2() const { return ___y_2; } inline float* get_address_of_y_2() { return &___y_2; } inline void set_y_2(float value) { ___y_2 = value; } inline static int32_t get_offset_of_z_3() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___z_3)); } inline float get_z_3() const { return ___z_3; } inline float* get_address_of_z_3() { return &___z_3; } inline void set_z_3(float value) { ___z_3 = value; } inline static int32_t get_offset_of_w_4() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7, ___w_4)); } inline float get_w_4() const { return ___w_4; } inline float* get_address_of_w_4() { return &___w_4; } inline void set_w_4(float value) { ___w_4 = value; } }; // System.Void struct Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5 { public: union { struct { }; uint8_t Void_t700C6383A2A510C2CF4DD86DABD5CA9FF70ADAC5__padding[1]; }; public: }; // UnityEngine.WaitForEndOfFrame struct WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: public: }; // UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.Single UnityEngine.WaitForSeconds::m_Seconds float ___m_Seconds_0; public: inline static int32_t get_offset_of_m_Seconds_0() { return static_cast(offsetof(WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013, ___m_Seconds_0)); } inline float get_m_Seconds_0() const { return ___m_Seconds_0; } inline float* get_address_of_m_Seconds_0() { return &___m_Seconds_0; } inline void set_m_Seconds_0(float value) { ___m_Seconds_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { float ___m_Seconds_0; }; // Native definition for COM marshalling of UnityEngine.WaitForSeconds struct WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { float ___m_Seconds_0; }; // OVRDisplay/EyeFov struct EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4 { public: // System.Single OVRDisplay/EyeFov::UpFov float ___UpFov_0; // System.Single OVRDisplay/EyeFov::DownFov float ___DownFov_1; // System.Single OVRDisplay/EyeFov::LeftFov float ___LeftFov_2; // System.Single OVRDisplay/EyeFov::RightFov float ___RightFov_3; public: inline static int32_t get_offset_of_UpFov_0() { return static_cast(offsetof(EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4, ___UpFov_0)); } inline float get_UpFov_0() const { return ___UpFov_0; } inline float* get_address_of_UpFov_0() { return &___UpFov_0; } inline void set_UpFov_0(float value) { ___UpFov_0 = value; } inline static int32_t get_offset_of_DownFov_1() { return static_cast(offsetof(EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4, ___DownFov_1)); } inline float get_DownFov_1() const { return ___DownFov_1; } inline float* get_address_of_DownFov_1() { return &___DownFov_1; } inline void set_DownFov_1(float value) { ___DownFov_1 = value; } inline static int32_t get_offset_of_LeftFov_2() { return static_cast(offsetof(EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4, ___LeftFov_2)); } inline float get_LeftFov_2() const { return ___LeftFov_2; } inline float* get_address_of_LeftFov_2() { return &___LeftFov_2; } inline void set_LeftFov_2(float value) { ___LeftFov_2 = value; } inline static int32_t get_offset_of_RightFov_3() { return static_cast(offsetof(EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4, ___RightFov_3)); } inline float get_RightFov_3() const { return ___RightFov_3; } inline float* get_address_of_RightFov_3() { return &___RightFov_3; } inline void set_RightFov_3(float value) { ___RightFov_3 = value; } }; // OVRDisplay/LatencyData struct LatencyData_t2A5D2FF112FAE6601CEEFC8A1327124EBF3EDE23 { public: // System.Single OVRDisplay/LatencyData::render float ___render_0; // System.Single OVRDisplay/LatencyData::timeWarp float ___timeWarp_1; // System.Single OVRDisplay/LatencyData::postPresent float ___postPresent_2; // System.Single OVRDisplay/LatencyData::renderError float ___renderError_3; // System.Single OVRDisplay/LatencyData::timeWarpError float ___timeWarpError_4; public: inline static int32_t get_offset_of_render_0() { return static_cast(offsetof(LatencyData_t2A5D2FF112FAE6601CEEFC8A1327124EBF3EDE23, ___render_0)); } inline float get_render_0() const { return ___render_0; } inline float* get_address_of_render_0() { return &___render_0; } inline void set_render_0(float value) { ___render_0 = value; } inline static int32_t get_offset_of_timeWarp_1() { return static_cast(offsetof(LatencyData_t2A5D2FF112FAE6601CEEFC8A1327124EBF3EDE23, ___timeWarp_1)); } inline float get_timeWarp_1() const { return ___timeWarp_1; } inline float* get_address_of_timeWarp_1() { return &___timeWarp_1; } inline void set_timeWarp_1(float value) { ___timeWarp_1 = value; } inline static int32_t get_offset_of_postPresent_2() { return static_cast(offsetof(LatencyData_t2A5D2FF112FAE6601CEEFC8A1327124EBF3EDE23, ___postPresent_2)); } inline float get_postPresent_2() const { return ___postPresent_2; } inline float* get_address_of_postPresent_2() { return &___postPresent_2; } inline void set_postPresent_2(float value) { ___postPresent_2 = value; } inline static int32_t get_offset_of_renderError_3() { return static_cast(offsetof(LatencyData_t2A5D2FF112FAE6601CEEFC8A1327124EBF3EDE23, ___renderError_3)); } inline float get_renderError_3() const { return ___renderError_3; } inline float* get_address_of_renderError_3() { return &___renderError_3; } inline void set_renderError_3(float value) { ___renderError_3 = value; } inline static int32_t get_offset_of_timeWarpError_4() { return static_cast(offsetof(LatencyData_t2A5D2FF112FAE6601CEEFC8A1327124EBF3EDE23, ___timeWarpError_4)); } inline float get_timeWarpError_4() const { return ___timeWarpError_4; } inline float* get_address_of_timeWarpError_4() { return &___timeWarpError_4; } inline void set_timeWarpError_4(float value) { ___timeWarpError_4 = value; } }; // OVRMeshRenderer/MeshRendererData struct MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D { public: // System.Boolean OVRMeshRenderer/MeshRendererData::k__BackingField bool ___U3CIsDataValidU3Ek__BackingField_0; // System.Boolean OVRMeshRenderer/MeshRendererData::k__BackingField bool ___U3CIsDataHighConfidenceU3Ek__BackingField_1; // System.Boolean OVRMeshRenderer/MeshRendererData::k__BackingField bool ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2; public: inline static int32_t get_offset_of_U3CIsDataValidU3Ek__BackingField_0() { return static_cast(offsetof(MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D, ___U3CIsDataValidU3Ek__BackingField_0)); } inline bool get_U3CIsDataValidU3Ek__BackingField_0() const { return ___U3CIsDataValidU3Ek__BackingField_0; } inline bool* get_address_of_U3CIsDataValidU3Ek__BackingField_0() { return &___U3CIsDataValidU3Ek__BackingField_0; } inline void set_U3CIsDataValidU3Ek__BackingField_0(bool value) { ___U3CIsDataValidU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CIsDataHighConfidenceU3Ek__BackingField_1() { return static_cast(offsetof(MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D, ___U3CIsDataHighConfidenceU3Ek__BackingField_1)); } inline bool get_U3CIsDataHighConfidenceU3Ek__BackingField_1() const { return ___U3CIsDataHighConfidenceU3Ek__BackingField_1; } inline bool* get_address_of_U3CIsDataHighConfidenceU3Ek__BackingField_1() { return &___U3CIsDataHighConfidenceU3Ek__BackingField_1; } inline void set_U3CIsDataHighConfidenceU3Ek__BackingField_1(bool value) { ___U3CIsDataHighConfidenceU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2() { return static_cast(offsetof(MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D, ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2)); } inline bool get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2() const { return ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2; } inline bool* get_address_of_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2() { return &___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2; } inline void set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2(bool value) { ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2 = value; } }; // Native definition for P/Invoke marshalling of OVRMeshRenderer/MeshRendererData struct MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_pinvoke { int32_t ___U3CIsDataValidU3Ek__BackingField_0; int32_t ___U3CIsDataHighConfidenceU3Ek__BackingField_1; int32_t ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2; }; // Native definition for COM marshalling of OVRMeshRenderer/MeshRendererData struct MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_com { int32_t ___U3CIsDataValidU3Ek__BackingField_0; int32_t ___U3CIsDataHighConfidenceU3Ek__BackingField_1; int32_t ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2; }; // OVRNetwork/FrameHeader #pragma pack(push, tp, 1) struct FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB { public: // System.UInt32 OVRNetwork/FrameHeader::protocolIdentifier uint32_t ___protocolIdentifier_0; // System.Int32 OVRNetwork/FrameHeader::payloadType int32_t ___payloadType_1; // System.Int32 OVRNetwork/FrameHeader::payloadLength int32_t ___payloadLength_2; public: inline static int32_t get_offset_of_protocolIdentifier_0() { return static_cast(offsetof(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB, ___protocolIdentifier_0)); } inline uint32_t get_protocolIdentifier_0() const { return ___protocolIdentifier_0; } inline uint32_t* get_address_of_protocolIdentifier_0() { return &___protocolIdentifier_0; } inline void set_protocolIdentifier_0(uint32_t value) { ___protocolIdentifier_0 = value; } inline static int32_t get_offset_of_payloadType_1() { return static_cast(offsetof(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB, ___payloadType_1)); } inline int32_t get_payloadType_1() const { return ___payloadType_1; } inline int32_t* get_address_of_payloadType_1() { return &___payloadType_1; } inline void set_payloadType_1(int32_t value) { ___payloadType_1 = value; } inline static int32_t get_offset_of_payloadLength_2() { return static_cast(offsetof(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB, ___payloadLength_2)); } inline int32_t get_payloadLength_2() const { return ___payloadLength_2; } inline int32_t* get_address_of_payloadLength_2() { return &___payloadLength_2; } inline void set_payloadLength_2(int32_t value) { ___payloadLength_2 = value; } }; #pragma pack(pop, tp) // OVRPassthroughLayer/DeferredPassthroughMeshAddition struct DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873 { public: // UnityEngine.GameObject OVRPassthroughLayer/DeferredPassthroughMeshAddition::gameObject GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___gameObject_0; // System.Boolean OVRPassthroughLayer/DeferredPassthroughMeshAddition::updateTransform bool ___updateTransform_1; public: inline static int32_t get_offset_of_gameObject_0() { return static_cast(offsetof(DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873, ___gameObject_0)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_gameObject_0() const { return ___gameObject_0; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_gameObject_0() { return &___gameObject_0; } inline void set_gameObject_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___gameObject_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___gameObject_0), (void*)value); } inline static int32_t get_offset_of_updateTransform_1() { return static_cast(offsetof(DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873, ___updateTransform_1)); } inline bool get_updateTransform_1() const { return ___updateTransform_1; } inline bool* get_address_of_updateTransform_1() { return &___updateTransform_1; } inline void set_updateTransform_1(bool value) { ___updateTransform_1 = value; } }; // Native definition for P/Invoke marshalling of OVRPassthroughLayer/DeferredPassthroughMeshAddition struct DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshaled_pinvoke { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___gameObject_0; int32_t ___updateTransform_1; }; // Native definition for COM marshalling of OVRPassthroughLayer/DeferredPassthroughMeshAddition struct DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshaled_com { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___gameObject_0; int32_t ___updateTransform_1; }; // OVRPassthroughLayer/PassthroughMeshInstance struct PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF { public: // System.UInt64 OVRPassthroughLayer/PassthroughMeshInstance::meshHandle uint64_t ___meshHandle_0; // System.UInt64 OVRPassthroughLayer/PassthroughMeshInstance::instanceHandle uint64_t ___instanceHandle_1; // System.Boolean OVRPassthroughLayer/PassthroughMeshInstance::updateTransform bool ___updateTransform_2; public: inline static int32_t get_offset_of_meshHandle_0() { return static_cast(offsetof(PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF, ___meshHandle_0)); } inline uint64_t get_meshHandle_0() const { return ___meshHandle_0; } inline uint64_t* get_address_of_meshHandle_0() { return &___meshHandle_0; } inline void set_meshHandle_0(uint64_t value) { ___meshHandle_0 = value; } inline static int32_t get_offset_of_instanceHandle_1() { return static_cast(offsetof(PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF, ___instanceHandle_1)); } inline uint64_t get_instanceHandle_1() const { return ___instanceHandle_1; } inline uint64_t* get_address_of_instanceHandle_1() { return &___instanceHandle_1; } inline void set_instanceHandle_1(uint64_t value) { ___instanceHandle_1 = value; } inline static int32_t get_offset_of_updateTransform_2() { return static_cast(offsetof(PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF, ___updateTransform_2)); } inline bool get_updateTransform_2() const { return ___updateTransform_2; } inline bool* get_address_of_updateTransform_2() { return &___updateTransform_2; } inline void set_updateTransform_2(bool value) { ___updateTransform_2 = value; } }; // Native definition for P/Invoke marshalling of OVRPassthroughLayer/PassthroughMeshInstance struct PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_pinvoke { uint64_t ___meshHandle_0; uint64_t ___instanceHandle_1; int32_t ___updateTransform_2; }; // Native definition for COM marshalling of OVRPassthroughLayer/PassthroughMeshInstance struct PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_com { uint64_t ___meshHandle_0; uint64_t ___instanceHandle_1; int32_t ___updateTransform_2; }; // OVRPlugin/AppPerfFrameStats struct AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 { public: // System.Int32 OVRPlugin/AppPerfFrameStats::HmdVsyncIndex int32_t ___HmdVsyncIndex_0; // System.Int32 OVRPlugin/AppPerfFrameStats::AppFrameIndex int32_t ___AppFrameIndex_1; // System.Int32 OVRPlugin/AppPerfFrameStats::AppDroppedFrameCount int32_t ___AppDroppedFrameCount_2; // System.Single OVRPlugin/AppPerfFrameStats::AppMotionToPhotonLatency float ___AppMotionToPhotonLatency_3; // System.Single OVRPlugin/AppPerfFrameStats::AppQueueAheadTime float ___AppQueueAheadTime_4; // System.Single OVRPlugin/AppPerfFrameStats::AppCpuElapsedTime float ___AppCpuElapsedTime_5; // System.Single OVRPlugin/AppPerfFrameStats::AppGpuElapsedTime float ___AppGpuElapsedTime_6; // System.Int32 OVRPlugin/AppPerfFrameStats::CompositorFrameIndex int32_t ___CompositorFrameIndex_7; // System.Int32 OVRPlugin/AppPerfFrameStats::CompositorDroppedFrameCount int32_t ___CompositorDroppedFrameCount_8; // System.Single OVRPlugin/AppPerfFrameStats::CompositorLatency float ___CompositorLatency_9; // System.Single OVRPlugin/AppPerfFrameStats::CompositorCpuElapsedTime float ___CompositorCpuElapsedTime_10; // System.Single OVRPlugin/AppPerfFrameStats::CompositorGpuElapsedTime float ___CompositorGpuElapsedTime_11; // System.Single OVRPlugin/AppPerfFrameStats::CompositorCpuStartToGpuEndElapsedTime float ___CompositorCpuStartToGpuEndElapsedTime_12; // System.Single OVRPlugin/AppPerfFrameStats::CompositorGpuEndToVsyncElapsedTime float ___CompositorGpuEndToVsyncElapsedTime_13; public: inline static int32_t get_offset_of_HmdVsyncIndex_0() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___HmdVsyncIndex_0)); } inline int32_t get_HmdVsyncIndex_0() const { return ___HmdVsyncIndex_0; } inline int32_t* get_address_of_HmdVsyncIndex_0() { return &___HmdVsyncIndex_0; } inline void set_HmdVsyncIndex_0(int32_t value) { ___HmdVsyncIndex_0 = value; } inline static int32_t get_offset_of_AppFrameIndex_1() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___AppFrameIndex_1)); } inline int32_t get_AppFrameIndex_1() const { return ___AppFrameIndex_1; } inline int32_t* get_address_of_AppFrameIndex_1() { return &___AppFrameIndex_1; } inline void set_AppFrameIndex_1(int32_t value) { ___AppFrameIndex_1 = value; } inline static int32_t get_offset_of_AppDroppedFrameCount_2() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___AppDroppedFrameCount_2)); } inline int32_t get_AppDroppedFrameCount_2() const { return ___AppDroppedFrameCount_2; } inline int32_t* get_address_of_AppDroppedFrameCount_2() { return &___AppDroppedFrameCount_2; } inline void set_AppDroppedFrameCount_2(int32_t value) { ___AppDroppedFrameCount_2 = value; } inline static int32_t get_offset_of_AppMotionToPhotonLatency_3() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___AppMotionToPhotonLatency_3)); } inline float get_AppMotionToPhotonLatency_3() const { return ___AppMotionToPhotonLatency_3; } inline float* get_address_of_AppMotionToPhotonLatency_3() { return &___AppMotionToPhotonLatency_3; } inline void set_AppMotionToPhotonLatency_3(float value) { ___AppMotionToPhotonLatency_3 = value; } inline static int32_t get_offset_of_AppQueueAheadTime_4() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___AppQueueAheadTime_4)); } inline float get_AppQueueAheadTime_4() const { return ___AppQueueAheadTime_4; } inline float* get_address_of_AppQueueAheadTime_4() { return &___AppQueueAheadTime_4; } inline void set_AppQueueAheadTime_4(float value) { ___AppQueueAheadTime_4 = value; } inline static int32_t get_offset_of_AppCpuElapsedTime_5() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___AppCpuElapsedTime_5)); } inline float get_AppCpuElapsedTime_5() const { return ___AppCpuElapsedTime_5; } inline float* get_address_of_AppCpuElapsedTime_5() { return &___AppCpuElapsedTime_5; } inline void set_AppCpuElapsedTime_5(float value) { ___AppCpuElapsedTime_5 = value; } inline static int32_t get_offset_of_AppGpuElapsedTime_6() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___AppGpuElapsedTime_6)); } inline float get_AppGpuElapsedTime_6() const { return ___AppGpuElapsedTime_6; } inline float* get_address_of_AppGpuElapsedTime_6() { return &___AppGpuElapsedTime_6; } inline void set_AppGpuElapsedTime_6(float value) { ___AppGpuElapsedTime_6 = value; } inline static int32_t get_offset_of_CompositorFrameIndex_7() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___CompositorFrameIndex_7)); } inline int32_t get_CompositorFrameIndex_7() const { return ___CompositorFrameIndex_7; } inline int32_t* get_address_of_CompositorFrameIndex_7() { return &___CompositorFrameIndex_7; } inline void set_CompositorFrameIndex_7(int32_t value) { ___CompositorFrameIndex_7 = value; } inline static int32_t get_offset_of_CompositorDroppedFrameCount_8() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___CompositorDroppedFrameCount_8)); } inline int32_t get_CompositorDroppedFrameCount_8() const { return ___CompositorDroppedFrameCount_8; } inline int32_t* get_address_of_CompositorDroppedFrameCount_8() { return &___CompositorDroppedFrameCount_8; } inline void set_CompositorDroppedFrameCount_8(int32_t value) { ___CompositorDroppedFrameCount_8 = value; } inline static int32_t get_offset_of_CompositorLatency_9() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___CompositorLatency_9)); } inline float get_CompositorLatency_9() const { return ___CompositorLatency_9; } inline float* get_address_of_CompositorLatency_9() { return &___CompositorLatency_9; } inline void set_CompositorLatency_9(float value) { ___CompositorLatency_9 = value; } inline static int32_t get_offset_of_CompositorCpuElapsedTime_10() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___CompositorCpuElapsedTime_10)); } inline float get_CompositorCpuElapsedTime_10() const { return ___CompositorCpuElapsedTime_10; } inline float* get_address_of_CompositorCpuElapsedTime_10() { return &___CompositorCpuElapsedTime_10; } inline void set_CompositorCpuElapsedTime_10(float value) { ___CompositorCpuElapsedTime_10 = value; } inline static int32_t get_offset_of_CompositorGpuElapsedTime_11() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___CompositorGpuElapsedTime_11)); } inline float get_CompositorGpuElapsedTime_11() const { return ___CompositorGpuElapsedTime_11; } inline float* get_address_of_CompositorGpuElapsedTime_11() { return &___CompositorGpuElapsedTime_11; } inline void set_CompositorGpuElapsedTime_11(float value) { ___CompositorGpuElapsedTime_11 = value; } inline static int32_t get_offset_of_CompositorCpuStartToGpuEndElapsedTime_12() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___CompositorCpuStartToGpuEndElapsedTime_12)); } inline float get_CompositorCpuStartToGpuEndElapsedTime_12() const { return ___CompositorCpuStartToGpuEndElapsedTime_12; } inline float* get_address_of_CompositorCpuStartToGpuEndElapsedTime_12() { return &___CompositorCpuStartToGpuEndElapsedTime_12; } inline void set_CompositorCpuStartToGpuEndElapsedTime_12(float value) { ___CompositorCpuStartToGpuEndElapsedTime_12 = value; } inline static int32_t get_offset_of_CompositorGpuEndToVsyncElapsedTime_13() { return static_cast(offsetof(AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88, ___CompositorGpuEndToVsyncElapsedTime_13)); } inline float get_CompositorGpuEndToVsyncElapsedTime_13() const { return ___CompositorGpuEndToVsyncElapsedTime_13; } inline float* get_address_of_CompositorGpuEndToVsyncElapsedTime_13() { return &___CompositorGpuEndToVsyncElapsedTime_13; } inline void set_CompositorGpuEndToVsyncElapsedTime_13(float value) { ___CompositorGpuEndToVsyncElapsedTime_13 = value; } }; // OVRPlugin/CameraDeviceIntrinsicsParameters struct CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5 { public: // System.Single OVRPlugin/CameraDeviceIntrinsicsParameters::fx float ___fx_0; // System.Single OVRPlugin/CameraDeviceIntrinsicsParameters::fy float ___fy_1; // System.Single OVRPlugin/CameraDeviceIntrinsicsParameters::cx float ___cx_2; // System.Single OVRPlugin/CameraDeviceIntrinsicsParameters::cy float ___cy_3; // System.Double OVRPlugin/CameraDeviceIntrinsicsParameters::disto0 double ___disto0_4; // System.Double OVRPlugin/CameraDeviceIntrinsicsParameters::disto1 double ___disto1_5; // System.Double OVRPlugin/CameraDeviceIntrinsicsParameters::disto2 double ___disto2_6; // System.Double OVRPlugin/CameraDeviceIntrinsicsParameters::disto3 double ___disto3_7; // System.Double OVRPlugin/CameraDeviceIntrinsicsParameters::disto4 double ___disto4_8; // System.Single OVRPlugin/CameraDeviceIntrinsicsParameters::v_fov float ___v_fov_9; // System.Single OVRPlugin/CameraDeviceIntrinsicsParameters::h_fov float ___h_fov_10; // System.Single OVRPlugin/CameraDeviceIntrinsicsParameters::d_fov float ___d_fov_11; // System.Int32 OVRPlugin/CameraDeviceIntrinsicsParameters::w int32_t ___w_12; // System.Int32 OVRPlugin/CameraDeviceIntrinsicsParameters::h int32_t ___h_13; public: inline static int32_t get_offset_of_fx_0() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___fx_0)); } inline float get_fx_0() const { return ___fx_0; } inline float* get_address_of_fx_0() { return &___fx_0; } inline void set_fx_0(float value) { ___fx_0 = value; } inline static int32_t get_offset_of_fy_1() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___fy_1)); } inline float get_fy_1() const { return ___fy_1; } inline float* get_address_of_fy_1() { return &___fy_1; } inline void set_fy_1(float value) { ___fy_1 = value; } inline static int32_t get_offset_of_cx_2() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___cx_2)); } inline float get_cx_2() const { return ___cx_2; } inline float* get_address_of_cx_2() { return &___cx_2; } inline void set_cx_2(float value) { ___cx_2 = value; } inline static int32_t get_offset_of_cy_3() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___cy_3)); } inline float get_cy_3() const { return ___cy_3; } inline float* get_address_of_cy_3() { return &___cy_3; } inline void set_cy_3(float value) { ___cy_3 = value; } inline static int32_t get_offset_of_disto0_4() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___disto0_4)); } inline double get_disto0_4() const { return ___disto0_4; } inline double* get_address_of_disto0_4() { return &___disto0_4; } inline void set_disto0_4(double value) { ___disto0_4 = value; } inline static int32_t get_offset_of_disto1_5() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___disto1_5)); } inline double get_disto1_5() const { return ___disto1_5; } inline double* get_address_of_disto1_5() { return &___disto1_5; } inline void set_disto1_5(double value) { ___disto1_5 = value; } inline static int32_t get_offset_of_disto2_6() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___disto2_6)); } inline double get_disto2_6() const { return ___disto2_6; } inline double* get_address_of_disto2_6() { return &___disto2_6; } inline void set_disto2_6(double value) { ___disto2_6 = value; } inline static int32_t get_offset_of_disto3_7() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___disto3_7)); } inline double get_disto3_7() const { return ___disto3_7; } inline double* get_address_of_disto3_7() { return &___disto3_7; } inline void set_disto3_7(double value) { ___disto3_7 = value; } inline static int32_t get_offset_of_disto4_8() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___disto4_8)); } inline double get_disto4_8() const { return ___disto4_8; } inline double* get_address_of_disto4_8() { return &___disto4_8; } inline void set_disto4_8(double value) { ___disto4_8 = value; } inline static int32_t get_offset_of_v_fov_9() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___v_fov_9)); } inline float get_v_fov_9() const { return ___v_fov_9; } inline float* get_address_of_v_fov_9() { return &___v_fov_9; } inline void set_v_fov_9(float value) { ___v_fov_9 = value; } inline static int32_t get_offset_of_h_fov_10() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___h_fov_10)); } inline float get_h_fov_10() const { return ___h_fov_10; } inline float* get_address_of_h_fov_10() { return &___h_fov_10; } inline void set_h_fov_10(float value) { ___h_fov_10 = value; } inline static int32_t get_offset_of_d_fov_11() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___d_fov_11)); } inline float get_d_fov_11() const { return ___d_fov_11; } inline float* get_address_of_d_fov_11() { return &___d_fov_11; } inline void set_d_fov_11(float value) { ___d_fov_11 = value; } inline static int32_t get_offset_of_w_12() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___w_12)); } inline int32_t get_w_12() const { return ___w_12; } inline int32_t* get_address_of_w_12() { return &___w_12; } inline void set_w_12(int32_t value) { ___w_12 = value; } inline static int32_t get_offset_of_h_13() { return static_cast(offsetof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5, ___h_13)); } inline int32_t get_h_13() const { return ___h_13; } inline int32_t* get_address_of_h_13() { return &___h_13; } inline void set_h_13(int32_t value) { ___h_13 = value; } }; // OVRPlugin/Colorf struct Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81 { public: // System.Single OVRPlugin/Colorf::r float ___r_0; // System.Single OVRPlugin/Colorf::g float ___g_1; // System.Single OVRPlugin/Colorf::b float ___b_2; // System.Single OVRPlugin/Colorf::a float ___a_3; public: inline static int32_t get_offset_of_r_0() { return static_cast(offsetof(Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81, ___r_0)); } inline float get_r_0() const { return ___r_0; } inline float* get_address_of_r_0() { return &___r_0; } inline void set_r_0(float value) { ___r_0 = value; } inline static int32_t get_offset_of_g_1() { return static_cast(offsetof(Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81, ___g_1)); } inline float get_g_1() const { return ___g_1; } inline float* get_address_of_g_1() { return &___g_1; } inline void set_g_1(float value) { ___g_1 = value; } inline static int32_t get_offset_of_b_2() { return static_cast(offsetof(Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81, ___b_2)); } inline float get_b_2() const { return ___b_2; } inline float* get_address_of_b_2() { return &___b_2; } inline void set_b_2(float value) { ___b_2 = value; } inline static int32_t get_offset_of_a_3() { return static_cast(offsetof(Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81, ___a_3)); } inline float get_a_3() const { return ___a_3; } inline float* get_address_of_a_3() { return &___a_3; } inline void set_a_3(float value) { ___a_3 = value; } }; // OVRPlugin/Fovf struct Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF { public: // System.Single OVRPlugin/Fovf::UpTan float ___UpTan_0; // System.Single OVRPlugin/Fovf::DownTan float ___DownTan_1; // System.Single OVRPlugin/Fovf::LeftTan float ___LeftTan_2; // System.Single OVRPlugin/Fovf::RightTan float ___RightTan_3; public: inline static int32_t get_offset_of_UpTan_0() { return static_cast(offsetof(Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF, ___UpTan_0)); } inline float get_UpTan_0() const { return ___UpTan_0; } inline float* get_address_of_UpTan_0() { return &___UpTan_0; } inline void set_UpTan_0(float value) { ___UpTan_0 = value; } inline static int32_t get_offset_of_DownTan_1() { return static_cast(offsetof(Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF, ___DownTan_1)); } inline float get_DownTan_1() const { return ___DownTan_1; } inline float* get_address_of_DownTan_1() { return &___DownTan_1; } inline void set_DownTan_1(float value) { ___DownTan_1 = value; } inline static int32_t get_offset_of_LeftTan_2() { return static_cast(offsetof(Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF, ___LeftTan_2)); } inline float get_LeftTan_2() const { return ___LeftTan_2; } inline float* get_address_of_LeftTan_2() { return &___LeftTan_2; } inline void set_LeftTan_2(float value) { ___LeftTan_2 = value; } inline static int32_t get_offset_of_RightTan_3() { return static_cast(offsetof(Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF, ___RightTan_3)); } inline float get_RightTan_3() const { return ___RightTan_3; } inline float* get_address_of_RightTan_3() { return &___RightTan_3; } inline void set_RightTan_3(float value) { ___RightTan_3 = value; } }; // OVRPlugin/Frustumf struct Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F { public: // System.Single OVRPlugin/Frustumf::zNear float ___zNear_0; // System.Single OVRPlugin/Frustumf::zFar float ___zFar_1; // System.Single OVRPlugin/Frustumf::fovX float ___fovX_2; // System.Single OVRPlugin/Frustumf::fovY float ___fovY_3; public: inline static int32_t get_offset_of_zNear_0() { return static_cast(offsetof(Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F, ___zNear_0)); } inline float get_zNear_0() const { return ___zNear_0; } inline float* get_address_of_zNear_0() { return &___zNear_0; } inline void set_zNear_0(float value) { ___zNear_0 = value; } inline static int32_t get_offset_of_zFar_1() { return static_cast(offsetof(Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F, ___zFar_1)); } inline float get_zFar_1() const { return ___zFar_1; } inline float* get_address_of_zFar_1() { return &___zFar_1; } inline void set_zFar_1(float value) { ___zFar_1 = value; } inline static int32_t get_offset_of_fovX_2() { return static_cast(offsetof(Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F, ___fovX_2)); } inline float get_fovX_2() const { return ___fovX_2; } inline float* get_address_of_fovX_2() { return &___fovX_2; } inline void set_fovX_2(float value) { ___fovX_2 = value; } inline static int32_t get_offset_of_fovY_3() { return static_cast(offsetof(Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F, ___fovY_3)); } inline float get_fovY_3() const { return ___fovY_3; } inline float* get_address_of_fovY_3() { return &___fovY_3; } inline void set_fovY_3(float value) { ___fovY_3 = value; } }; // OVRPlugin/HapticsDesc struct HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 { public: // System.Int32 OVRPlugin/HapticsDesc::SampleRateHz int32_t ___SampleRateHz_0; // System.Int32 OVRPlugin/HapticsDesc::SampleSizeInBytes int32_t ___SampleSizeInBytes_1; // System.Int32 OVRPlugin/HapticsDesc::MinimumSafeSamplesQueued int32_t ___MinimumSafeSamplesQueued_2; // System.Int32 OVRPlugin/HapticsDesc::MinimumBufferSamplesCount int32_t ___MinimumBufferSamplesCount_3; // System.Int32 OVRPlugin/HapticsDesc::OptimalBufferSamplesCount int32_t ___OptimalBufferSamplesCount_4; // System.Int32 OVRPlugin/HapticsDesc::MaximumBufferSamplesCount int32_t ___MaximumBufferSamplesCount_5; public: inline static int32_t get_offset_of_SampleRateHz_0() { return static_cast(offsetof(HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812, ___SampleRateHz_0)); } inline int32_t get_SampleRateHz_0() const { return ___SampleRateHz_0; } inline int32_t* get_address_of_SampleRateHz_0() { return &___SampleRateHz_0; } inline void set_SampleRateHz_0(int32_t value) { ___SampleRateHz_0 = value; } inline static int32_t get_offset_of_SampleSizeInBytes_1() { return static_cast(offsetof(HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812, ___SampleSizeInBytes_1)); } inline int32_t get_SampleSizeInBytes_1() const { return ___SampleSizeInBytes_1; } inline int32_t* get_address_of_SampleSizeInBytes_1() { return &___SampleSizeInBytes_1; } inline void set_SampleSizeInBytes_1(int32_t value) { ___SampleSizeInBytes_1 = value; } inline static int32_t get_offset_of_MinimumSafeSamplesQueued_2() { return static_cast(offsetof(HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812, ___MinimumSafeSamplesQueued_2)); } inline int32_t get_MinimumSafeSamplesQueued_2() const { return ___MinimumSafeSamplesQueued_2; } inline int32_t* get_address_of_MinimumSafeSamplesQueued_2() { return &___MinimumSafeSamplesQueued_2; } inline void set_MinimumSafeSamplesQueued_2(int32_t value) { ___MinimumSafeSamplesQueued_2 = value; } inline static int32_t get_offset_of_MinimumBufferSamplesCount_3() { return static_cast(offsetof(HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812, ___MinimumBufferSamplesCount_3)); } inline int32_t get_MinimumBufferSamplesCount_3() const { return ___MinimumBufferSamplesCount_3; } inline int32_t* get_address_of_MinimumBufferSamplesCount_3() { return &___MinimumBufferSamplesCount_3; } inline void set_MinimumBufferSamplesCount_3(int32_t value) { ___MinimumBufferSamplesCount_3 = value; } inline static int32_t get_offset_of_OptimalBufferSamplesCount_4() { return static_cast(offsetof(HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812, ___OptimalBufferSamplesCount_4)); } inline int32_t get_OptimalBufferSamplesCount_4() const { return ___OptimalBufferSamplesCount_4; } inline int32_t* get_address_of_OptimalBufferSamplesCount_4() { return &___OptimalBufferSamplesCount_4; } inline void set_OptimalBufferSamplesCount_4(int32_t value) { ___OptimalBufferSamplesCount_4 = value; } inline static int32_t get_offset_of_MaximumBufferSamplesCount_5() { return static_cast(offsetof(HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812, ___MaximumBufferSamplesCount_5)); } inline int32_t get_MaximumBufferSamplesCount_5() const { return ___MaximumBufferSamplesCount_5; } inline int32_t* get_address_of_MaximumBufferSamplesCount_5() { return &___MaximumBufferSamplesCount_5; } inline void set_MaximumBufferSamplesCount_5(int32_t value) { ___MaximumBufferSamplesCount_5 = value; } }; // OVRPlugin/HapticsState struct HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 { public: // System.Int32 OVRPlugin/HapticsState::SamplesAvailable int32_t ___SamplesAvailable_0; // System.Int32 OVRPlugin/HapticsState::SamplesQueued int32_t ___SamplesQueued_1; public: inline static int32_t get_offset_of_SamplesAvailable_0() { return static_cast(offsetof(HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804, ___SamplesAvailable_0)); } inline int32_t get_SamplesAvailable_0() const { return ___SamplesAvailable_0; } inline int32_t* get_address_of_SamplesAvailable_0() { return &___SamplesAvailable_0; } inline void set_SamplesAvailable_0(int32_t value) { ___SamplesAvailable_0 = value; } inline static int32_t get_offset_of_SamplesQueued_1() { return static_cast(offsetof(HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804, ___SamplesQueued_1)); } inline int32_t get_SamplesQueued_1() const { return ___SamplesQueued_1; } inline int32_t* get_address_of_SamplesQueued_1() { return &___SamplesQueued_1; } inline void set_SamplesQueued_1(int32_t value) { ___SamplesQueued_1 = value; } }; // OVRPlugin/InsightPassthroughKeyboardHandsIntensity struct InsightPassthroughKeyboardHandsIntensity_tD403C83ACD76793F037A858F942CEBA7096FF8D1 { public: // System.Single OVRPlugin/InsightPassthroughKeyboardHandsIntensity::LeftHandIntensity float ___LeftHandIntensity_0; // System.Single OVRPlugin/InsightPassthroughKeyboardHandsIntensity::RightHandIntensity float ___RightHandIntensity_1; public: inline static int32_t get_offset_of_LeftHandIntensity_0() { return static_cast(offsetof(InsightPassthroughKeyboardHandsIntensity_tD403C83ACD76793F037A858F942CEBA7096FF8D1, ___LeftHandIntensity_0)); } inline float get_LeftHandIntensity_0() const { return ___LeftHandIntensity_0; } inline float* get_address_of_LeftHandIntensity_0() { return &___LeftHandIntensity_0; } inline void set_LeftHandIntensity_0(float value) { ___LeftHandIntensity_0 = value; } inline static int32_t get_offset_of_RightHandIntensity_1() { return static_cast(offsetof(InsightPassthroughKeyboardHandsIntensity_tD403C83ACD76793F037A858F942CEBA7096FF8D1, ___RightHandIntensity_1)); } inline float get_RightHandIntensity_1() const { return ___RightHandIntensity_1; } inline float* get_address_of_RightHandIntensity_1() { return &___RightHandIntensity_1; } inline void set_RightHandIntensity_1(float value) { ___RightHandIntensity_1 = value; } }; // OVRPlugin/Quatf struct Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D { public: // System.Single OVRPlugin/Quatf::x float ___x_0; // System.Single OVRPlugin/Quatf::y float ___y_1; // System.Single OVRPlugin/Quatf::z float ___z_2; // System.Single OVRPlugin/Quatf::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast(offsetof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast(offsetof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; // OVRPlugin/RenderModelProperties struct RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315 { public: // System.String OVRPlugin/RenderModelProperties::ModelName String_t* ___ModelName_0; // System.UInt64 OVRPlugin/RenderModelProperties::ModelKey uint64_t ___ModelKey_1; // System.UInt32 OVRPlugin/RenderModelProperties::VendorId uint32_t ___VendorId_2; // System.UInt32 OVRPlugin/RenderModelProperties::ModelVersion uint32_t ___ModelVersion_3; public: inline static int32_t get_offset_of_ModelName_0() { return static_cast(offsetof(RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315, ___ModelName_0)); } inline String_t* get_ModelName_0() const { return ___ModelName_0; } inline String_t** get_address_of_ModelName_0() { return &___ModelName_0; } inline void set_ModelName_0(String_t* value) { ___ModelName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ModelName_0), (void*)value); } inline static int32_t get_offset_of_ModelKey_1() { return static_cast(offsetof(RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315, ___ModelKey_1)); } inline uint64_t get_ModelKey_1() const { return ___ModelKey_1; } inline uint64_t* get_address_of_ModelKey_1() { return &___ModelKey_1; } inline void set_ModelKey_1(uint64_t value) { ___ModelKey_1 = value; } inline static int32_t get_offset_of_VendorId_2() { return static_cast(offsetof(RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315, ___VendorId_2)); } inline uint32_t get_VendorId_2() const { return ___VendorId_2; } inline uint32_t* get_address_of_VendorId_2() { return &___VendorId_2; } inline void set_VendorId_2(uint32_t value) { ___VendorId_2 = value; } inline static int32_t get_offset_of_ModelVersion_3() { return static_cast(offsetof(RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315, ___ModelVersion_3)); } inline uint32_t get_ModelVersion_3() const { return ___ModelVersion_3; } inline uint32_t* get_address_of_ModelVersion_3() { return &___ModelVersion_3; } inline void set_ModelVersion_3(uint32_t value) { ___ModelVersion_3 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/RenderModelProperties struct RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_pinvoke { char* ___ModelName_0; uint64_t ___ModelKey_1; uint32_t ___VendorId_2; uint32_t ___ModelVersion_3; }; // Native definition for COM marshalling of OVRPlugin/RenderModelProperties struct RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_com { Il2CppChar* ___ModelName_0; uint64_t ___ModelKey_1; uint32_t ___VendorId_2; uint32_t ___ModelVersion_3; }; // OVRPlugin/Size3f struct Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 { public: // System.Single OVRPlugin/Size3f::w float ___w_0; // System.Single OVRPlugin/Size3f::h float ___h_1; // System.Single OVRPlugin/Size3f::d float ___d_2; public: inline static int32_t get_offset_of_w_0() { return static_cast(offsetof(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78, ___w_0)); } inline float get_w_0() const { return ___w_0; } inline float* get_address_of_w_0() { return &___w_0; } inline void set_w_0(float value) { ___w_0 = value; } inline static int32_t get_offset_of_h_1() { return static_cast(offsetof(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78, ___h_1)); } inline float get_h_1() const { return ___h_1; } inline float* get_address_of_h_1() { return &___h_1; } inline void set_h_1(float value) { ___h_1 = value; } inline static int32_t get_offset_of_d_2() { return static_cast(offsetof(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78, ___d_2)); } inline float get_d_2() const { return ___d_2; } inline float* get_address_of_d_2() { return &___d_2; } inline void set_d_2(float value) { ___d_2 = value; } }; // OVRPlugin/Sizef struct Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 { public: // System.Single OVRPlugin/Sizef::w float ___w_0; // System.Single OVRPlugin/Sizef::h float ___h_1; public: inline static int32_t get_offset_of_w_0() { return static_cast(offsetof(Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314, ___w_0)); } inline float get_w_0() const { return ___w_0; } inline float* get_address_of_w_0() { return &___w_0; } inline void set_w_0(float value) { ___w_0 = value; } inline static int32_t get_offset_of_h_1() { return static_cast(offsetof(Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314, ___h_1)); } inline float get_h_1() const { return ___h_1; } inline float* get_address_of_h_1() { return &___h_1; } inline void set_h_1(float value) { ___h_1 = value; } }; // OVRPlugin/Sizei struct Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 { public: // System.Int32 OVRPlugin/Sizei::w int32_t ___w_0; // System.Int32 OVRPlugin/Sizei::h int32_t ___h_1; public: inline static int32_t get_offset_of_w_0() { return static_cast(offsetof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041, ___w_0)); } inline int32_t get_w_0() const { return ___w_0; } inline int32_t* get_address_of_w_0() { return &___w_0; } inline void set_w_0(int32_t value) { ___w_0 = value; } inline static int32_t get_offset_of_h_1() { return static_cast(offsetof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041, ___h_1)); } inline int32_t get_h_1() const { return ___h_1; } inline int32_t* get_address_of_h_1() { return &___h_1; } inline void set_h_1(int32_t value) { ___h_1 = value; } }; // OVRPlugin/SpatialEntityUuid struct SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 { public: // System.UInt64 OVRPlugin/SpatialEntityUuid::Value_0 uint64_t ___Value_0_0; // System.UInt64 OVRPlugin/SpatialEntityUuid::Value_1 uint64_t ___Value_1_1; public: inline static int32_t get_offset_of_Value_0_0() { return static_cast(offsetof(SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1, ___Value_0_0)); } inline uint64_t get_Value_0_0() const { return ___Value_0_0; } inline uint64_t* get_address_of_Value_0_0() { return &___Value_0_0; } inline void set_Value_0_0(uint64_t value) { ___Value_0_0 = value; } inline static int32_t get_offset_of_Value_1_1() { return static_cast(offsetof(SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1, ___Value_1_1)); } inline uint64_t get_Value_1_1() const { return ___Value_1_1; } inline uint64_t* get_address_of_Value_1_1() { return &___Value_1_1; } inline void set_Value_1_1(uint64_t value) { ___Value_1_1 = value; } }; // OVRPlugin/Vector2f struct Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 { public: // System.Single OVRPlugin/Vector2f::x float ___x_0; // System.Single OVRPlugin/Vector2f::y float ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } }; // OVRPlugin/Vector2i struct Vector2i_t4DE1BD7B6E35A62EDB13BE5EBF8746EC010A7B8B { public: // System.Int32 OVRPlugin/Vector2i::x int32_t ___x_0; // System.Int32 OVRPlugin/Vector2i::y int32_t ___y_1; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector2i_t4DE1BD7B6E35A62EDB13BE5EBF8746EC010A7B8B, ___x_0)); } inline int32_t get_x_0() const { return ___x_0; } inline int32_t* get_address_of_x_0() { return &___x_0; } inline void set_x_0(int32_t value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector2i_t4DE1BD7B6E35A62EDB13BE5EBF8746EC010A7B8B, ___y_1)); } inline int32_t get_y_1() const { return ___y_1; } inline int32_t* get_address_of_y_1() { return &___y_1; } inline void set_y_1(int32_t value) { ___y_1 = value; } }; // OVRPlugin/Vector3f struct Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 { public: // System.Single OVRPlugin/Vector3f::x float ___x_0; // System.Single OVRPlugin/Vector3f::y float ___y_1; // System.Single OVRPlugin/Vector3f::z float ___z_2; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast(offsetof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } }; // OVRPlugin/Vector4f struct Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE { public: // System.Single OVRPlugin/Vector4f::x float ___x_0; // System.Single OVRPlugin/Vector4f::y float ___y_1; // System.Single OVRPlugin/Vector4f::z float ___z_2; // System.Single OVRPlugin/Vector4f::w float ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE, ___x_0)); } inline float get_x_0() const { return ___x_0; } inline float* get_address_of_x_0() { return &___x_0; } inline void set_x_0(float value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE, ___y_1)); } inline float get_y_1() const { return ___y_1; } inline float* get_address_of_y_1() { return &___y_1; } inline void set_y_1(float value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast(offsetof(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE, ___z_2)); } inline float get_z_2() const { return ___z_2; } inline float* get_address_of_z_2() { return &___z_2; } inline void set_z_2(float value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast(offsetof(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE, ___w_3)); } inline float get_w_3() const { return ___w_3; } inline float* get_address_of_w_3() { return &___w_3; } inline void set_w_3(float value) { ___w_3 = value; } }; // OVRPlugin/Vector4s struct Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 { public: // System.Int16 OVRPlugin/Vector4s::x int16_t ___x_0; // System.Int16 OVRPlugin/Vector4s::y int16_t ___y_1; // System.Int16 OVRPlugin/Vector4s::z int16_t ___z_2; // System.Int16 OVRPlugin/Vector4s::w int16_t ___w_3; public: inline static int32_t get_offset_of_x_0() { return static_cast(offsetof(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1, ___x_0)); } inline int16_t get_x_0() const { return ___x_0; } inline int16_t* get_address_of_x_0() { return &___x_0; } inline void set_x_0(int16_t value) { ___x_0 = value; } inline static int32_t get_offset_of_y_1() { return static_cast(offsetof(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1, ___y_1)); } inline int16_t get_y_1() const { return ___y_1; } inline int16_t* get_address_of_y_1() { return &___y_1; } inline void set_y_1(int16_t value) { ___y_1 = value; } inline static int32_t get_offset_of_z_2() { return static_cast(offsetof(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1, ___z_2)); } inline int16_t get_z_2() const { return ___z_2; } inline int16_t* get_address_of_z_2() { return &___z_2; } inline void set_z_2(int16_t value) { ___z_2 = value; } inline static int32_t get_offset_of_w_3() { return static_cast(offsetof(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1, ___w_3)); } inline int16_t get_w_3() const { return ___w_3; } inline int16_t* get_address_of_w_3() { return &___w_3; } inline void set_w_3(int16_t value) { ___w_3 = value; } }; // OVRSceneLoader/SceneInfo struct SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 { public: // System.Collections.Generic.List`1 OVRSceneLoader/SceneInfo::scenes List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___scenes_0; // System.Int64 OVRSceneLoader/SceneInfo::version int64_t ___version_1; public: inline static int32_t get_offset_of_scenes_0() { return static_cast(offsetof(SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9, ___scenes_0)); } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * get_scenes_0() const { return ___scenes_0; } inline List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 ** get_address_of_scenes_0() { return &___scenes_0; } inline void set_scenes_0(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * value) { ___scenes_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___scenes_0), (void*)value); } inline static int32_t get_offset_of_version_1() { return static_cast(offsetof(SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9, ___version_1)); } inline int64_t get_version_1() const { return ___version_1; } inline int64_t* get_address_of_version_1() { return &___version_1; } inline void set_version_1(int64_t value) { ___version_1 = value; } }; // Native definition for P/Invoke marshalling of OVRSceneLoader/SceneInfo struct SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_pinvoke { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___scenes_0; int64_t ___version_1; }; // Native definition for COM marshalling of OVRSceneLoader/SceneInfo struct SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_com { List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___scenes_0; int64_t ___version_1; }; // OVRSkeletonRenderer/SkeletonRendererData struct SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE { public: // System.Single OVRSkeletonRenderer/SkeletonRendererData::k__BackingField float ___U3CRootScaleU3Ek__BackingField_0; // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::k__BackingField bool ___U3CIsDataValidU3Ek__BackingField_1; // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::k__BackingField bool ___U3CIsDataHighConfidenceU3Ek__BackingField_2; // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::k__BackingField bool ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3; public: inline static int32_t get_offset_of_U3CRootScaleU3Ek__BackingField_0() { return static_cast(offsetof(SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE, ___U3CRootScaleU3Ek__BackingField_0)); } inline float get_U3CRootScaleU3Ek__BackingField_0() const { return ___U3CRootScaleU3Ek__BackingField_0; } inline float* get_address_of_U3CRootScaleU3Ek__BackingField_0() { return &___U3CRootScaleU3Ek__BackingField_0; } inline void set_U3CRootScaleU3Ek__BackingField_0(float value) { ___U3CRootScaleU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CIsDataValidU3Ek__BackingField_1() { return static_cast(offsetof(SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE, ___U3CIsDataValidU3Ek__BackingField_1)); } inline bool get_U3CIsDataValidU3Ek__BackingField_1() const { return ___U3CIsDataValidU3Ek__BackingField_1; } inline bool* get_address_of_U3CIsDataValidU3Ek__BackingField_1() { return &___U3CIsDataValidU3Ek__BackingField_1; } inline void set_U3CIsDataValidU3Ek__BackingField_1(bool value) { ___U3CIsDataValidU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CIsDataHighConfidenceU3Ek__BackingField_2() { return static_cast(offsetof(SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE, ___U3CIsDataHighConfidenceU3Ek__BackingField_2)); } inline bool get_U3CIsDataHighConfidenceU3Ek__BackingField_2() const { return ___U3CIsDataHighConfidenceU3Ek__BackingField_2; } inline bool* get_address_of_U3CIsDataHighConfidenceU3Ek__BackingField_2() { return &___U3CIsDataHighConfidenceU3Ek__BackingField_2; } inline void set_U3CIsDataHighConfidenceU3Ek__BackingField_2(bool value) { ___U3CIsDataHighConfidenceU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3() { return static_cast(offsetof(SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE, ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3)); } inline bool get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3() const { return ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3; } inline bool* get_address_of_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3() { return &___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3; } inline void set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3(bool value) { ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3 = value; } }; // Native definition for P/Invoke marshalling of OVRSkeletonRenderer/SkeletonRendererData struct SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_pinvoke { float ___U3CRootScaleU3Ek__BackingField_0; int32_t ___U3CIsDataValidU3Ek__BackingField_1; int32_t ___U3CIsDataHighConfidenceU3Ek__BackingField_2; int32_t ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3; }; // Native definition for COM marshalling of OVRSkeletonRenderer/SkeletonRendererData struct SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_com { float ___U3CRootScaleU3Ek__BackingField_0; int32_t ___U3CIsDataValidU3Ek__BackingField_1; int32_t ___U3CIsDataHighConfidenceU3Ek__BackingField_2; int32_t ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3; }; // OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent struct TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A { public: // System.Boolean OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent::IsEnabled bool ___IsEnabled_0; public: inline static int32_t get_offset_of_IsEnabled_0() { return static_cast(offsetof(TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A, ___IsEnabled_0)); } inline bool get_IsEnabled_0() const { return ___IsEnabled_0; } inline bool* get_address_of_IsEnabled_0() { return &___IsEnabled_0; } inline void set_IsEnabled_0(bool value) { ___IsEnabled_0 = value; } }; // Native definition for P/Invoke marshalling of OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent struct TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A_marshaled_pinvoke { int32_t ___IsEnabled_0; }; // Native definition for COM marshalling of OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent struct TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A_marshaled_com { int32_t ___IsEnabled_0; }; // System.Nullable`1 struct Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 { public: // T System.Nullable`1::value Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1, ___value_0)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_value_0() const { return ___value_0; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_value_0() { return &___value_0; } inline void set_value_0(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Nullable`1 struct Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 { public: // T System.Nullable`1::value Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value_0; // System.Boolean System.Nullable`1::has_value bool ___has_value_1; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258, ___value_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_value_0() const { return ___value_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_value_0() { return &___value_0; } inline void set_value_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___value_0 = value; } inline static int32_t get_offset_of_has_value_1() { return static_cast(offsetof(Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258, ___has_value_1)); } inline bool get_has_value_1() const { return ___has_value_1; } inline bool* get_address_of_has_value_1() { return &___has_value_1; } inline void set_has_value_1(bool value) { ___has_value_1 = value; } }; // System.Net.Sockets.AddressFamily struct AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33 { public: // System.Int32 System.Net.Sockets.AddressFamily::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(AddressFamily_tFCF4C888B95C069AB2D4720EC8C2E19453C28B33, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.IntPtr UnityEngine.AsyncOperation::m_Ptr intptr_t ___m_Ptr_0; // System.Action`1 UnityEngine.AsyncOperation::m_completeCallback Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * ___m_completeCallback_1; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } inline static int32_t get_offset_of_m_completeCallback_1() { return static_cast(offsetof(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86, ___m_completeCallback_1)); } inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * get_m_completeCallback_1() const { return ___m_completeCallback_1; } inline Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 ** get_address_of_m_completeCallback_1() { return &___m_completeCallback_1; } inline void set_m_completeCallback_1(Action_1_tC1348BEB2C677FD60E4B65764CA3A1CAFF6DFB31 * value) { ___m_completeCallback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_completeCallback_1), (void*)value); } }; // Native definition for P/Invoke marshalling of UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { intptr_t ___m_Ptr_0; Il2CppMethodPointer ___m_completeCallback_1; }; // Native definition for COM marshalling of UnityEngine.AsyncOperation struct AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { intptr_t ___m_Ptr_0; Il2CppMethodPointer ___m_completeCallback_1; }; // System.Reflection.BindingFlags struct BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733 { public: // System.Int32 System.Reflection.BindingFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BindingFlags_tAAAB07D9AC588F0D55D844E51D7035E96DF94733, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF { public: // System.IntPtr UnityEngine.Coroutine::m_Ptr intptr_t ___m_Ptr_0; public: inline static int32_t get_offset_of_m_Ptr_0() { return static_cast(offsetof(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7, ___m_Ptr_0)); } inline intptr_t get_m_Ptr_0() const { return ___m_Ptr_0; } inline intptr_t* get_address_of_m_Ptr_0() { return &___m_Ptr_0; } inline void set_m_Ptr_0(intptr_t value) { ___m_Ptr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_pinvoke : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_pinvoke { intptr_t ___m_Ptr_0; }; // Native definition for COM marshalling of UnityEngine.Coroutine struct Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7_marshaled_com : public YieldInstruction_tB0B4E05316710E51ECCC1E57174C27FE6DEBBEAF_marshaled_com { intptr_t ___m_Ptr_0; }; // System.Delegate struct Delegate_t : public RuntimeObject { public: // System.IntPtr System.Delegate::method_ptr Il2CppMethodPointer ___method_ptr_0; // System.IntPtr System.Delegate::invoke_impl intptr_t ___invoke_impl_1; // System.Object System.Delegate::m_target RuntimeObject * ___m_target_2; // System.IntPtr System.Delegate::method intptr_t ___method_3; // System.IntPtr System.Delegate::delegate_trampoline intptr_t ___delegate_trampoline_4; // System.IntPtr System.Delegate::extra_arg intptr_t ___extra_arg_5; // System.IntPtr System.Delegate::method_code intptr_t ___method_code_6; // System.Reflection.MethodInfo System.Delegate::method_info MethodInfo_t * ___method_info_7; // System.Reflection.MethodInfo System.Delegate::original_method_info MethodInfo_t * ___original_method_info_8; // System.DelegateData System.Delegate::data DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; // System.Boolean System.Delegate::method_is_virtual bool ___method_is_virtual_10; public: inline static int32_t get_offset_of_method_ptr_0() { return static_cast(offsetof(Delegate_t, ___method_ptr_0)); } inline Il2CppMethodPointer get_method_ptr_0() const { return ___method_ptr_0; } inline Il2CppMethodPointer* get_address_of_method_ptr_0() { return &___method_ptr_0; } inline void set_method_ptr_0(Il2CppMethodPointer value) { ___method_ptr_0 = value; } inline static int32_t get_offset_of_invoke_impl_1() { return static_cast(offsetof(Delegate_t, ___invoke_impl_1)); } inline intptr_t get_invoke_impl_1() const { return ___invoke_impl_1; } inline intptr_t* get_address_of_invoke_impl_1() { return &___invoke_impl_1; } inline void set_invoke_impl_1(intptr_t value) { ___invoke_impl_1 = value; } inline static int32_t get_offset_of_m_target_2() { return static_cast(offsetof(Delegate_t, ___m_target_2)); } inline RuntimeObject * get_m_target_2() const { return ___m_target_2; } inline RuntimeObject ** get_address_of_m_target_2() { return &___m_target_2; } inline void set_m_target_2(RuntimeObject * value) { ___m_target_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_target_2), (void*)value); } inline static int32_t get_offset_of_method_3() { return static_cast(offsetof(Delegate_t, ___method_3)); } inline intptr_t get_method_3() const { return ___method_3; } inline intptr_t* get_address_of_method_3() { return &___method_3; } inline void set_method_3(intptr_t value) { ___method_3 = value; } inline static int32_t get_offset_of_delegate_trampoline_4() { return static_cast(offsetof(Delegate_t, ___delegate_trampoline_4)); } inline intptr_t get_delegate_trampoline_4() const { return ___delegate_trampoline_4; } inline intptr_t* get_address_of_delegate_trampoline_4() { return &___delegate_trampoline_4; } inline void set_delegate_trampoline_4(intptr_t value) { ___delegate_trampoline_4 = value; } inline static int32_t get_offset_of_extra_arg_5() { return static_cast(offsetof(Delegate_t, ___extra_arg_5)); } inline intptr_t get_extra_arg_5() const { return ___extra_arg_5; } inline intptr_t* get_address_of_extra_arg_5() { return &___extra_arg_5; } inline void set_extra_arg_5(intptr_t value) { ___extra_arg_5 = value; } inline static int32_t get_offset_of_method_code_6() { return static_cast(offsetof(Delegate_t, ___method_code_6)); } inline intptr_t get_method_code_6() const { return ___method_code_6; } inline intptr_t* get_address_of_method_code_6() { return &___method_code_6; } inline void set_method_code_6(intptr_t value) { ___method_code_6 = value; } inline static int32_t get_offset_of_method_info_7() { return static_cast(offsetof(Delegate_t, ___method_info_7)); } inline MethodInfo_t * get_method_info_7() const { return ___method_info_7; } inline MethodInfo_t ** get_address_of_method_info_7() { return &___method_info_7; } inline void set_method_info_7(MethodInfo_t * value) { ___method_info_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___method_info_7), (void*)value); } inline static int32_t get_offset_of_original_method_info_8() { return static_cast(offsetof(Delegate_t, ___original_method_info_8)); } inline MethodInfo_t * get_original_method_info_8() const { return ___original_method_info_8; } inline MethodInfo_t ** get_address_of_original_method_info_8() { return &___original_method_info_8; } inline void set_original_method_info_8(MethodInfo_t * value) { ___original_method_info_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___original_method_info_8), (void*)value); } inline static int32_t get_offset_of_data_9() { return static_cast(offsetof(Delegate_t, ___data_9)); } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * get_data_9() const { return ___data_9; } inline DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 ** get_address_of_data_9() { return &___data_9; } inline void set_data_9(DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * value) { ___data_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_9), (void*)value); } inline static int32_t get_offset_of_method_is_virtual_10() { return static_cast(offsetof(Delegate_t, ___method_is_virtual_10)); } inline bool get_method_is_virtual_10() const { return ___method_is_virtual_10; } inline bool* get_address_of_method_is_virtual_10() { return &___method_is_virtual_10; } inline void set_method_is_virtual_10(bool value) { ___method_is_virtual_10 = value; } }; // 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; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // 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; MethodInfo_t * ___method_info_7; MethodInfo_t * ___original_method_info_8; DelegateData_t17DD30660E330C49381DAA99F934BE75CB11F288 * ___data_9; int32_t ___method_is_virtual_10; }; // UnityEngine.DepthTextureMode struct DepthTextureMode_t4A8E08C41731918FB0D7CA5C6848E3864A0DC09A { public: // System.Int32 UnityEngine.DepthTextureMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DepthTextureMode_t4A8E08C41731918FB0D7CA5C6848E3864A0DC09A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Exception struct Exception_t : public RuntimeObject { public: // 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; // System.Diagnostics.StackTrace[] System.Exception::captured_traces StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; // System.IntPtr[] System.Exception::native_trace_ips IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___native_trace_ips_15; public: inline static int32_t get_offset_of__className_1() { return static_cast(offsetof(Exception_t, ____className_1)); } inline String_t* get__className_1() const { return ____className_1; } inline String_t** get_address_of__className_1() { return &____className_1; } inline void set__className_1(String_t* value) { ____className_1 = value; Il2CppCodeGenWriteBarrier((void**)(&____className_1), (void*)value); } inline static int32_t get_offset_of__message_2() { return static_cast(offsetof(Exception_t, ____message_2)); } inline String_t* get__message_2() const { return ____message_2; } inline String_t** get_address_of__message_2() { return &____message_2; } inline void set__message_2(String_t* value) { ____message_2 = value; Il2CppCodeGenWriteBarrier((void**)(&____message_2), (void*)value); } inline static int32_t get_offset_of__data_3() { return static_cast(offsetof(Exception_t, ____data_3)); } inline RuntimeObject* get__data_3() const { return ____data_3; } inline RuntimeObject** get_address_of__data_3() { return &____data_3; } inline void set__data_3(RuntimeObject* value) { ____data_3 = value; Il2CppCodeGenWriteBarrier((void**)(&____data_3), (void*)value); } inline static int32_t get_offset_of__innerException_4() { return static_cast(offsetof(Exception_t, ____innerException_4)); } inline Exception_t * get__innerException_4() const { return ____innerException_4; } inline Exception_t ** get_address_of__innerException_4() { return &____innerException_4; } inline void set__innerException_4(Exception_t * value) { ____innerException_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____innerException_4), (void*)value); } inline static int32_t get_offset_of__helpURL_5() { return static_cast(offsetof(Exception_t, ____helpURL_5)); } inline String_t* get__helpURL_5() const { return ____helpURL_5; } inline String_t** get_address_of__helpURL_5() { return &____helpURL_5; } inline void set__helpURL_5(String_t* value) { ____helpURL_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____helpURL_5), (void*)value); } inline static int32_t get_offset_of__stackTrace_6() { return static_cast(offsetof(Exception_t, ____stackTrace_6)); } inline RuntimeObject * get__stackTrace_6() const { return ____stackTrace_6; } inline RuntimeObject ** get_address_of__stackTrace_6() { return &____stackTrace_6; } inline void set__stackTrace_6(RuntimeObject * value) { ____stackTrace_6 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTrace_6), (void*)value); } inline static int32_t get_offset_of__stackTraceString_7() { return static_cast(offsetof(Exception_t, ____stackTraceString_7)); } inline String_t* get__stackTraceString_7() const { return ____stackTraceString_7; } inline String_t** get_address_of__stackTraceString_7() { return &____stackTraceString_7; } inline void set__stackTraceString_7(String_t* value) { ____stackTraceString_7 = value; Il2CppCodeGenWriteBarrier((void**)(&____stackTraceString_7), (void*)value); } inline static int32_t get_offset_of__remoteStackTraceString_8() { return static_cast(offsetof(Exception_t, ____remoteStackTraceString_8)); } inline String_t* get__remoteStackTraceString_8() const { return ____remoteStackTraceString_8; } inline String_t** get_address_of__remoteStackTraceString_8() { return &____remoteStackTraceString_8; } inline void set__remoteStackTraceString_8(String_t* value) { ____remoteStackTraceString_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____remoteStackTraceString_8), (void*)value); } inline static int32_t get_offset_of__remoteStackIndex_9() { return static_cast(offsetof(Exception_t, ____remoteStackIndex_9)); } inline int32_t get__remoteStackIndex_9() const { return ____remoteStackIndex_9; } inline int32_t* get_address_of__remoteStackIndex_9() { return &____remoteStackIndex_9; } inline void set__remoteStackIndex_9(int32_t value) { ____remoteStackIndex_9 = value; } inline static int32_t get_offset_of__dynamicMethods_10() { return static_cast(offsetof(Exception_t, ____dynamicMethods_10)); } inline RuntimeObject * get__dynamicMethods_10() const { return ____dynamicMethods_10; } inline RuntimeObject ** get_address_of__dynamicMethods_10() { return &____dynamicMethods_10; } inline void set__dynamicMethods_10(RuntimeObject * value) { ____dynamicMethods_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____dynamicMethods_10), (void*)value); } inline static int32_t get_offset_of__HResult_11() { return static_cast(offsetof(Exception_t, ____HResult_11)); } inline int32_t get__HResult_11() const { return ____HResult_11; } inline int32_t* get_address_of__HResult_11() { return &____HResult_11; } inline void set__HResult_11(int32_t value) { ____HResult_11 = value; } inline static int32_t get_offset_of__source_12() { return static_cast(offsetof(Exception_t, ____source_12)); } inline String_t* get__source_12() const { return ____source_12; } inline String_t** get_address_of__source_12() { return &____source_12; } inline void set__source_12(String_t* value) { ____source_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____source_12), (void*)value); } inline static int32_t get_offset_of__safeSerializationManager_13() { return static_cast(offsetof(Exception_t, ____safeSerializationManager_13)); } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * get__safeSerializationManager_13() const { return ____safeSerializationManager_13; } inline SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F ** get_address_of__safeSerializationManager_13() { return &____safeSerializationManager_13; } inline void set__safeSerializationManager_13(SafeSerializationManager_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * value) { ____safeSerializationManager_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____safeSerializationManager_13), (void*)value); } inline static int32_t get_offset_of_captured_traces_14() { return static_cast(offsetof(Exception_t, ___captured_traces_14)); } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* get_captured_traces_14() const { return ___captured_traces_14; } inline StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971** get_address_of_captured_traces_14() { return &___captured_traces_14; } inline void set_captured_traces_14(StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* value) { ___captured_traces_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___captured_traces_14), (void*)value); } inline static int32_t get_offset_of_native_trace_ips_15() { return static_cast(offsetof(Exception_t, ___native_trace_ips_15)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_native_trace_ips_15() const { return ___native_trace_ips_15; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_native_trace_ips_15() { return &___native_trace_ips_15; } inline void set_native_trace_ips_15(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___native_trace_ips_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___native_trace_ips_15), (void*)value); } }; // 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // 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_tDE44F029589A028F8A3053C5C06153FAB4AAE29F * ____safeSerializationManager_13; StackTraceU5BU5D_t4AD999C288CB6D1F38A299D12B1598D606588971* ___captured_traces_14; Il2CppSafeArray/*NONE*/* ___native_trace_ips_15; }; // System.Runtime.InteropServices.GCHandleType struct GCHandleType_t5D58978165671EDEFCCAE1E2B237BD5AE4E8BC38 { public: // System.Int32 System.Runtime.InteropServices.GCHandleType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(GCHandleType_t5D58978165671EDEFCCAE1E2B237BD5AE4E8BC38, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRSimpleJSON.JSONContainerType struct JSONContainerType_tCF7E685C80F8FD3643089B9D19AA1843F0696816 { public: // System.Int32 OVRSimpleJSON.JSONContainerType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(JSONContainerType_tCF7E685C80F8FD3643089B9D19AA1843F0696816, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.Net.Sockets.NetworkStream struct NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 : public Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB { public: // System.Net.Sockets.Socket System.Net.Sockets.NetworkStream::m_StreamSocket Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * ___m_StreamSocket_5; // System.Boolean System.Net.Sockets.NetworkStream::m_Readable bool ___m_Readable_6; // System.Boolean System.Net.Sockets.NetworkStream::m_Writeable bool ___m_Writeable_7; // System.Boolean System.Net.Sockets.NetworkStream::m_OwnsSocket bool ___m_OwnsSocket_8; // System.Int32 System.Net.Sockets.NetworkStream::m_CloseTimeout int32_t ___m_CloseTimeout_9; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.Net.Sockets.NetworkStream::m_CleanedUp bool ___m_CleanedUp_10; // System.Int32 System.Net.Sockets.NetworkStream::m_CurrentReadTimeout int32_t ___m_CurrentReadTimeout_11; // System.Int32 System.Net.Sockets.NetworkStream::m_CurrentWriteTimeout int32_t ___m_CurrentWriteTimeout_12; public: inline static int32_t get_offset_of_m_StreamSocket_5() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_StreamSocket_5)); } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * get_m_StreamSocket_5() const { return ___m_StreamSocket_5; } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 ** get_address_of_m_StreamSocket_5() { return &___m_StreamSocket_5; } inline void set_m_StreamSocket_5(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * value) { ___m_StreamSocket_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_StreamSocket_5), (void*)value); } inline static int32_t get_offset_of_m_Readable_6() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_Readable_6)); } inline bool get_m_Readable_6() const { return ___m_Readable_6; } inline bool* get_address_of_m_Readable_6() { return &___m_Readable_6; } inline void set_m_Readable_6(bool value) { ___m_Readable_6 = value; } inline static int32_t get_offset_of_m_Writeable_7() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_Writeable_7)); } inline bool get_m_Writeable_7() const { return ___m_Writeable_7; } inline bool* get_address_of_m_Writeable_7() { return &___m_Writeable_7; } inline void set_m_Writeable_7(bool value) { ___m_Writeable_7 = value; } inline static int32_t get_offset_of_m_OwnsSocket_8() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_OwnsSocket_8)); } inline bool get_m_OwnsSocket_8() const { return ___m_OwnsSocket_8; } inline bool* get_address_of_m_OwnsSocket_8() { return &___m_OwnsSocket_8; } inline void set_m_OwnsSocket_8(bool value) { ___m_OwnsSocket_8 = value; } inline static int32_t get_offset_of_m_CloseTimeout_9() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_CloseTimeout_9)); } inline int32_t get_m_CloseTimeout_9() const { return ___m_CloseTimeout_9; } inline int32_t* get_address_of_m_CloseTimeout_9() { return &___m_CloseTimeout_9; } inline void set_m_CloseTimeout_9(int32_t value) { ___m_CloseTimeout_9 = value; } inline static int32_t get_offset_of_m_CleanedUp_10() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_CleanedUp_10)); } inline bool get_m_CleanedUp_10() const { return ___m_CleanedUp_10; } inline bool* get_address_of_m_CleanedUp_10() { return &___m_CleanedUp_10; } inline void set_m_CleanedUp_10(bool value) { ___m_CleanedUp_10 = value; } inline static int32_t get_offset_of_m_CurrentReadTimeout_11() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_CurrentReadTimeout_11)); } inline int32_t get_m_CurrentReadTimeout_11() const { return ___m_CurrentReadTimeout_11; } inline int32_t* get_address_of_m_CurrentReadTimeout_11() { return &___m_CurrentReadTimeout_11; } inline void set_m_CurrentReadTimeout_11(int32_t value) { ___m_CurrentReadTimeout_11 = value; } inline static int32_t get_offset_of_m_CurrentWriteTimeout_12() { return static_cast(offsetof(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48, ___m_CurrentWriteTimeout_12)); } inline int32_t get_m_CurrentWriteTimeout_12() const { return ___m_CurrentWriteTimeout_12; } inline int32_t* get_address_of_m_CurrentWriteTimeout_12() { return &___m_CurrentWriteTimeout_12; } inline void set_m_CurrentWriteTimeout_12(int32_t value) { ___m_CurrentWriteTimeout_12 = value; } }; // OVRGLTFLoader struct OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01 : public RuntimeObject { public: // OVRSimpleJSON.JSONNode OVRGLTFLoader::m_jsonData JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * ___m_jsonData_0; // System.IO.Stream OVRGLTFLoader::m_glbStream Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___m_glbStream_1; // OVRBinaryChunk OVRGLTFLoader::m_binaryChunk OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607 ___m_binaryChunk_2; // System.Collections.Generic.List`1 OVRGLTFLoader::m_Nodes List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * ___m_Nodes_3; // UnityEngine.Shader OVRGLTFLoader::m_Shader Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___m_Shader_6; public: inline static int32_t get_offset_of_m_jsonData_0() { return static_cast(offsetof(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01, ___m_jsonData_0)); } inline JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * get_m_jsonData_0() const { return ___m_jsonData_0; } inline JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B ** get_address_of_m_jsonData_0() { return &___m_jsonData_0; } inline void set_m_jsonData_0(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * value) { ___m_jsonData_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_jsonData_0), (void*)value); } inline static int32_t get_offset_of_m_glbStream_1() { return static_cast(offsetof(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01, ___m_glbStream_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_m_glbStream_1() const { return ___m_glbStream_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_m_glbStream_1() { return &___m_glbStream_1; } inline void set_m_glbStream_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___m_glbStream_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_glbStream_1), (void*)value); } inline static int32_t get_offset_of_m_binaryChunk_2() { return static_cast(offsetof(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01, ___m_binaryChunk_2)); } inline OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607 get_m_binaryChunk_2() const { return ___m_binaryChunk_2; } inline OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607 * get_address_of_m_binaryChunk_2() { return &___m_binaryChunk_2; } inline void set_m_binaryChunk_2(OVRBinaryChunk_tE7AE5523FF559B65D0E7378E0136047A2881F607 value) { ___m_binaryChunk_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___m_binaryChunk_2))->___chunkStream_0), (void*)NULL); } inline static int32_t get_offset_of_m_Nodes_3() { return static_cast(offsetof(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01, ___m_Nodes_3)); } inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * get_m_Nodes_3() const { return ___m_Nodes_3; } inline List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 ** get_address_of_m_Nodes_3() { return &___m_Nodes_3; } inline void set_m_Nodes_3(List_1_t6D0A10F47F3440798295D2FFFC6D016477AF38E5 * value) { ___m_Nodes_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Nodes_3), (void*)value); } inline static int32_t get_offset_of_m_Shader_6() { return static_cast(offsetof(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01, ___m_Shader_6)); } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * get_m_Shader_6() const { return ___m_Shader_6; } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 ** get_address_of_m_Shader_6() { return &___m_Shader_6; } inline void set_m_Shader_6(Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * value) { ___m_Shader_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Shader_6), (void*)value); } }; // OVRNativeBuffer struct OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 : public RuntimeObject { public: // System.Boolean OVRNativeBuffer::disposed bool ___disposed_0; // System.Int32 OVRNativeBuffer::m_numBytes int32_t ___m_numBytes_1; // System.IntPtr OVRNativeBuffer::m_ptr intptr_t ___m_ptr_2; public: inline static int32_t get_offset_of_disposed_0() { return static_cast(offsetof(OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0, ___disposed_0)); } inline bool get_disposed_0() const { return ___disposed_0; } inline bool* get_address_of_disposed_0() { return &___disposed_0; } inline void set_disposed_0(bool value) { ___disposed_0 = value; } inline static int32_t get_offset_of_m_numBytes_1() { return static_cast(offsetof(OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0, ___m_numBytes_1)); } inline int32_t get_m_numBytes_1() const { return ___m_numBytes_1; } inline int32_t* get_address_of_m_numBytes_1() { return &___m_numBytes_1; } inline void set_m_numBytes_1(int32_t value) { ___m_numBytes_1 = value; } inline static int32_t get_offset_of_m_ptr_2() { return static_cast(offsetof(OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0, ___m_ptr_2)); } inline intptr_t get_m_ptr_2() const { return ___m_ptr_2; } inline intptr_t* get_address_of_m_ptr_2() { return &___m_ptr_2; } inline void set_m_ptr_2(intptr_t value) { ___m_ptr_2 = value; } }; // OVRTextureFormat struct OVRTextureFormat_t38769EF37E675E25C13571C1C727E4E27E3F38AF { public: // System.Int32 OVRTextureFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OVRTextureFormat_t38769EF37E675E25C13571C1C727E4E27E3F38AF, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A : public RuntimeObject { public: // System.IntPtr UnityEngine.Object::m_CachedPtr intptr_t ___m_CachedPtr_0; public: inline static int32_t get_offset_of_m_CachedPtr_0() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A, ___m_CachedPtr_0)); } inline intptr_t get_m_CachedPtr_0() const { return ___m_CachedPtr_0; } inline intptr_t* get_address_of_m_CachedPtr_0() { return &___m_CachedPtr_0; } inline void set_m_CachedPtr_0(intptr_t value) { ___m_CachedPtr_0 = value; } }; // Native definition for P/Invoke marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_pinvoke { intptr_t ___m_CachedPtr_0; }; // Native definition for COM marshalling of UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_marshaled_com { intptr_t ___m_CachedPtr_0; }; // UnityEngine.PrimitiveType struct PrimitiveType_t0E20B7B2F4ABBD14BAE02F0444EE003C6479E93E { public: // System.Int32 UnityEngine.PrimitiveType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PrimitiveType_t0E20B7B2F4ABBD14BAE02F0444EE003C6479E93E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.RaycastHit struct RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 { public: // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Point Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Point_0; // UnityEngine.Vector3 UnityEngine.RaycastHit::m_Normal Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___m_Normal_1; // System.UInt32 UnityEngine.RaycastHit::m_FaceID uint32_t ___m_FaceID_2; // System.Single UnityEngine.RaycastHit::m_Distance float ___m_Distance_3; // UnityEngine.Vector2 UnityEngine.RaycastHit::m_UV Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___m_UV_4; // System.Int32 UnityEngine.RaycastHit::m_Collider int32_t ___m_Collider_5; public: inline static int32_t get_offset_of_m_Point_0() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Point_0)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Point_0() const { return ___m_Point_0; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Point_0() { return &___m_Point_0; } inline void set_m_Point_0(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Point_0 = value; } inline static int32_t get_offset_of_m_Normal_1() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Normal_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_m_Normal_1() const { return ___m_Normal_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_m_Normal_1() { return &___m_Normal_1; } inline void set_m_Normal_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___m_Normal_1 = value; } inline static int32_t get_offset_of_m_FaceID_2() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_FaceID_2)); } inline uint32_t get_m_FaceID_2() const { return ___m_FaceID_2; } inline uint32_t* get_address_of_m_FaceID_2() { return &___m_FaceID_2; } inline void set_m_FaceID_2(uint32_t value) { ___m_FaceID_2 = value; } inline static int32_t get_offset_of_m_Distance_3() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Distance_3)); } inline float get_m_Distance_3() const { return ___m_Distance_3; } inline float* get_address_of_m_Distance_3() { return &___m_Distance_3; } inline void set_m_Distance_3(float value) { ___m_Distance_3 = value; } inline static int32_t get_offset_of_m_UV_4() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_UV_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_m_UV_4() const { return ___m_UV_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_m_UV_4() { return &___m_UV_4; } inline void set_m_UV_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___m_UV_4 = value; } inline static int32_t get_offset_of_m_Collider_5() { return static_cast(offsetof(RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89, ___m_Collider_5)); } inline int32_t get_m_Collider_5() const { return ___m_Collider_5; } inline int32_t* get_address_of_m_Collider_5() { return &___m_Collider_5; } inline void set_m_Collider_5(int32_t value) { ___m_Collider_5 = value; } }; // System.RuntimeTypeHandle struct RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 { public: // System.IntPtr System.RuntimeTypeHandle::value intptr_t ___value_0; public: inline static int32_t get_offset_of_value_0() { return static_cast(offsetof(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9, ___value_0)); } inline intptr_t get_value_0() const { return ___value_0; } inline intptr_t* get_address_of_value_0() { return &___value_0; } inline void set_value_0(intptr_t value) { ___value_0 = value; } }; // UnityEngine.TextureFormat struct TextureFormat_tBED5388A0445FE978F97B41D247275B036407932 { public: // System.Int32 UnityEngine.TextureFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TextureFormat_tBED5388A0445FE978F97B41D247275B036407932, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 { public: // System.Int64 System.TimeSpan::_ticks int64_t ____ticks_3; public: inline static int32_t get_offset_of__ticks_3() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203, ____ticks_3)); } inline int64_t get__ticks_3() const { return ____ticks_3; } inline int64_t* get_address_of__ticks_3() { return &____ticks_3; } inline void set__ticks_3(int64_t value) { ____ticks_3 = value; } }; // OVR.OpenVR.VRControllerState_t struct VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A { public: // System.UInt32 OVR.OpenVR.VRControllerState_t::unPacketNum uint32_t ___unPacketNum_0; // System.UInt64 OVR.OpenVR.VRControllerState_t::ulButtonPressed uint64_t ___ulButtonPressed_1; // System.UInt64 OVR.OpenVR.VRControllerState_t::ulButtonTouched uint64_t ___ulButtonTouched_2; // OVR.OpenVR.VRControllerAxis_t OVR.OpenVR.VRControllerState_t::rAxis0 VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A ___rAxis0_3; // OVR.OpenVR.VRControllerAxis_t OVR.OpenVR.VRControllerState_t::rAxis1 VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A ___rAxis1_4; // OVR.OpenVR.VRControllerAxis_t OVR.OpenVR.VRControllerState_t::rAxis2 VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A ___rAxis2_5; // OVR.OpenVR.VRControllerAxis_t OVR.OpenVR.VRControllerState_t::rAxis3 VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A ___rAxis3_6; // OVR.OpenVR.VRControllerAxis_t OVR.OpenVR.VRControllerState_t::rAxis4 VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A ___rAxis4_7; public: inline static int32_t get_offset_of_unPacketNum_0() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___unPacketNum_0)); } inline uint32_t get_unPacketNum_0() const { return ___unPacketNum_0; } inline uint32_t* get_address_of_unPacketNum_0() { return &___unPacketNum_0; } inline void set_unPacketNum_0(uint32_t value) { ___unPacketNum_0 = value; } inline static int32_t get_offset_of_ulButtonPressed_1() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___ulButtonPressed_1)); } inline uint64_t get_ulButtonPressed_1() const { return ___ulButtonPressed_1; } inline uint64_t* get_address_of_ulButtonPressed_1() { return &___ulButtonPressed_1; } inline void set_ulButtonPressed_1(uint64_t value) { ___ulButtonPressed_1 = value; } inline static int32_t get_offset_of_ulButtonTouched_2() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___ulButtonTouched_2)); } inline uint64_t get_ulButtonTouched_2() const { return ___ulButtonTouched_2; } inline uint64_t* get_address_of_ulButtonTouched_2() { return &___ulButtonTouched_2; } inline void set_ulButtonTouched_2(uint64_t value) { ___ulButtonTouched_2 = value; } inline static int32_t get_offset_of_rAxis0_3() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___rAxis0_3)); } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A get_rAxis0_3() const { return ___rAxis0_3; } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A * get_address_of_rAxis0_3() { return &___rAxis0_3; } inline void set_rAxis0_3(VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A value) { ___rAxis0_3 = value; } inline static int32_t get_offset_of_rAxis1_4() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___rAxis1_4)); } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A get_rAxis1_4() const { return ___rAxis1_4; } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A * get_address_of_rAxis1_4() { return &___rAxis1_4; } inline void set_rAxis1_4(VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A value) { ___rAxis1_4 = value; } inline static int32_t get_offset_of_rAxis2_5() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___rAxis2_5)); } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A get_rAxis2_5() const { return ___rAxis2_5; } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A * get_address_of_rAxis2_5() { return &___rAxis2_5; } inline void set_rAxis2_5(VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A value) { ___rAxis2_5 = value; } inline static int32_t get_offset_of_rAxis3_6() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___rAxis3_6)); } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A get_rAxis3_6() const { return ___rAxis3_6; } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A * get_address_of_rAxis3_6() { return &___rAxis3_6; } inline void set_rAxis3_6(VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A value) { ___rAxis3_6 = value; } inline static int32_t get_offset_of_rAxis4_7() { return static_cast(offsetof(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A, ___rAxis4_7)); } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A get_rAxis4_7() const { return ___rAxis4_7; } inline VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A * get_address_of_rAxis4_7() { return &___rAxis4_7; } inline void set_rAxis4_7(VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A value) { ___rAxis4_7 = value; } }; // System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8 { public: // System.IntPtr System.Threading.WaitHandle::waitHandle intptr_t ___waitHandle_3; // Microsoft.Win32.SafeHandles.SafeWaitHandle modreq(System.Runtime.CompilerServices.IsVolatile) System.Threading.WaitHandle::safeWaitHandle SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * ___safeWaitHandle_4; // System.Boolean System.Threading.WaitHandle::hasThreadAffinity bool ___hasThreadAffinity_5; public: inline static int32_t get_offset_of_waitHandle_3() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___waitHandle_3)); } inline intptr_t get_waitHandle_3() const { return ___waitHandle_3; } inline intptr_t* get_address_of_waitHandle_3() { return &___waitHandle_3; } inline void set_waitHandle_3(intptr_t value) { ___waitHandle_3 = value; } inline static int32_t get_offset_of_safeWaitHandle_4() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___safeWaitHandle_4)); } inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * get_safeWaitHandle_4() const { return ___safeWaitHandle_4; } inline SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 ** get_address_of_safeWaitHandle_4() { return &___safeWaitHandle_4; } inline void set_safeWaitHandle_4(SafeWaitHandle_tF37EACEDF9C6F350EB4ABC1E1F869EECB0B5ABB1 * value) { ___safeWaitHandle_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___safeWaitHandle_4), (void*)value); } inline static int32_t get_offset_of_hasThreadAffinity_5() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842, ___hasThreadAffinity_5)); } inline bool get_hasThreadAffinity_5() const { return ___hasThreadAffinity_5; } inline bool* get_address_of_hasThreadAffinity_5() { return &___hasThreadAffinity_5; } inline void set_hasThreadAffinity_5(bool value) { ___hasThreadAffinity_5 = value; } }; // Native definition for P/Invoke marshalling of System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_pinvoke : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_pinvoke { intptr_t ___waitHandle_3; void* ___safeWaitHandle_4; int32_t ___hasThreadAffinity_5; }; // Native definition for COM marshalling of System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_marshaled_com : public MarshalByRefObject_tD4DF91B488B284F899417EC468D8E50E933306A8_marshaled_com { intptr_t ___waitHandle_3; void* ___safeWaitHandle_4; int32_t ___hasThreadAffinity_5; }; // UnityEngine.XR.XRNode struct XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD { public: // System.Int32 UnityEngine.XR.XRNode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XRNode_t07B789D60F5B3A4F0E4A169143881ABCA4176DBD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRDisplay/EyeRenderDesc struct EyeRenderDesc_tD08EE6C80E0DFB171EE7152F9AC6406CBFDF2FE8 { public: // UnityEngine.Vector2 OVRDisplay/EyeRenderDesc::resolution Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___resolution_0; // UnityEngine.Vector2 OVRDisplay/EyeRenderDesc::fov Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___fov_1; // OVRDisplay/EyeFov OVRDisplay/EyeRenderDesc::fullFov EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4 ___fullFov_2; public: inline static int32_t get_offset_of_resolution_0() { return static_cast(offsetof(EyeRenderDesc_tD08EE6C80E0DFB171EE7152F9AC6406CBFDF2FE8, ___resolution_0)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_resolution_0() const { return ___resolution_0; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_resolution_0() { return &___resolution_0; } inline void set_resolution_0(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___resolution_0 = value; } inline static int32_t get_offset_of_fov_1() { return static_cast(offsetof(EyeRenderDesc_tD08EE6C80E0DFB171EE7152F9AC6406CBFDF2FE8, ___fov_1)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_fov_1() const { return ___fov_1; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_fov_1() { return &___fov_1; } inline void set_fov_1(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___fov_1 = value; } inline static int32_t get_offset_of_fullFov_2() { return static_cast(offsetof(EyeRenderDesc_tD08EE6C80E0DFB171EE7152F9AC6406CBFDF2FE8, ___fullFov_2)); } inline EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4 get_fullFov_2() const { return ___fullFov_2; } inline EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4 * get_address_of_fullFov_2() { return &___fullFov_2; } inline void set_fullFov_2(EyeFov_t932550483BD832E164BAA6F3803245F65617C0C4 value) { ___fullFov_2 = value; } }; // OVRHand/Hand struct Hand_t1DDDE8E88FE43B0552E010F6755CA5AE5078EBD4 { public: // System.Int32 OVRHand/Hand::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Hand_t1DDDE8E88FE43B0552E010F6755CA5AE5078EBD4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRHand/HandFinger struct HandFinger_tEDE6395DC7A01EA2212801493894BB09AEAB0F4C { public: // System.Int32 OVRHand/HandFinger::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HandFinger_tEDE6395DC7A01EA2212801493894BB09AEAB0F4C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRHand/TrackingConfidence struct TrackingConfidence_t05F8DCB45E675624F2884D85FA56DDBA1665E9E3 { public: // System.Int32 OVRHand/TrackingConfidence::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackingConfidence_t05F8DCB45E675624F2884D85FA56DDBA1665E9E3, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRHeadsetEmulator/OpMode struct OpMode_tCCF076EDC25F04A4D21E8589913F3BDF90A2142B { public: // System.Int32 OVRHeadsetEmulator/OpMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OpMode_tCCF076EDC25F04A4D21E8589913F3BDF90A2142B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/Axis1D struct Axis1D_t94694F3ED683A6B787DD963ECE994050DC0E599E { public: // System.Int32 OVRInput/Axis1D::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Axis1D_t94694F3ED683A6B787DD963ECE994050DC0E599E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/Axis2D struct Axis2D_t57417826F363C20874A0D61C58B6758AE7B195B2 { public: // System.Int32 OVRInput/Axis2D::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Axis2D_t57417826F363C20874A0D61C58B6758AE7B195B2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/Button struct Button_t8774325B87A9856038CA9138F00B669AF6D343B1 { public: // System.Int32 OVRInput/Button::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Button_t8774325B87A9856038CA9138F00B669AF6D343B1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/Controller struct Controller_tEEDA108639533B73057BAE8B95FE21725355C48F { public: // System.Int32 OVRInput/Controller::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Controller_tEEDA108639533B73057BAE8B95FE21725355C48F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/Handedness struct Handedness_tE69178EC3D8DE17A8209185F8EC7BFC0B758DF85 { public: // System.Int32 OVRInput/Handedness::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Handedness_tE69178EC3D8DE17A8209185F8EC7BFC0B758DF85, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/NearTouch struct NearTouch_tE21D2AD5061C7A8454689DF48F198D5D1F906DD1 { public: // System.Int32 OVRInput/NearTouch::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(NearTouch_tE21D2AD5061C7A8454689DF48F198D5D1F906DD1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/OpenVRButton struct OpenVRButton_t49E1610AFDF416FF4B55F58B53FF3E0A6FE63CAD { public: // System.UInt64 OVRInput/OpenVRButton::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OpenVRButton_t49E1610AFDF416FF4B55F58B53FF3E0A6FE63CAD, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // OVRInput/OpenVRController struct OpenVRController_t4C3B072AD524D07AA19784028DC5553E559189F5 { public: // System.UInt64 OVRInput/OpenVRController::value__ uint64_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OpenVRController_t4C3B072AD524D07AA19784028DC5553E559189F5, ___value___2)); } inline uint64_t get_value___2() const { return ___value___2; } inline uint64_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(uint64_t value) { ___value___2 = value; } }; // OVRInput/RawAxis1D struct RawAxis1D_t9B2E35EB55D1576A22213F62484826F45449B18D { public: // System.Int32 OVRInput/RawAxis1D::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RawAxis1D_t9B2E35EB55D1576A22213F62484826F45449B18D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/RawAxis2D struct RawAxis2D_tABCA103396E1850B7A831EEF0662260174363097 { public: // System.Int32 OVRInput/RawAxis2D::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RawAxis2D_tABCA103396E1850B7A831EEF0662260174363097, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/RawButton struct RawButton_tB9B6634051F818FF39B71EC1772F5ABC2CA3748B { public: // System.Int32 OVRInput/RawButton::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RawButton_tB9B6634051F818FF39B71EC1772F5ABC2CA3748B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/RawNearTouch struct RawNearTouch_t1E120FB24811DB3A1A66E379135BFF411C98020E { public: // System.Int32 OVRInput/RawNearTouch::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RawNearTouch_t1E120FB24811DB3A1A66E379135BFF411C98020E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/RawTouch struct RawTouch_tF426B14E2F3CDF90A2DF7CC1435BACCCD253ED94 { public: // System.Int32 OVRInput/RawTouch::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RawTouch_tF426B14E2F3CDF90A2DF7CC1435BACCCD253ED94, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRInput/Touch struct Touch_t944233476E3AE450B62D55E0FB4AFBCFA322CBCA { public: // System.Int32 OVRInput/Touch::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Touch_t944233476E3AE450B62D55E0FB4AFBCFA322CBCA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.EventSystems.OVRInputModule/InputMode struct InputMode_t02AE0DC1CCF015EEDAF3602B09F519FA1F4D4E14 { public: // System.Int32 UnityEngine.EventSystems.OVRInputModule/InputMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputMode_t02AE0DC1CCF015EEDAF3602B09F519FA1F4D4E14, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRKeyboard/TrackedKeyboardState struct TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC { public: // System.Boolean OVRKeyboard/TrackedKeyboardState::isPositionValid bool ___isPositionValid_0; // System.Boolean OVRKeyboard/TrackedKeyboardState::isPositionTracked bool ___isPositionTracked_1; // System.Boolean OVRKeyboard/TrackedKeyboardState::isOrientationValid bool ___isOrientationValid_2; // System.Boolean OVRKeyboard/TrackedKeyboardState::isOrientationTracked bool ___isOrientationTracked_3; // UnityEngine.Vector3 OVRKeyboard/TrackedKeyboardState::position Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_4; // UnityEngine.Quaternion OVRKeyboard/TrackedKeyboardState::rotation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_5; // System.Double OVRKeyboard/TrackedKeyboardState::timeInSeconds double ___timeInSeconds_6; public: inline static int32_t get_offset_of_isPositionValid_0() { return static_cast(offsetof(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC, ___isPositionValid_0)); } inline bool get_isPositionValid_0() const { return ___isPositionValid_0; } inline bool* get_address_of_isPositionValid_0() { return &___isPositionValid_0; } inline void set_isPositionValid_0(bool value) { ___isPositionValid_0 = value; } inline static int32_t get_offset_of_isPositionTracked_1() { return static_cast(offsetof(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC, ___isPositionTracked_1)); } inline bool get_isPositionTracked_1() const { return ___isPositionTracked_1; } inline bool* get_address_of_isPositionTracked_1() { return &___isPositionTracked_1; } inline void set_isPositionTracked_1(bool value) { ___isPositionTracked_1 = value; } inline static int32_t get_offset_of_isOrientationValid_2() { return static_cast(offsetof(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC, ___isOrientationValid_2)); } inline bool get_isOrientationValid_2() const { return ___isOrientationValid_2; } inline bool* get_address_of_isOrientationValid_2() { return &___isOrientationValid_2; } inline void set_isOrientationValid_2(bool value) { ___isOrientationValid_2 = value; } inline static int32_t get_offset_of_isOrientationTracked_3() { return static_cast(offsetof(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC, ___isOrientationTracked_3)); } inline bool get_isOrientationTracked_3() const { return ___isOrientationTracked_3; } inline bool* get_address_of_isOrientationTracked_3() { return &___isOrientationTracked_3; } inline void set_isOrientationTracked_3(bool value) { ___isOrientationTracked_3 = value; } inline static int32_t get_offset_of_position_4() { return static_cast(offsetof(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC, ___position_4)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_position_4() const { return ___position_4; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_position_4() { return &___position_4; } inline void set_position_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___position_4 = value; } inline static int32_t get_offset_of_rotation_5() { return static_cast(offsetof(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC, ___rotation_5)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_rotation_5() const { return ___rotation_5; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_rotation_5() { return &___rotation_5; } inline void set_rotation_5(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___rotation_5 = value; } inline static int32_t get_offset_of_timeInSeconds_6() { return static_cast(offsetof(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC, ___timeInSeconds_6)); } inline double get_timeInSeconds_6() const { return ___timeInSeconds_6; } inline double* get_address_of_timeInSeconds_6() { return &___timeInSeconds_6; } inline void set_timeInSeconds_6(double value) { ___timeInSeconds_6 = value; } }; // Native definition for P/Invoke marshalling of OVRKeyboard/TrackedKeyboardState struct TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_pinvoke { int32_t ___isPositionValid_0; int32_t ___isPositionTracked_1; int32_t ___isOrientationValid_2; int32_t ___isOrientationTracked_3; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_4; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_5; double ___timeInSeconds_6; }; // Native definition for COM marshalling of OVRKeyboard/TrackedKeyboardState struct TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_com { int32_t ___isPositionValid_0; int32_t ___isPositionTracked_1; int32_t ___isOrientationValid_2; int32_t ___isOrientationTracked_3; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position_4; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation_5; double ___timeInSeconds_6; }; // OVRManager/CameraDevice struct CameraDevice_t343D6D903FA0B6FE8C518F5C1982D78893DE45A8 { public: // System.Int32 OVRManager/CameraDevice::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CameraDevice_t343D6D903FA0B6FE8C518F5C1982D78893DE45A8, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/ColorSpace struct ColorSpace_t650DDFE12C26DD827C43B7572C2C1B6DCDE190F5 { public: // System.Int32 OVRManager/ColorSpace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ColorSpace_t650DDFE12C26DD827C43B7572C2C1B6DCDE190F5, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/CompositionMethod struct CompositionMethod_tE14AB92FD882C540F547BB34CE92E3980A463621 { public: // System.Int32 OVRManager/CompositionMethod::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CompositionMethod_tE14AB92FD882C540F547BB34CE92E3980A463621, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/DepthQuality struct DepthQuality_t87C2F2BC4469C8B18E10DB28869B9120BCE88E87 { public: // System.Int32 OVRManager/DepthQuality::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(DepthQuality_t87C2F2BC4469C8B18E10DB28869B9120BCE88E87, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/EyeTextureFormat struct EyeTextureFormat_tD0AB26FF509115F24BA0C629952A282F4578771B { public: // System.Int32 OVRManager/EyeTextureFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EyeTextureFormat_tD0AB26FF509115F24BA0C629952A282F4578771B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/FixedFoveatedRenderingLevel struct FixedFoveatedRenderingLevel_t6B5398EA323AC0E8EC80D155DFD698989A2BF9F8 { public: // System.Int32 OVRManager/FixedFoveatedRenderingLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FixedFoveatedRenderingLevel_t6B5398EA323AC0E8EC80D155DFD698989A2BF9F8, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/MrcActivationMode struct MrcActivationMode_tE6A05BDE8D9DD02B045404013ACE5818AB293CDC { public: // System.Int32 OVRManager/MrcActivationMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MrcActivationMode_tE6A05BDE8D9DD02B045404013ACE5818AB293CDC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/MrcCameraType struct MrcCameraType_tA0C0F09054FEED61597585A592B5A72AD5DF6F68 { public: // System.Int32 OVRManager/MrcCameraType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MrcCameraType_tA0C0F09054FEED61597585A592B5A72AD5DF6F68, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/PassthroughInitializationState struct PassthroughInitializationState_t6E899396D9C69E9F302220F3D60AEB90C5442CED { public: // System.Int32 OVRManager/PassthroughInitializationState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PassthroughInitializationState_t6E899396D9C69E9F302220F3D60AEB90C5442CED, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/SystemHeadsetType struct SystemHeadsetType_t0DFDC62C421E387E77BF21E203DB6D3019EC9E43 { public: // System.Int32 OVRManager/SystemHeadsetType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SystemHeadsetType_t0DFDC62C421E387E77BF21E203DB6D3019EC9E43, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/TiledMultiResLevel struct TiledMultiResLevel_t58E5831F6B7BFC9E651F11A5B04E8A1BE0A586F5 { public: // System.Int32 OVRManager/TiledMultiResLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TiledMultiResLevel_t58E5831F6B7BFC9E651F11A5B04E8A1BE0A586F5, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/TrackingOrigin struct TrackingOrigin_t5173D7627082C15011166C4F31E81997BFA48219 { public: // System.Int32 OVRManager/TrackingOrigin::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackingOrigin_t5173D7627082C15011166C4F31E81997BFA48219, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/VirtualGreenScreenType struct VirtualGreenScreenType_tC6483A446F7FF4003A8BC06A858B90022B5C0FA3 { public: // System.Int32 OVRManager/VirtualGreenScreenType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(VirtualGreenScreenType_tC6483A446F7FF4003A8BC06A858B90022B5C0FA3, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/XRDevice struct XRDevice_t21C532ED4C5C7408D383516CBC43300C6C8F2EE4 { public: // System.Int32 OVRManager/XRDevice::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XRDevice_t21C532ED4C5C7408D383516CBC43300C6C8F2EE4, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRManager/XrApi struct XrApi_tB25A109F718CF0508A92B8BA00AF4243B908654C { public: // System.Int32 OVRManager/XrApi::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XrApi_tB25A109F718CF0508A92B8BA00AF4243B908654C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRMesh/MeshType struct MeshType_t4B20B9A4BBC5E56D23E60EFC1233F2E77BA4D66C { public: // System.Int32 OVRMesh/MeshType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MeshType_t4B20B9A4BBC5E56D23E60EFC1233F2E77BA4D66C, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRMeshRenderer/ConfidenceBehavior struct ConfidenceBehavior_t60D6731AE013EA08A8950C3C2EF5CA2DDEB70504 { public: // System.Int32 OVRMeshRenderer/ConfidenceBehavior::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ConfidenceBehavior_t60D6731AE013EA08A8950C3C2EF5CA2DDEB70504, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRMeshRenderer/SystemGestureBehavior struct SystemGestureBehavior_tC4BF119EB60B9D1161100279EBE0BAFC68233BCC { public: // System.Int32 OVRMeshRenderer/SystemGestureBehavior::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SystemGestureBehavior_tC4BF119EB60B9D1161100279EBE0BAFC68233BCC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRMixedRealityCaptureTest/CameraMode struct CameraMode_tD7FD6998171F3265461491CB9F6FCE281FDCA7A0 { public: // System.Int32 OVRMixedRealityCaptureTest/CameraMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CameraMode_tD7FD6998171F3265461491CB9F6FCE281FDCA7A0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVROverlay/LayerTexture struct LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E { public: // UnityEngine.Texture OVROverlay/LayerTexture::appTexture Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___appTexture_0; // System.IntPtr OVROverlay/LayerTexture::appTexturePtr intptr_t ___appTexturePtr_1; // UnityEngine.Texture[] OVROverlay/LayerTexture::swapChain TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ___swapChain_2; // System.IntPtr[] OVROverlay/LayerTexture::swapChainPtr IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___swapChainPtr_3; public: inline static int32_t get_offset_of_appTexture_0() { return static_cast(offsetof(LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E, ___appTexture_0)); } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * get_appTexture_0() const { return ___appTexture_0; } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** get_address_of_appTexture_0() { return &___appTexture_0; } inline void set_appTexture_0(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value) { ___appTexture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___appTexture_0), (void*)value); } inline static int32_t get_offset_of_appTexturePtr_1() { return static_cast(offsetof(LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E, ___appTexturePtr_1)); } inline intptr_t get_appTexturePtr_1() const { return ___appTexturePtr_1; } inline intptr_t* get_address_of_appTexturePtr_1() { return &___appTexturePtr_1; } inline void set_appTexturePtr_1(intptr_t value) { ___appTexturePtr_1 = value; } inline static int32_t get_offset_of_swapChain_2() { return static_cast(offsetof(LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E, ___swapChain_2)); } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* get_swapChain_2() const { return ___swapChain_2; } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150** get_address_of_swapChain_2() { return &___swapChain_2; } inline void set_swapChain_2(TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* value) { ___swapChain_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___swapChain_2), (void*)value); } inline static int32_t get_offset_of_swapChainPtr_3() { return static_cast(offsetof(LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E, ___swapChainPtr_3)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_swapChainPtr_3() const { return ___swapChainPtr_3; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_swapChainPtr_3() { return &___swapChainPtr_3; } inline void set_swapChainPtr_3(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___swapChainPtr_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___swapChainPtr_3), (void*)value); } }; // Native definition for P/Invoke marshalling of OVROverlay/LayerTexture struct LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_pinvoke { Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___appTexture_0; intptr_t ___appTexturePtr_1; TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ___swapChain_2; Il2CppSafeArray/*NONE*/* ___swapChainPtr_3; }; // Native definition for COM marshalling of OVROverlay/LayerTexture struct LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_com { Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * ___appTexture_0; intptr_t ___appTexturePtr_1; TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ___swapChain_2; Il2CppSafeArray/*NONE*/* ___swapChainPtr_3; }; // OVROverlay/OverlayShape struct OverlayShape_tB956F76C341351FC776ACAB1023897A061806BEE { public: // System.Int32 OVROverlay/OverlayShape::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OverlayShape_tB956F76C341351FC776ACAB1023897A061806BEE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVROverlay/OverlayType struct OverlayType_tA4C6425D93366BDC6B22B1B9780ED927FF5A8A91 { public: // System.Int32 OVROverlay/OverlayType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OverlayType_tA4C6425D93366BDC6B22B1B9780ED927FF5A8A91, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVROverlayMeshGenerator/CubeFace struct CubeFace_tB3E47193F37A794619D78754CE46384349FC63BD { public: // System.Int32 OVROverlayMeshGenerator/CubeFace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CubeFace_tB3E47193F37A794619D78754CE46384349FC63BD, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPassthroughLayer/ColorMapEditorType struct ColorMapEditorType_t85C46260EEE76B5FF61B48B5DDE649B6A5B6A243 { public: // System.Int32 OVRPassthroughLayer/ColorMapEditorType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ColorMapEditorType_t85C46260EEE76B5FF61B48B5DDE649B6A5B6A243, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPassthroughLayer/ProjectionSurfaceType struct ProjectionSurfaceType_t38ED74A7818DB18AF544F2BEC4EBE79F5474627D { public: // System.Int32 OVRPassthroughLayer/ProjectionSurfaceType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ProjectionSurfaceType_t38ED74A7818DB18AF544F2BEC4EBE79F5474627D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlatformMenu/eBackButtonAction struct eBackButtonAction_tCEAE0B4C8C3490D6F8643098DC99E879CC22E7F0 { public: // System.Int32 OVRPlatformMenu/eBackButtonAction::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(eBackButtonAction_tCEAE0B4C8C3490D6F8643098DC99E879CC22E7F0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlatformMenu/eHandler struct eHandler_t6A9EFE50D5952ECB257BE6C402F9CA1B74F534EF { public: // System.Int32 OVRPlatformMenu/eHandler::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(eHandler_t6A9EFE50D5952ECB257BE6C402F9CA1B74F534EF, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/BatteryStatus struct BatteryStatus_t5AE146807E5B275A56C3AE406F871A49C1D3F0AE { public: // System.Int32 OVRPlugin/BatteryStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BatteryStatus_t5AE146807E5B275A56C3AE406F871A49C1D3F0AE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/BlendFactor struct BlendFactor_tF47BE742BE53F9BE8DDC0FD5B3B0F457CD9C2593 { public: // System.Int32 OVRPlugin/BlendFactor::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BlendFactor_tF47BE742BE53F9BE8DDC0FD5B3B0F457CD9C2593, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/BoneCapsule struct BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 { public: // System.Int16 OVRPlugin/BoneCapsule::BoneIndex int16_t ___BoneIndex_0; // OVRPlugin/Vector3f OVRPlugin/BoneCapsule::StartPoint Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___StartPoint_1; // OVRPlugin/Vector3f OVRPlugin/BoneCapsule::EndPoint Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___EndPoint_2; // System.Single OVRPlugin/BoneCapsule::Radius float ___Radius_3; public: inline static int32_t get_offset_of_BoneIndex_0() { return static_cast(offsetof(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07, ___BoneIndex_0)); } inline int16_t get_BoneIndex_0() const { return ___BoneIndex_0; } inline int16_t* get_address_of_BoneIndex_0() { return &___BoneIndex_0; } inline void set_BoneIndex_0(int16_t value) { ___BoneIndex_0 = value; } inline static int32_t get_offset_of_StartPoint_1() { return static_cast(offsetof(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07, ___StartPoint_1)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_StartPoint_1() const { return ___StartPoint_1; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_StartPoint_1() { return &___StartPoint_1; } inline void set_StartPoint_1(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___StartPoint_1 = value; } inline static int32_t get_offset_of_EndPoint_2() { return static_cast(offsetof(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07, ___EndPoint_2)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_EndPoint_2() const { return ___EndPoint_2; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_EndPoint_2() { return &___EndPoint_2; } inline void set_EndPoint_2(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___EndPoint_2 = value; } inline static int32_t get_offset_of_Radius_3() { return static_cast(offsetof(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07, ___Radius_3)); } inline float get_Radius_3() const { return ___Radius_3; } inline float* get_address_of_Radius_3() { return &___Radius_3; } inline void set_Radius_3(float value) { ___Radius_3 = value; } }; // OVRPlugin/BoneId struct BoneId_t0A08DD5A5735873EEAD52D56DFE9930A3EA23E22 { public: // System.Int32 OVRPlugin/BoneId::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BoneId_t0A08DD5A5735873EEAD52D56DFE9930A3EA23E22, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Bool struct Bool_tA9671975FE200092CD67E4FDB41904E99D92EF96 { public: // System.Int32 OVRPlugin/Bool::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Bool_tA9671975FE200092CD67E4FDB41904E99D92EF96, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/BoundaryType struct BoundaryType_tCC8E1E14EABDFBDE86F26CBBCEDE28DE28B1F7AF { public: // System.Int32 OVRPlugin/BoundaryType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BoundaryType_tCC8E1E14EABDFBDE86F26CBBCEDE28DE28B1F7AF, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Boundsf struct Boundsf_t9686B5746C1579302ACE7BA1887307FEE9521793 { public: // OVRPlugin/Vector3f OVRPlugin/Boundsf::Pos Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Pos_0; // OVRPlugin/Size3f OVRPlugin/Boundsf::Size Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 ___Size_1; public: inline static int32_t get_offset_of_Pos_0() { return static_cast(offsetof(Boundsf_t9686B5746C1579302ACE7BA1887307FEE9521793, ___Pos_0)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_Pos_0() const { return ___Pos_0; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_Pos_0() { return &___Pos_0; } inline void set_Pos_0(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___Pos_0 = value; } inline static int32_t get_offset_of_Size_1() { return static_cast(offsetof(Boundsf_t9686B5746C1579302ACE7BA1887307FEE9521793, ___Size_1)); } inline Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 get_Size_1() const { return ___Size_1; } inline Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 * get_address_of_Size_1() { return &___Size_1; } inline void set_Size_1(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 value) { ___Size_1 = value; } }; // OVRPlugin/CameraAnchorType struct CameraAnchorType_t955BA4CD6FF475692722F0D363E843B709B5BA23 { public: // System.Int32 OVRPlugin/CameraAnchorType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CameraAnchorType_t955BA4CD6FF475692722F0D363E843B709B5BA23, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/CameraDevice struct CameraDevice_t28640423D5FEBE3270CC459CEFB5146D529D3B1A { public: // System.Int32 OVRPlugin/CameraDevice::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CameraDevice_t28640423D5FEBE3270CC459CEFB5146D529D3B1A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/CameraDeviceDepthQuality struct CameraDeviceDepthQuality_tC8E2CBFF08D80C2B41F9C42BC59B4E0CD6752C7B { public: // System.Int32 OVRPlugin/CameraDeviceDepthQuality::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CameraDeviceDepthQuality_tC8E2CBFF08D80C2B41F9C42BC59B4E0CD6752C7B, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/CameraDeviceDepthSensingMode struct CameraDeviceDepthSensingMode_t4AE36BB39ED63AFEA6183A4E14C9E8B3AE1FAFFA { public: // System.Int32 OVRPlugin/CameraDeviceDepthSensingMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CameraDeviceDepthSensingMode_t4AE36BB39ED63AFEA6183A4E14C9E8B3AE1FAFFA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/CameraStatus struct CameraStatus_tADE3E92AA069758135353096CA8CF35E70F31BED { public: // System.Int32 OVRPlugin/CameraStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(CameraStatus_tADE3E92AA069758135353096CA8CF35E70F31BED, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/ColorSpace struct ColorSpace_t83DF8AAAFF6E72AC158CFD56BD33FC81C1F701BC { public: // System.Int32 OVRPlugin/ColorSpace::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ColorSpace_t83DF8AAAFF6E72AC158CFD56BD33FC81C1F701BC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Controller struct Controller_tFB59C1AB3C56256D53B28ABDCD7BFF1EAF6F5656 { public: // System.Int32 OVRPlugin/Controller::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Controller_tFB59C1AB3C56256D53B28ABDCD7BFF1EAF6F5656, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/ControllerState struct ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 { public: // System.UInt32 OVRPlugin/ControllerState::ConnectedControllers uint32_t ___ConnectedControllers_0; // System.UInt32 OVRPlugin/ControllerState::Buttons uint32_t ___Buttons_1; // System.UInt32 OVRPlugin/ControllerState::Touches uint32_t ___Touches_2; // System.UInt32 OVRPlugin/ControllerState::NearTouches uint32_t ___NearTouches_3; // System.Single OVRPlugin/ControllerState::LIndexTrigger float ___LIndexTrigger_4; // System.Single OVRPlugin/ControllerState::RIndexTrigger float ___RIndexTrigger_5; // System.Single OVRPlugin/ControllerState::LHandTrigger float ___LHandTrigger_6; // System.Single OVRPlugin/ControllerState::RHandTrigger float ___RHandTrigger_7; // OVRPlugin/Vector2f OVRPlugin/ControllerState::LThumbstick Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___LThumbstick_8; // OVRPlugin/Vector2f OVRPlugin/ControllerState::RThumbstick Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___RThumbstick_9; public: inline static int32_t get_offset_of_ConnectedControllers_0() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___ConnectedControllers_0)); } inline uint32_t get_ConnectedControllers_0() const { return ___ConnectedControllers_0; } inline uint32_t* get_address_of_ConnectedControllers_0() { return &___ConnectedControllers_0; } inline void set_ConnectedControllers_0(uint32_t value) { ___ConnectedControllers_0 = value; } inline static int32_t get_offset_of_Buttons_1() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___Buttons_1)); } inline uint32_t get_Buttons_1() const { return ___Buttons_1; } inline uint32_t* get_address_of_Buttons_1() { return &___Buttons_1; } inline void set_Buttons_1(uint32_t value) { ___Buttons_1 = value; } inline static int32_t get_offset_of_Touches_2() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___Touches_2)); } inline uint32_t get_Touches_2() const { return ___Touches_2; } inline uint32_t* get_address_of_Touches_2() { return &___Touches_2; } inline void set_Touches_2(uint32_t value) { ___Touches_2 = value; } inline static int32_t get_offset_of_NearTouches_3() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___NearTouches_3)); } inline uint32_t get_NearTouches_3() const { return ___NearTouches_3; } inline uint32_t* get_address_of_NearTouches_3() { return &___NearTouches_3; } inline void set_NearTouches_3(uint32_t value) { ___NearTouches_3 = value; } inline static int32_t get_offset_of_LIndexTrigger_4() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___LIndexTrigger_4)); } inline float get_LIndexTrigger_4() const { return ___LIndexTrigger_4; } inline float* get_address_of_LIndexTrigger_4() { return &___LIndexTrigger_4; } inline void set_LIndexTrigger_4(float value) { ___LIndexTrigger_4 = value; } inline static int32_t get_offset_of_RIndexTrigger_5() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___RIndexTrigger_5)); } inline float get_RIndexTrigger_5() const { return ___RIndexTrigger_5; } inline float* get_address_of_RIndexTrigger_5() { return &___RIndexTrigger_5; } inline void set_RIndexTrigger_5(float value) { ___RIndexTrigger_5 = value; } inline static int32_t get_offset_of_LHandTrigger_6() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___LHandTrigger_6)); } inline float get_LHandTrigger_6() const { return ___LHandTrigger_6; } inline float* get_address_of_LHandTrigger_6() { return &___LHandTrigger_6; } inline void set_LHandTrigger_6(float value) { ___LHandTrigger_6 = value; } inline static int32_t get_offset_of_RHandTrigger_7() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___RHandTrigger_7)); } inline float get_RHandTrigger_7() const { return ___RHandTrigger_7; } inline float* get_address_of_RHandTrigger_7() { return &___RHandTrigger_7; } inline void set_RHandTrigger_7(float value) { ___RHandTrigger_7 = value; } inline static int32_t get_offset_of_LThumbstick_8() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___LThumbstick_8)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_LThumbstick_8() const { return ___LThumbstick_8; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_LThumbstick_8() { return &___LThumbstick_8; } inline void set_LThumbstick_8(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___LThumbstick_8 = value; } inline static int32_t get_offset_of_RThumbstick_9() { return static_cast(offsetof(ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24, ___RThumbstick_9)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_RThumbstick_9() const { return ___RThumbstick_9; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_RThumbstick_9() { return &___RThumbstick_9; } inline void set_RThumbstick_9(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___RThumbstick_9 = value; } }; // OVRPlugin/ControllerState2 struct ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C { public: // System.UInt32 OVRPlugin/ControllerState2::ConnectedControllers uint32_t ___ConnectedControllers_0; // System.UInt32 OVRPlugin/ControllerState2::Buttons uint32_t ___Buttons_1; // System.UInt32 OVRPlugin/ControllerState2::Touches uint32_t ___Touches_2; // System.UInt32 OVRPlugin/ControllerState2::NearTouches uint32_t ___NearTouches_3; // System.Single OVRPlugin/ControllerState2::LIndexTrigger float ___LIndexTrigger_4; // System.Single OVRPlugin/ControllerState2::RIndexTrigger float ___RIndexTrigger_5; // System.Single OVRPlugin/ControllerState2::LHandTrigger float ___LHandTrigger_6; // System.Single OVRPlugin/ControllerState2::RHandTrigger float ___RHandTrigger_7; // OVRPlugin/Vector2f OVRPlugin/ControllerState2::LThumbstick Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___LThumbstick_8; // OVRPlugin/Vector2f OVRPlugin/ControllerState2::RThumbstick Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___RThumbstick_9; // OVRPlugin/Vector2f OVRPlugin/ControllerState2::LTouchpad Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___LTouchpad_10; // OVRPlugin/Vector2f OVRPlugin/ControllerState2::RTouchpad Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___RTouchpad_11; public: inline static int32_t get_offset_of_ConnectedControllers_0() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___ConnectedControllers_0)); } inline uint32_t get_ConnectedControllers_0() const { return ___ConnectedControllers_0; } inline uint32_t* get_address_of_ConnectedControllers_0() { return &___ConnectedControllers_0; } inline void set_ConnectedControllers_0(uint32_t value) { ___ConnectedControllers_0 = value; } inline static int32_t get_offset_of_Buttons_1() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___Buttons_1)); } inline uint32_t get_Buttons_1() const { return ___Buttons_1; } inline uint32_t* get_address_of_Buttons_1() { return &___Buttons_1; } inline void set_Buttons_1(uint32_t value) { ___Buttons_1 = value; } inline static int32_t get_offset_of_Touches_2() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___Touches_2)); } inline uint32_t get_Touches_2() const { return ___Touches_2; } inline uint32_t* get_address_of_Touches_2() { return &___Touches_2; } inline void set_Touches_2(uint32_t value) { ___Touches_2 = value; } inline static int32_t get_offset_of_NearTouches_3() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___NearTouches_3)); } inline uint32_t get_NearTouches_3() const { return ___NearTouches_3; } inline uint32_t* get_address_of_NearTouches_3() { return &___NearTouches_3; } inline void set_NearTouches_3(uint32_t value) { ___NearTouches_3 = value; } inline static int32_t get_offset_of_LIndexTrigger_4() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___LIndexTrigger_4)); } inline float get_LIndexTrigger_4() const { return ___LIndexTrigger_4; } inline float* get_address_of_LIndexTrigger_4() { return &___LIndexTrigger_4; } inline void set_LIndexTrigger_4(float value) { ___LIndexTrigger_4 = value; } inline static int32_t get_offset_of_RIndexTrigger_5() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___RIndexTrigger_5)); } inline float get_RIndexTrigger_5() const { return ___RIndexTrigger_5; } inline float* get_address_of_RIndexTrigger_5() { return &___RIndexTrigger_5; } inline void set_RIndexTrigger_5(float value) { ___RIndexTrigger_5 = value; } inline static int32_t get_offset_of_LHandTrigger_6() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___LHandTrigger_6)); } inline float get_LHandTrigger_6() const { return ___LHandTrigger_6; } inline float* get_address_of_LHandTrigger_6() { return &___LHandTrigger_6; } inline void set_LHandTrigger_6(float value) { ___LHandTrigger_6 = value; } inline static int32_t get_offset_of_RHandTrigger_7() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___RHandTrigger_7)); } inline float get_RHandTrigger_7() const { return ___RHandTrigger_7; } inline float* get_address_of_RHandTrigger_7() { return &___RHandTrigger_7; } inline void set_RHandTrigger_7(float value) { ___RHandTrigger_7 = value; } inline static int32_t get_offset_of_LThumbstick_8() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___LThumbstick_8)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_LThumbstick_8() const { return ___LThumbstick_8; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_LThumbstick_8() { return &___LThumbstick_8; } inline void set_LThumbstick_8(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___LThumbstick_8 = value; } inline static int32_t get_offset_of_RThumbstick_9() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___RThumbstick_9)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_RThumbstick_9() const { return ___RThumbstick_9; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_RThumbstick_9() { return &___RThumbstick_9; } inline void set_RThumbstick_9(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___RThumbstick_9 = value; } inline static int32_t get_offset_of_LTouchpad_10() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___LTouchpad_10)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_LTouchpad_10() const { return ___LTouchpad_10; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_LTouchpad_10() { return &___LTouchpad_10; } inline void set_LTouchpad_10(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___LTouchpad_10 = value; } inline static int32_t get_offset_of_RTouchpad_11() { return static_cast(offsetof(ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C, ___RTouchpad_11)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_RTouchpad_11() const { return ___RTouchpad_11; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_RTouchpad_11() { return &___RTouchpad_11; } inline void set_RTouchpad_11(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___RTouchpad_11 = value; } }; // OVRPlugin/ControllerState4 struct ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE { public: // System.UInt32 OVRPlugin/ControllerState4::ConnectedControllers uint32_t ___ConnectedControllers_0; // System.UInt32 OVRPlugin/ControllerState4::Buttons uint32_t ___Buttons_1; // System.UInt32 OVRPlugin/ControllerState4::Touches uint32_t ___Touches_2; // System.UInt32 OVRPlugin/ControllerState4::NearTouches uint32_t ___NearTouches_3; // System.Single OVRPlugin/ControllerState4::LIndexTrigger float ___LIndexTrigger_4; // System.Single OVRPlugin/ControllerState4::RIndexTrigger float ___RIndexTrigger_5; // System.Single OVRPlugin/ControllerState4::LHandTrigger float ___LHandTrigger_6; // System.Single OVRPlugin/ControllerState4::RHandTrigger float ___RHandTrigger_7; // OVRPlugin/Vector2f OVRPlugin/ControllerState4::LThumbstick Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___LThumbstick_8; // OVRPlugin/Vector2f OVRPlugin/ControllerState4::RThumbstick Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___RThumbstick_9; // OVRPlugin/Vector2f OVRPlugin/ControllerState4::LTouchpad Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___LTouchpad_10; // OVRPlugin/Vector2f OVRPlugin/ControllerState4::RTouchpad Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___RTouchpad_11; // System.Byte OVRPlugin/ControllerState4::LBatteryPercentRemaining uint8_t ___LBatteryPercentRemaining_12; // System.Byte OVRPlugin/ControllerState4::RBatteryPercentRemaining uint8_t ___RBatteryPercentRemaining_13; // System.Byte OVRPlugin/ControllerState4::LRecenterCount uint8_t ___LRecenterCount_14; // System.Byte OVRPlugin/ControllerState4::RRecenterCount uint8_t ___RRecenterCount_15; // System.Byte OVRPlugin/ControllerState4::Reserved_27 uint8_t ___Reserved_27_16; // System.Byte OVRPlugin/ControllerState4::Reserved_26 uint8_t ___Reserved_26_17; // System.Byte OVRPlugin/ControllerState4::Reserved_25 uint8_t ___Reserved_25_18; // System.Byte OVRPlugin/ControllerState4::Reserved_24 uint8_t ___Reserved_24_19; // System.Byte OVRPlugin/ControllerState4::Reserved_23 uint8_t ___Reserved_23_20; // System.Byte OVRPlugin/ControllerState4::Reserved_22 uint8_t ___Reserved_22_21; // System.Byte OVRPlugin/ControllerState4::Reserved_21 uint8_t ___Reserved_21_22; // System.Byte OVRPlugin/ControllerState4::Reserved_20 uint8_t ___Reserved_20_23; // System.Byte OVRPlugin/ControllerState4::Reserved_19 uint8_t ___Reserved_19_24; // System.Byte OVRPlugin/ControllerState4::Reserved_18 uint8_t ___Reserved_18_25; // System.Byte OVRPlugin/ControllerState4::Reserved_17 uint8_t ___Reserved_17_26; // System.Byte OVRPlugin/ControllerState4::Reserved_16 uint8_t ___Reserved_16_27; // System.Byte OVRPlugin/ControllerState4::Reserved_15 uint8_t ___Reserved_15_28; // System.Byte OVRPlugin/ControllerState4::Reserved_14 uint8_t ___Reserved_14_29; // System.Byte OVRPlugin/ControllerState4::Reserved_13 uint8_t ___Reserved_13_30; // System.Byte OVRPlugin/ControllerState4::Reserved_12 uint8_t ___Reserved_12_31; // System.Byte OVRPlugin/ControllerState4::Reserved_11 uint8_t ___Reserved_11_32; // System.Byte OVRPlugin/ControllerState4::Reserved_10 uint8_t ___Reserved_10_33; // System.Byte OVRPlugin/ControllerState4::Reserved_09 uint8_t ___Reserved_09_34; // System.Byte OVRPlugin/ControllerState4::Reserved_08 uint8_t ___Reserved_08_35; // System.Byte OVRPlugin/ControllerState4::Reserved_07 uint8_t ___Reserved_07_36; // System.Byte OVRPlugin/ControllerState4::Reserved_06 uint8_t ___Reserved_06_37; // System.Byte OVRPlugin/ControllerState4::Reserved_05 uint8_t ___Reserved_05_38; // System.Byte OVRPlugin/ControllerState4::Reserved_04 uint8_t ___Reserved_04_39; // System.Byte OVRPlugin/ControllerState4::Reserved_03 uint8_t ___Reserved_03_40; // System.Byte OVRPlugin/ControllerState4::Reserved_02 uint8_t ___Reserved_02_41; // System.Byte OVRPlugin/ControllerState4::Reserved_01 uint8_t ___Reserved_01_42; // System.Byte OVRPlugin/ControllerState4::Reserved_00 uint8_t ___Reserved_00_43; public: inline static int32_t get_offset_of_ConnectedControllers_0() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___ConnectedControllers_0)); } inline uint32_t get_ConnectedControllers_0() const { return ___ConnectedControllers_0; } inline uint32_t* get_address_of_ConnectedControllers_0() { return &___ConnectedControllers_0; } inline void set_ConnectedControllers_0(uint32_t value) { ___ConnectedControllers_0 = value; } inline static int32_t get_offset_of_Buttons_1() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Buttons_1)); } inline uint32_t get_Buttons_1() const { return ___Buttons_1; } inline uint32_t* get_address_of_Buttons_1() { return &___Buttons_1; } inline void set_Buttons_1(uint32_t value) { ___Buttons_1 = value; } inline static int32_t get_offset_of_Touches_2() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Touches_2)); } inline uint32_t get_Touches_2() const { return ___Touches_2; } inline uint32_t* get_address_of_Touches_2() { return &___Touches_2; } inline void set_Touches_2(uint32_t value) { ___Touches_2 = value; } inline static int32_t get_offset_of_NearTouches_3() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___NearTouches_3)); } inline uint32_t get_NearTouches_3() const { return ___NearTouches_3; } inline uint32_t* get_address_of_NearTouches_3() { return &___NearTouches_3; } inline void set_NearTouches_3(uint32_t value) { ___NearTouches_3 = value; } inline static int32_t get_offset_of_LIndexTrigger_4() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___LIndexTrigger_4)); } inline float get_LIndexTrigger_4() const { return ___LIndexTrigger_4; } inline float* get_address_of_LIndexTrigger_4() { return &___LIndexTrigger_4; } inline void set_LIndexTrigger_4(float value) { ___LIndexTrigger_4 = value; } inline static int32_t get_offset_of_RIndexTrigger_5() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___RIndexTrigger_5)); } inline float get_RIndexTrigger_5() const { return ___RIndexTrigger_5; } inline float* get_address_of_RIndexTrigger_5() { return &___RIndexTrigger_5; } inline void set_RIndexTrigger_5(float value) { ___RIndexTrigger_5 = value; } inline static int32_t get_offset_of_LHandTrigger_6() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___LHandTrigger_6)); } inline float get_LHandTrigger_6() const { return ___LHandTrigger_6; } inline float* get_address_of_LHandTrigger_6() { return &___LHandTrigger_6; } inline void set_LHandTrigger_6(float value) { ___LHandTrigger_6 = value; } inline static int32_t get_offset_of_RHandTrigger_7() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___RHandTrigger_7)); } inline float get_RHandTrigger_7() const { return ___RHandTrigger_7; } inline float* get_address_of_RHandTrigger_7() { return &___RHandTrigger_7; } inline void set_RHandTrigger_7(float value) { ___RHandTrigger_7 = value; } inline static int32_t get_offset_of_LThumbstick_8() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___LThumbstick_8)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_LThumbstick_8() const { return ___LThumbstick_8; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_LThumbstick_8() { return &___LThumbstick_8; } inline void set_LThumbstick_8(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___LThumbstick_8 = value; } inline static int32_t get_offset_of_RThumbstick_9() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___RThumbstick_9)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_RThumbstick_9() const { return ___RThumbstick_9; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_RThumbstick_9() { return &___RThumbstick_9; } inline void set_RThumbstick_9(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___RThumbstick_9 = value; } inline static int32_t get_offset_of_LTouchpad_10() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___LTouchpad_10)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_LTouchpad_10() const { return ___LTouchpad_10; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_LTouchpad_10() { return &___LTouchpad_10; } inline void set_LTouchpad_10(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___LTouchpad_10 = value; } inline static int32_t get_offset_of_RTouchpad_11() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___RTouchpad_11)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_RTouchpad_11() const { return ___RTouchpad_11; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_RTouchpad_11() { return &___RTouchpad_11; } inline void set_RTouchpad_11(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___RTouchpad_11 = value; } inline static int32_t get_offset_of_LBatteryPercentRemaining_12() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___LBatteryPercentRemaining_12)); } inline uint8_t get_LBatteryPercentRemaining_12() const { return ___LBatteryPercentRemaining_12; } inline uint8_t* get_address_of_LBatteryPercentRemaining_12() { return &___LBatteryPercentRemaining_12; } inline void set_LBatteryPercentRemaining_12(uint8_t value) { ___LBatteryPercentRemaining_12 = value; } inline static int32_t get_offset_of_RBatteryPercentRemaining_13() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___RBatteryPercentRemaining_13)); } inline uint8_t get_RBatteryPercentRemaining_13() const { return ___RBatteryPercentRemaining_13; } inline uint8_t* get_address_of_RBatteryPercentRemaining_13() { return &___RBatteryPercentRemaining_13; } inline void set_RBatteryPercentRemaining_13(uint8_t value) { ___RBatteryPercentRemaining_13 = value; } inline static int32_t get_offset_of_LRecenterCount_14() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___LRecenterCount_14)); } inline uint8_t get_LRecenterCount_14() const { return ___LRecenterCount_14; } inline uint8_t* get_address_of_LRecenterCount_14() { return &___LRecenterCount_14; } inline void set_LRecenterCount_14(uint8_t value) { ___LRecenterCount_14 = value; } inline static int32_t get_offset_of_RRecenterCount_15() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___RRecenterCount_15)); } inline uint8_t get_RRecenterCount_15() const { return ___RRecenterCount_15; } inline uint8_t* get_address_of_RRecenterCount_15() { return &___RRecenterCount_15; } inline void set_RRecenterCount_15(uint8_t value) { ___RRecenterCount_15 = value; } inline static int32_t get_offset_of_Reserved_27_16() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_27_16)); } inline uint8_t get_Reserved_27_16() const { return ___Reserved_27_16; } inline uint8_t* get_address_of_Reserved_27_16() { return &___Reserved_27_16; } inline void set_Reserved_27_16(uint8_t value) { ___Reserved_27_16 = value; } inline static int32_t get_offset_of_Reserved_26_17() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_26_17)); } inline uint8_t get_Reserved_26_17() const { return ___Reserved_26_17; } inline uint8_t* get_address_of_Reserved_26_17() { return &___Reserved_26_17; } inline void set_Reserved_26_17(uint8_t value) { ___Reserved_26_17 = value; } inline static int32_t get_offset_of_Reserved_25_18() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_25_18)); } inline uint8_t get_Reserved_25_18() const { return ___Reserved_25_18; } inline uint8_t* get_address_of_Reserved_25_18() { return &___Reserved_25_18; } inline void set_Reserved_25_18(uint8_t value) { ___Reserved_25_18 = value; } inline static int32_t get_offset_of_Reserved_24_19() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_24_19)); } inline uint8_t get_Reserved_24_19() const { return ___Reserved_24_19; } inline uint8_t* get_address_of_Reserved_24_19() { return &___Reserved_24_19; } inline void set_Reserved_24_19(uint8_t value) { ___Reserved_24_19 = value; } inline static int32_t get_offset_of_Reserved_23_20() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_23_20)); } inline uint8_t get_Reserved_23_20() const { return ___Reserved_23_20; } inline uint8_t* get_address_of_Reserved_23_20() { return &___Reserved_23_20; } inline void set_Reserved_23_20(uint8_t value) { ___Reserved_23_20 = value; } inline static int32_t get_offset_of_Reserved_22_21() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_22_21)); } inline uint8_t get_Reserved_22_21() const { return ___Reserved_22_21; } inline uint8_t* get_address_of_Reserved_22_21() { return &___Reserved_22_21; } inline void set_Reserved_22_21(uint8_t value) { ___Reserved_22_21 = value; } inline static int32_t get_offset_of_Reserved_21_22() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_21_22)); } inline uint8_t get_Reserved_21_22() const { return ___Reserved_21_22; } inline uint8_t* get_address_of_Reserved_21_22() { return &___Reserved_21_22; } inline void set_Reserved_21_22(uint8_t value) { ___Reserved_21_22 = value; } inline static int32_t get_offset_of_Reserved_20_23() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_20_23)); } inline uint8_t get_Reserved_20_23() const { return ___Reserved_20_23; } inline uint8_t* get_address_of_Reserved_20_23() { return &___Reserved_20_23; } inline void set_Reserved_20_23(uint8_t value) { ___Reserved_20_23 = value; } inline static int32_t get_offset_of_Reserved_19_24() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_19_24)); } inline uint8_t get_Reserved_19_24() const { return ___Reserved_19_24; } inline uint8_t* get_address_of_Reserved_19_24() { return &___Reserved_19_24; } inline void set_Reserved_19_24(uint8_t value) { ___Reserved_19_24 = value; } inline static int32_t get_offset_of_Reserved_18_25() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_18_25)); } inline uint8_t get_Reserved_18_25() const { return ___Reserved_18_25; } inline uint8_t* get_address_of_Reserved_18_25() { return &___Reserved_18_25; } inline void set_Reserved_18_25(uint8_t value) { ___Reserved_18_25 = value; } inline static int32_t get_offset_of_Reserved_17_26() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_17_26)); } inline uint8_t get_Reserved_17_26() const { return ___Reserved_17_26; } inline uint8_t* get_address_of_Reserved_17_26() { return &___Reserved_17_26; } inline void set_Reserved_17_26(uint8_t value) { ___Reserved_17_26 = value; } inline static int32_t get_offset_of_Reserved_16_27() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_16_27)); } inline uint8_t get_Reserved_16_27() const { return ___Reserved_16_27; } inline uint8_t* get_address_of_Reserved_16_27() { return &___Reserved_16_27; } inline void set_Reserved_16_27(uint8_t value) { ___Reserved_16_27 = value; } inline static int32_t get_offset_of_Reserved_15_28() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_15_28)); } inline uint8_t get_Reserved_15_28() const { return ___Reserved_15_28; } inline uint8_t* get_address_of_Reserved_15_28() { return &___Reserved_15_28; } inline void set_Reserved_15_28(uint8_t value) { ___Reserved_15_28 = value; } inline static int32_t get_offset_of_Reserved_14_29() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_14_29)); } inline uint8_t get_Reserved_14_29() const { return ___Reserved_14_29; } inline uint8_t* get_address_of_Reserved_14_29() { return &___Reserved_14_29; } inline void set_Reserved_14_29(uint8_t value) { ___Reserved_14_29 = value; } inline static int32_t get_offset_of_Reserved_13_30() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_13_30)); } inline uint8_t get_Reserved_13_30() const { return ___Reserved_13_30; } inline uint8_t* get_address_of_Reserved_13_30() { return &___Reserved_13_30; } inline void set_Reserved_13_30(uint8_t value) { ___Reserved_13_30 = value; } inline static int32_t get_offset_of_Reserved_12_31() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_12_31)); } inline uint8_t get_Reserved_12_31() const { return ___Reserved_12_31; } inline uint8_t* get_address_of_Reserved_12_31() { return &___Reserved_12_31; } inline void set_Reserved_12_31(uint8_t value) { ___Reserved_12_31 = value; } inline static int32_t get_offset_of_Reserved_11_32() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_11_32)); } inline uint8_t get_Reserved_11_32() const { return ___Reserved_11_32; } inline uint8_t* get_address_of_Reserved_11_32() { return &___Reserved_11_32; } inline void set_Reserved_11_32(uint8_t value) { ___Reserved_11_32 = value; } inline static int32_t get_offset_of_Reserved_10_33() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_10_33)); } inline uint8_t get_Reserved_10_33() const { return ___Reserved_10_33; } inline uint8_t* get_address_of_Reserved_10_33() { return &___Reserved_10_33; } inline void set_Reserved_10_33(uint8_t value) { ___Reserved_10_33 = value; } inline static int32_t get_offset_of_Reserved_09_34() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_09_34)); } inline uint8_t get_Reserved_09_34() const { return ___Reserved_09_34; } inline uint8_t* get_address_of_Reserved_09_34() { return &___Reserved_09_34; } inline void set_Reserved_09_34(uint8_t value) { ___Reserved_09_34 = value; } inline static int32_t get_offset_of_Reserved_08_35() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_08_35)); } inline uint8_t get_Reserved_08_35() const { return ___Reserved_08_35; } inline uint8_t* get_address_of_Reserved_08_35() { return &___Reserved_08_35; } inline void set_Reserved_08_35(uint8_t value) { ___Reserved_08_35 = value; } inline static int32_t get_offset_of_Reserved_07_36() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_07_36)); } inline uint8_t get_Reserved_07_36() const { return ___Reserved_07_36; } inline uint8_t* get_address_of_Reserved_07_36() { return &___Reserved_07_36; } inline void set_Reserved_07_36(uint8_t value) { ___Reserved_07_36 = value; } inline static int32_t get_offset_of_Reserved_06_37() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_06_37)); } inline uint8_t get_Reserved_06_37() const { return ___Reserved_06_37; } inline uint8_t* get_address_of_Reserved_06_37() { return &___Reserved_06_37; } inline void set_Reserved_06_37(uint8_t value) { ___Reserved_06_37 = value; } inline static int32_t get_offset_of_Reserved_05_38() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_05_38)); } inline uint8_t get_Reserved_05_38() const { return ___Reserved_05_38; } inline uint8_t* get_address_of_Reserved_05_38() { return &___Reserved_05_38; } inline void set_Reserved_05_38(uint8_t value) { ___Reserved_05_38 = value; } inline static int32_t get_offset_of_Reserved_04_39() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_04_39)); } inline uint8_t get_Reserved_04_39() const { return ___Reserved_04_39; } inline uint8_t* get_address_of_Reserved_04_39() { return &___Reserved_04_39; } inline void set_Reserved_04_39(uint8_t value) { ___Reserved_04_39 = value; } inline static int32_t get_offset_of_Reserved_03_40() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_03_40)); } inline uint8_t get_Reserved_03_40() const { return ___Reserved_03_40; } inline uint8_t* get_address_of_Reserved_03_40() { return &___Reserved_03_40; } inline void set_Reserved_03_40(uint8_t value) { ___Reserved_03_40 = value; } inline static int32_t get_offset_of_Reserved_02_41() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_02_41)); } inline uint8_t get_Reserved_02_41() const { return ___Reserved_02_41; } inline uint8_t* get_address_of_Reserved_02_41() { return &___Reserved_02_41; } inline void set_Reserved_02_41(uint8_t value) { ___Reserved_02_41 = value; } inline static int32_t get_offset_of_Reserved_01_42() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_01_42)); } inline uint8_t get_Reserved_01_42() const { return ___Reserved_01_42; } inline uint8_t* get_address_of_Reserved_01_42() { return &___Reserved_01_42; } inline void set_Reserved_01_42(uint8_t value) { ___Reserved_01_42 = value; } inline static int32_t get_offset_of_Reserved_00_43() { return static_cast(offsetof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE, ___Reserved_00_43)); } inline uint8_t get_Reserved_00_43() const { return ___Reserved_00_43; } inline uint8_t* get_address_of_Reserved_00_43() { return &___Reserved_00_43; } inline void set_Reserved_00_43(uint8_t value) { ___Reserved_00_43 = value; } }; // OVRPlugin/EventType struct EventType_t9927BD364F4D4D5210F5D3067C7B195E3E876F30 { public: // System.Int32 OVRPlugin/EventType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EventType_t9927BD364F4D4D5210F5D3067C7B195E3E876F30, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Eye struct Eye_tE1C24E36F0809E2A3CE36EDA3A81AA6F7169EEF0 { public: // System.Int32 OVRPlugin/Eye::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Eye_tE1C24E36F0809E2A3CE36EDA3A81AA6F7169EEF0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/EyeTextureFormat struct EyeTextureFormat_tA6D50F360539FD57E20BCFB425C3E717E180A89E { public: // System.Int32 OVRPlugin/EyeTextureFormat::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(EyeTextureFormat_tA6D50F360539FD57E20BCFB425C3E717E180A89E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/FixedFoveatedRenderingLevel struct FixedFoveatedRenderingLevel_tBDEA043B8B3AF940356867E9743783E193FEA2AB { public: // System.Int32 OVRPlugin/FixedFoveatedRenderingLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(FixedFoveatedRenderingLevel_tBDEA043B8B3AF940356867E9743783E193FEA2AB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Frustumf2 struct Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA { public: // System.Single OVRPlugin/Frustumf2::zNear float ___zNear_0; // System.Single OVRPlugin/Frustumf2::zFar float ___zFar_1; // OVRPlugin/Fovf OVRPlugin/Frustumf2::Fov Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF ___Fov_2; public: inline static int32_t get_offset_of_zNear_0() { return static_cast(offsetof(Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA, ___zNear_0)); } inline float get_zNear_0() const { return ___zNear_0; } inline float* get_address_of_zNear_0() { return &___zNear_0; } inline void set_zNear_0(float value) { ___zNear_0 = value; } inline static int32_t get_offset_of_zFar_1() { return static_cast(offsetof(Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA, ___zFar_1)); } inline float get_zFar_1() const { return ___zFar_1; } inline float* get_address_of_zFar_1() { return &___zFar_1; } inline void set_zFar_1(float value) { ___zFar_1 = value; } inline static int32_t get_offset_of_Fov_2() { return static_cast(offsetof(Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA, ___Fov_2)); } inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF get_Fov_2() const { return ___Fov_2; } inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF * get_address_of_Fov_2() { return &___Fov_2; } inline void set_Fov_2(Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF value) { ___Fov_2 = value; } }; // OVRPlugin/Hand struct Hand_t9CA76BC444108F8E1F07419E7CFAAF6993F90AD2 { public: // System.Int32 OVRPlugin/Hand::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Hand_t9CA76BC444108F8E1F07419E7CFAAF6993F90AD2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/HandFinger struct HandFinger_tF86313DA2243412156A9F97AAB60945A8660F62A { public: // System.Int32 OVRPlugin/HandFinger::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HandFinger_tF86313DA2243412156A9F97AAB60945A8660F62A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/HandFingerPinch struct HandFingerPinch_t34ACF5B486E328BD7E2DBE8E74807ACA9FAF31CE { public: // System.Int32 OVRPlugin/HandFingerPinch::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HandFingerPinch_t34ACF5B486E328BD7E2DBE8E74807ACA9FAF31CE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/HandStatus struct HandStatus_t3CD43284B7DC75BB49345FE221FDB6046EFC9B65 { public: // System.Int32 OVRPlugin/HandStatus::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(HandStatus_t3CD43284B7DC75BB49345FE221FDB6046EFC9B65, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Handedness struct Handedness_t2C38A62689BD8D9A02F70AB76BD841825C53A51A { public: // System.Int32 OVRPlugin/Handedness::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Handedness_t2C38A62689BD8D9A02F70AB76BD841825C53A51A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/HapticsBuffer struct HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E { public: // System.IntPtr OVRPlugin/HapticsBuffer::Samples intptr_t ___Samples_0; // System.Int32 OVRPlugin/HapticsBuffer::SamplesCount int32_t ___SamplesCount_1; public: inline static int32_t get_offset_of_Samples_0() { return static_cast(offsetof(HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E, ___Samples_0)); } inline intptr_t get_Samples_0() const { return ___Samples_0; } inline intptr_t* get_address_of_Samples_0() { return &___Samples_0; } inline void set_Samples_0(intptr_t value) { ___Samples_0 = value; } inline static int32_t get_offset_of_SamplesCount_1() { return static_cast(offsetof(HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E, ___SamplesCount_1)); } inline int32_t get_SamplesCount_1() const { return ___SamplesCount_1; } inline int32_t* get_address_of_SamplesCount_1() { return &___SamplesCount_1; } inline void set_SamplesCount_1(int32_t value) { ___SamplesCount_1 = value; } }; // OVRPlugin/InsightPassthroughColorMapType struct InsightPassthroughColorMapType_tFC50BE8F852456675505EC936C8389280143C042 { public: // System.Int32 OVRPlugin/InsightPassthroughColorMapType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InsightPassthroughColorMapType_tFC50BE8F852456675505EC936C8389280143C042, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/InsightPassthroughStyleFlags struct InsightPassthroughStyleFlags_t6B854516ADA79BA117081385A0DEC799B4918F71 { public: // System.Int32 OVRPlugin/InsightPassthroughStyleFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InsightPassthroughStyleFlags_t6B854516ADA79BA117081385A0DEC799B4918F71, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/KeyboardDescriptionConstants struct KeyboardDescriptionConstants_tAB402B118075D1A443F4E044B92C66AF3D713F55 { public: // System.Int32 OVRPlugin/KeyboardDescriptionConstants::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(KeyboardDescriptionConstants_tAB402B118075D1A443F4E044B92C66AF3D713F55, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/LayerFlags struct LayerFlags_t71B2B7D67675E6CE5CBE0EBE95B8D18D04C03FA9 { public: // System.Int32 OVRPlugin/LayerFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LayerFlags_t71B2B7D67675E6CE5CBE0EBE95B8D18D04C03FA9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/LayerLayout struct LayerLayout_t69210A1A9CCEF0BA738C09450D8AA2C9460F40DE { public: // System.Int32 OVRPlugin/LayerLayout::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(LayerLayout_t69210A1A9CCEF0BA738C09450D8AA2C9460F40DE, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/MeshConstants struct MeshConstants_tA0DAD669507C5186230B4E1BAC1896CFCE46F1FC { public: // System.Int32 OVRPlugin/MeshConstants::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MeshConstants_tA0DAD669507C5186230B4E1BAC1896CFCE46F1FC, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/MeshType struct MeshType_t2A1F373C7DF794F5DD951192CFF3D1A226FCBD98 { public: // System.Int32 OVRPlugin/MeshType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MeshType_t2A1F373C7DF794F5DD951192CFF3D1A226FCBD98, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Node struct Node_t8ED2C04E12CC3A00FCDF19DE898B6A02989D5D2F { public: // System.Int32 OVRPlugin/Node::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Node_t8ED2C04E12CC3A00FCDF19DE898B6A02989D5D2F, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/OverlayFlag struct OverlayFlag_t052AA6F0230D6B1DA0A7A9A690CA8A7133030DA1 { public: // System.Int32 OVRPlugin/OverlayFlag::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OverlayFlag_t052AA6F0230D6B1DA0A7A9A690CA8A7133030DA1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/OverlayShape struct OverlayShape_tF919BB207C80855BDF33A30CB464646F18826DB7 { public: // System.Int32 OVRPlugin/OverlayShape::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(OverlayShape_tF919BB207C80855BDF33A30CB464646F18826DB7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/PerfMetrics struct PerfMetrics_tAED2B3A1610675F931539AFC1E659B95882AF8D9 { public: // System.Int32 OVRPlugin/PerfMetrics::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PerfMetrics_tAED2B3A1610675F931539AFC1E659B95882AF8D9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/PlatformUI struct PlatformUI_t995CCBAB51BAEDA66B99192ACA89A42E441056A9 { public: // System.Int32 OVRPlugin/PlatformUI::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PlatformUI_t995CCBAB51BAEDA66B99192ACA89A42E441056A9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Posef struct Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 { public: // OVRPlugin/Quatf OVRPlugin/Posef::Orientation Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___Orientation_0; // OVRPlugin/Vector3f OVRPlugin/Posef::Position Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Position_1; public: inline static int32_t get_offset_of_Orientation_0() { return static_cast(offsetof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952, ___Orientation_0)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_Orientation_0() const { return ___Orientation_0; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_Orientation_0() { return &___Orientation_0; } inline void set_Orientation_0(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___Orientation_0 = value; } inline static int32_t get_offset_of_Position_1() { return static_cast(offsetof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952, ___Position_1)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_Position_1() const { return ___Position_1; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_Position_1() { return &___Position_1; } inline void set_Position_1(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___Position_1 = value; } }; // OVRPlugin/RecenterFlags struct RecenterFlags_t0BFEA7D7CE0A469430F813DFF28E0C7D7A75708D { public: // System.Int32 OVRPlugin/RecenterFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(RecenterFlags_t0BFEA7D7CE0A469430F813DFF28E0C7D7A75708D, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Rectf struct Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 { public: // OVRPlugin/Vector2f OVRPlugin/Rectf::Pos Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___Pos_0; // OVRPlugin/Sizef OVRPlugin/Rectf::Size Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 ___Size_1; public: inline static int32_t get_offset_of_Pos_0() { return static_cast(offsetof(Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3, ___Pos_0)); } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 get_Pos_0() const { return ___Pos_0; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * get_address_of_Pos_0() { return &___Pos_0; } inline void set_Pos_0(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { ___Pos_0 = value; } inline static int32_t get_offset_of_Size_1() { return static_cast(offsetof(Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3, ___Size_1)); } inline Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 get_Size_1() const { return ___Size_1; } inline Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 * get_address_of_Size_1() { return &___Size_1; } inline void set_Size_1(Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 value) { ___Size_1 = value; } }; // OVRPlugin/Recti struct Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B { public: // OVRPlugin/Vector2i OVRPlugin/Recti::Pos Vector2i_t4DE1BD7B6E35A62EDB13BE5EBF8746EC010A7B8B ___Pos_0; // OVRPlugin/Sizei OVRPlugin/Recti::Size Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___Size_1; public: inline static int32_t get_offset_of_Pos_0() { return static_cast(offsetof(Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B, ___Pos_0)); } inline Vector2i_t4DE1BD7B6E35A62EDB13BE5EBF8746EC010A7B8B get_Pos_0() const { return ___Pos_0; } inline Vector2i_t4DE1BD7B6E35A62EDB13BE5EBF8746EC010A7B8B * get_address_of_Pos_0() { return &___Pos_0; } inline void set_Pos_0(Vector2i_t4DE1BD7B6E35A62EDB13BE5EBF8746EC010A7B8B value) { ___Pos_0 = value; } inline static int32_t get_offset_of_Size_1() { return static_cast(offsetof(Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B, ___Size_1)); } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 get_Size_1() const { return ___Size_1; } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * get_address_of_Size_1() { return &___Size_1; } inline void set_Size_1(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 value) { ___Size_1 = value; } }; // OVRPlugin/RenderModelPropertiesInternal struct RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43 { public: // System.Byte[] OVRPlugin/RenderModelPropertiesInternal::ModelName ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___ModelName_0; // System.UInt64 OVRPlugin/RenderModelPropertiesInternal::ModelKey uint64_t ___ModelKey_1; // System.UInt32 OVRPlugin/RenderModelPropertiesInternal::VendorId uint32_t ___VendorId_2; // System.UInt32 OVRPlugin/RenderModelPropertiesInternal::ModelVersion uint32_t ___ModelVersion_3; public: inline static int32_t get_offset_of_ModelName_0() { return static_cast(offsetof(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43, ___ModelName_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_ModelName_0() const { return ___ModelName_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_ModelName_0() { return &___ModelName_0; } inline void set_ModelName_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___ModelName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ModelName_0), (void*)value); } inline static int32_t get_offset_of_ModelKey_1() { return static_cast(offsetof(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43, ___ModelKey_1)); } inline uint64_t get_ModelKey_1() const { return ___ModelKey_1; } inline uint64_t* get_address_of_ModelKey_1() { return &___ModelKey_1; } inline void set_ModelKey_1(uint64_t value) { ___ModelKey_1 = value; } inline static int32_t get_offset_of_VendorId_2() { return static_cast(offsetof(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43, ___VendorId_2)); } inline uint32_t get_VendorId_2() const { return ___VendorId_2; } inline uint32_t* get_address_of_VendorId_2() { return &___VendorId_2; } inline void set_VendorId_2(uint32_t value) { ___VendorId_2 = value; } inline static int32_t get_offset_of_ModelVersion_3() { return static_cast(offsetof(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43, ___ModelVersion_3)); } inline uint32_t get_ModelVersion_3() const { return ___ModelVersion_3; } inline uint32_t* get_address_of_ModelVersion_3() { return &___ModelVersion_3; } inline void set_ModelVersion_3(uint32_t value) { ___ModelVersion_3 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/RenderModelPropertiesInternal struct RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke { uint8_t ___ModelName_0[64]; uint64_t ___ModelKey_1; uint32_t ___VendorId_2; uint32_t ___ModelVersion_3; }; // Native definition for COM marshalling of OVRPlugin/RenderModelPropertiesInternal struct RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_com { uint8_t ___ModelName_0[64]; uint64_t ___ModelKey_1; uint32_t ___VendorId_2; uint32_t ___ModelVersion_3; }; // OVRPlugin/Result struct Result_t80102ADA0C9F41E3C3562D30B25435B240FFF523 { public: // System.Int32 OVRPlugin/Result::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Result_t80102ADA0C9F41E3C3562D30B25435B240FFF523, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SkeletonConstants struct SkeletonConstants_tC17D2022AE4A388216D28391B6CFA26D0882D7A1 { public: // System.Int32 OVRPlugin/SkeletonConstants::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SkeletonConstants_tC17D2022AE4A388216D28391B6CFA26D0882D7A1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SkeletonType struct SkeletonType_tA6B9642BF519E11B92A7A71113FCB5D3412201AF { public: // System.Int32 OVRPlugin/SkeletonType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SkeletonType_tA6B9642BF519E11B92A7A71113FCB5D3412201AF, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SpatialEntityComponentType struct SpatialEntityComponentType_t18290CACAEC202EBC9DC4C48D4BE63C4FFA99ACB { public: // System.Int32 OVRPlugin/SpatialEntityComponentType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpatialEntityComponentType_t18290CACAEC202EBC9DC4C48D4BE63C4FFA99ACB, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SpatialEntityFilterInfoIds struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730 { public: // OVRPlugin/SpatialEntityUuid[] OVRPlugin/SpatialEntityFilterInfoIds::Ids SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093* ___Ids_0; // System.Int32 OVRPlugin/SpatialEntityFilterInfoIds::NumIds int32_t ___NumIds_1; public: inline static int32_t get_offset_of_Ids_0() { return static_cast(offsetof(SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730, ___Ids_0)); } inline SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093* get_Ids_0() const { return ___Ids_0; } inline SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093** get_address_of_Ids_0() { return &___Ids_0; } inline void set_Ids_0(SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093* value) { ___Ids_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Ids_0), (void*)value); } inline static int32_t get_offset_of_NumIds_1() { return static_cast(offsetof(SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730, ___NumIds_1)); } inline int32_t get_NumIds_1() const { return ___NumIds_1; } inline int32_t* get_address_of_NumIds_1() { return &___NumIds_1; } inline void set_NumIds_1(int32_t value) { ___NumIds_1 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/SpatialEntityFilterInfoIds struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke { SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 ___Ids_0[1024]; int32_t ___NumIds_1; }; // Native definition for COM marshalling of OVRPlugin/SpatialEntityFilterInfoIds struct SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com { SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 ___Ids_0[1024]; int32_t ___NumIds_1; }; // OVRPlugin/SpatialEntityQueryActionType struct SpatialEntityQueryActionType_t620945BBA16D2F04531BA08AF683BAC469359951 { public: // System.Int32 OVRPlugin/SpatialEntityQueryActionType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpatialEntityQueryActionType_t620945BBA16D2F04531BA08AF683BAC469359951, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SpatialEntityQueryFilterType struct SpatialEntityQueryFilterType_tA637922365329110AB057269B94ED2017EE69E85 { public: // System.Int32 OVRPlugin/SpatialEntityQueryFilterType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpatialEntityQueryFilterType_tA637922365329110AB057269B94ED2017EE69E85, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SpatialEntityQueryResult struct SpatialEntityQueryResult_tF04F031623489B9D7FA4AFF4728CFC4EA9942F09 { public: // System.UInt64 OVRPlugin/SpatialEntityQueryResult::space uint64_t ___space_0; // OVRPlugin/SpatialEntityUuid OVRPlugin/SpatialEntityQueryResult::uuid SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 ___uuid_1; public: inline static int32_t get_offset_of_space_0() { return static_cast(offsetof(SpatialEntityQueryResult_tF04F031623489B9D7FA4AFF4728CFC4EA9942F09, ___space_0)); } inline uint64_t get_space_0() const { return ___space_0; } inline uint64_t* get_address_of_space_0() { return &___space_0; } inline void set_space_0(uint64_t value) { ___space_0 = value; } inline static int32_t get_offset_of_uuid_1() { return static_cast(offsetof(SpatialEntityQueryResult_tF04F031623489B9D7FA4AFF4728CFC4EA9942F09, ___uuid_1)); } inline SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 get_uuid_1() const { return ___uuid_1; } inline SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 * get_address_of_uuid_1() { return &___uuid_1; } inline void set_uuid_1(SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 value) { ___uuid_1 = value; } }; // OVRPlugin/SpatialEntityQueryType struct SpatialEntityQueryType_tED7FEAD13214AAF70A7F43A92296880BBBB5422E { public: // System.Int32 OVRPlugin/SpatialEntityQueryType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpatialEntityQueryType_tED7FEAD13214AAF70A7F43A92296880BBBB5422E, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SpatialEntityStorageLocation struct SpatialEntityStorageLocation_tE63CBE1415130917724AB64E592971323DBFB80A { public: // System.Int32 OVRPlugin/SpatialEntityStorageLocation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpatialEntityStorageLocation_tE63CBE1415130917724AB64E592971323DBFB80A, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SpatialEntityStoragePersistenceMode struct SpatialEntityStoragePersistenceMode_t3761A64D6383F792EEA3189595D56F8CAEE48E94 { public: // System.Int32 OVRPlugin/SpatialEntityStoragePersistenceMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SpatialEntityStoragePersistenceMode_t3761A64D6383F792EEA3189595D56F8CAEE48E94, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Step struct Step_t88CFE881E61F7CEA95FDFBF0F0F0A5A88EE94D71 { public: // System.Int32 OVRPlugin/Step::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Step_t88CFE881E61F7CEA95FDFBF0F0F0A5A88EE94D71, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SystemHeadset struct SystemHeadset_t2F607D6EB177AEC40A9C040015CA09F1219432F1 { public: // System.Int32 OVRPlugin/SystemHeadset::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SystemHeadset_t2F607D6EB177AEC40A9C040015CA09F1219432F1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/SystemRegion struct SystemRegion_t67DA318A24D0A05D8CF6D2F2E369A45DCC799E72 { public: // System.Int32 OVRPlugin/SystemRegion::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SystemRegion_t67DA318A24D0A05D8CF6D2F2E369A45DCC799E72, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/TextureRectMatrixf struct TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B { public: // UnityEngine.Rect OVRPlugin/TextureRectMatrixf::leftRect Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___leftRect_0; // UnityEngine.Rect OVRPlugin/TextureRectMatrixf::rightRect Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___rightRect_1; // UnityEngine.Vector4 OVRPlugin/TextureRectMatrixf::leftScaleBias Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___leftScaleBias_2; // UnityEngine.Vector4 OVRPlugin/TextureRectMatrixf::rightScaleBias Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___rightScaleBias_3; public: inline static int32_t get_offset_of_leftRect_0() { return static_cast(offsetof(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B, ___leftRect_0)); } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_leftRect_0() const { return ___leftRect_0; } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_leftRect_0() { return &___leftRect_0; } inline void set_leftRect_0(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value) { ___leftRect_0 = value; } inline static int32_t get_offset_of_rightRect_1() { return static_cast(offsetof(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B, ___rightRect_1)); } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_rightRect_1() const { return ___rightRect_1; } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_rightRect_1() { return &___rightRect_1; } inline void set_rightRect_1(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value) { ___rightRect_1 = value; } inline static int32_t get_offset_of_leftScaleBias_2() { return static_cast(offsetof(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B, ___leftScaleBias_2)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_leftScaleBias_2() const { return ___leftScaleBias_2; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_leftScaleBias_2() { return &___leftScaleBias_2; } inline void set_leftScaleBias_2(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___leftScaleBias_2 = value; } inline static int32_t get_offset_of_rightScaleBias_3() { return static_cast(offsetof(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B, ___rightScaleBias_3)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_rightScaleBias_3() const { return ___rightScaleBias_3; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_rightScaleBias_3() { return &___rightScaleBias_3; } inline void set_rightScaleBias_3(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___rightScaleBias_3 = value; } }; // OVRPlugin/TiledMultiResLevel struct TiledMultiResLevel_t9E618A26EBBD80AD555AC72ACE51D69DFE0186F5 { public: // System.Int32 OVRPlugin/TiledMultiResLevel::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TiledMultiResLevel_t9E618A26EBBD80AD555AC72ACE51D69DFE0186F5, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/TrackedKeyboardFlags struct TrackedKeyboardFlags_t4FBF1C4EFC6B7DE5E3DDB65199D70B5E288E44E8 { public: // System.Int32 OVRPlugin/TrackedKeyboardFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackedKeyboardFlags_t4FBF1C4EFC6B7DE5E3DDB65199D70B5E288E44E8, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/TrackedKeyboardPresentationStyles struct TrackedKeyboardPresentationStyles_t3EFAE5FEC8039DDD2589CF66DC9A06921B321CE1 { public: // System.Int32 OVRPlugin/TrackedKeyboardPresentationStyles::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackedKeyboardPresentationStyles_t3EFAE5FEC8039DDD2589CF66DC9A06921B321CE1, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/TrackedKeyboardQueryFlags struct TrackedKeyboardQueryFlags_t0244C8DB5061E0226233EEAB146B431FA853BE84 { public: // System.Int32 OVRPlugin/TrackedKeyboardQueryFlags::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackedKeyboardQueryFlags_t0244C8DB5061E0226233EEAB146B431FA853BE84, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Tracker struct Tracker_tFCC6B9EB71412E5F059684859E92346C95978AA7 { public: // System.Int32 OVRPlugin/Tracker::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(Tracker_tFCC6B9EB71412E5F059684859E92346C95978AA7, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/TrackingConfidence struct TrackingConfidence_t33FDA3D2EA5B7D420BF70D7F0586ACBB4CDCF506 { public: // System.Int32 OVRPlugin/TrackingConfidence::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackingConfidence_t33FDA3D2EA5B7D420BF70D7F0586ACBB4CDCF506, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/TrackingOrigin struct TrackingOrigin_t7C7F936E782956E33439ACA893824FE76981D8CA { public: // System.Int32 OVRPlugin/TrackingOrigin::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackingOrigin_t7C7F936E782956E33439ACA893824FE76981D8CA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/XrApi struct XrApi_t99A5A6FF1A97AB2C5D884A07DD581505BD912ED3 { public: // System.Int32 OVRPlugin/XrApi::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(XrApi_t99A5A6FF1A97AB2C5D884A07DD581505BD912ED3, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRProfile/State struct State_t8431358BFCA017DBF7E046B862CF654DFFCC32BF { public: // System.Int32 OVRProfile/State::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(State_t8431358BFCA017DBF7E046B862CF654DFFCC32BF, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRRaycaster/RaycastHit struct RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB { public: // UnityEngine.UI.Graphic OVRRaycaster/RaycastHit::graphic Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___graphic_0; // UnityEngine.Vector3 OVRRaycaster/RaycastHit::worldPos Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPos_1; // System.Boolean OVRRaycaster/RaycastHit::fromMouse bool ___fromMouse_2; public: inline static int32_t get_offset_of_graphic_0() { return static_cast(offsetof(RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB, ___graphic_0)); } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * get_graphic_0() const { return ___graphic_0; } inline Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 ** get_address_of_graphic_0() { return &___graphic_0; } inline void set_graphic_0(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * value) { ___graphic_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___graphic_0), (void*)value); } inline static int32_t get_offset_of_worldPos_1() { return static_cast(offsetof(RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB, ___worldPos_1)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_worldPos_1() const { return ___worldPos_1; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_worldPos_1() { return &___worldPos_1; } inline void set_worldPos_1(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___worldPos_1 = value; } inline static int32_t get_offset_of_fromMouse_2() { return static_cast(offsetof(RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB, ___fromMouse_2)); } inline bool get_fromMouse_2() const { return ___fromMouse_2; } inline bool* get_address_of_fromMouse_2() { return &___fromMouse_2; } inline void set_fromMouse_2(bool value) { ___fromMouse_2 = value; } }; // Native definition for P/Invoke marshalling of OVRRaycaster/RaycastHit struct RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_pinvoke { Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___graphic_0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPos_1; int32_t ___fromMouse_2; }; // Native definition for COM marshalling of OVRRaycaster/RaycastHit struct RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_com { Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * ___graphic_0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___worldPos_1; int32_t ___fromMouse_2; }; // OVRSkeleton/BoneId struct BoneId_tDF329B86B125C570AD6B5D3B4D9060B62B5A2024 { public: // System.Int32 OVRSkeleton/BoneId::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(BoneId_tDF329B86B125C570AD6B5D3B4D9060B62B5A2024, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRSkeleton/SkeletonType struct SkeletonType_tC89352585315EE6489FBE98C0DA06DC97233B231 { public: // System.Int32 OVRSkeleton/SkeletonType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SkeletonType_tC89352585315EE6489FBE98C0DA06DC97233B231, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRSkeletonRenderer/CapsuleVisualization struct CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28 : public RuntimeObject { public: // UnityEngine.GameObject OVRSkeletonRenderer/CapsuleVisualization::CapsuleGO GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___CapsuleGO_0; // OVRBoneCapsule OVRSkeletonRenderer/CapsuleVisualization::BoneCapsule OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * ___BoneCapsule_1; // UnityEngine.Vector3 OVRSkeletonRenderer/CapsuleVisualization::capsuleScale Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___capsuleScale_2; // UnityEngine.MeshRenderer OVRSkeletonRenderer/CapsuleVisualization::Renderer MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * ___Renderer_3; // UnityEngine.Material OVRSkeletonRenderer/CapsuleVisualization::RenderMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___RenderMaterial_4; // UnityEngine.Material OVRSkeletonRenderer/CapsuleVisualization::SystemGestureMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___SystemGestureMaterial_5; public: inline static int32_t get_offset_of_CapsuleGO_0() { return static_cast(offsetof(CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28, ___CapsuleGO_0)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_CapsuleGO_0() const { return ___CapsuleGO_0; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_CapsuleGO_0() { return &___CapsuleGO_0; } inline void set_CapsuleGO_0(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___CapsuleGO_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___CapsuleGO_0), (void*)value); } inline static int32_t get_offset_of_BoneCapsule_1() { return static_cast(offsetof(CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28, ___BoneCapsule_1)); } inline OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * get_BoneCapsule_1() const { return ___BoneCapsule_1; } inline OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F ** get_address_of_BoneCapsule_1() { return &___BoneCapsule_1; } inline void set_BoneCapsule_1(OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * value) { ___BoneCapsule_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___BoneCapsule_1), (void*)value); } inline static int32_t get_offset_of_capsuleScale_2() { return static_cast(offsetof(CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28, ___capsuleScale_2)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_capsuleScale_2() const { return ___capsuleScale_2; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_capsuleScale_2() { return &___capsuleScale_2; } inline void set_capsuleScale_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___capsuleScale_2 = value; } inline static int32_t get_offset_of_Renderer_3() { return static_cast(offsetof(CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28, ___Renderer_3)); } inline MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * get_Renderer_3() const { return ___Renderer_3; } inline MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B ** get_address_of_Renderer_3() { return &___Renderer_3; } inline void set_Renderer_3(MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * value) { ___Renderer_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Renderer_3), (void*)value); } inline static int32_t get_offset_of_RenderMaterial_4() { return static_cast(offsetof(CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28, ___RenderMaterial_4)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_RenderMaterial_4() const { return ___RenderMaterial_4; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_RenderMaterial_4() { return &___RenderMaterial_4; } inline void set_RenderMaterial_4(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___RenderMaterial_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___RenderMaterial_4), (void*)value); } inline static int32_t get_offset_of_SystemGestureMaterial_5() { return static_cast(offsetof(CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28, ___SystemGestureMaterial_5)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_SystemGestureMaterial_5() const { return ___SystemGestureMaterial_5; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_SystemGestureMaterial_5() { return &___SystemGestureMaterial_5; } inline void set_SystemGestureMaterial_5(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___SystemGestureMaterial_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___SystemGestureMaterial_5), (void*)value); } }; // OVRSkeletonRenderer/ConfidenceBehavior struct ConfidenceBehavior_t42DAED3C823404D693B9675FCF62FC6349F54003 { public: // System.Int32 OVRSkeletonRenderer/ConfidenceBehavior::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ConfidenceBehavior_t42DAED3C823404D693B9675FCF62FC6349F54003, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRSkeletonRenderer/SystemGestureBehavior struct SystemGestureBehavior_tC9A074A5513D2163C0C17D39D32506F258F60631 { public: // System.Int32 OVRSkeletonRenderer/SystemGestureBehavior::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(SystemGestureBehavior_tC9A074A5513D2163C0C17D39D32506F258F60631, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRTrackedKeyboard/KeyboardPresentation struct KeyboardPresentation_t127656AB30AB6224E0C904B627879E2CD7A54C91 { public: // System.Int32 OVRTrackedKeyboard/KeyboardPresentation::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(KeyboardPresentation_t127656AB30AB6224E0C904B627879E2CD7A54C91, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRTrackedKeyboard/TrackedKeyboardState struct TrackedKeyboardState_tD8E7B38631BB2281DEB6205D372963C5C7C05FC0 { public: // System.Int32 OVRTrackedKeyboard/TrackedKeyboardState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(TrackedKeyboardState_tD8E7B38631BB2281DEB6205D372963C5C7C05FC0, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRNetwork/OVRNetworkTcpClient/ConnectionState struct ConnectionState_t86DDB00FAE623BC5C57C388152300902643B06CA { public: // System.Int32 OVRNetwork/OVRNetworkTcpClient/ConnectionState::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(ConnectionState_t86DDB00FAE623BC5C57C388152300902643B06CA, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Media/InputVideoBufferType struct InputVideoBufferType_tA0046A138A464B22A176C79C49D72E01D568B791 { public: // System.Int32 OVRPlugin/Media/InputVideoBufferType::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(InputVideoBufferType_tA0046A138A464B22A176C79C49D72E01D568B791, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Media/MrcActivationMode struct MrcActivationMode_t699AE15334A1AAD416E8DD30285329BE4CCD28B9 { public: // System.Int32 OVRPlugin/Media/MrcActivationMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(MrcActivationMode_t699AE15334A1AAD416E8DD30285329BE4CCD28B9, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // OVRPlugin/Media/PlatformCameraMode struct PlatformCameraMode_tA9188A75EDAABCC213F7E884FC285F207468CDC2 { public: // System.Int32 OVRPlugin/Media/PlatformCameraMode::value__ int32_t ___value___2; public: inline static int32_t get_offset_of_value___2() { return static_cast(offsetof(PlatformCameraMode_tA9188A75EDAABCC213F7E884FC285F207468CDC2, ___value___2)); } inline int32_t get_value___2() const { return ___value___2; } inline int32_t* get_address_of_value___2() { return &___value___2; } inline void set_value___2(int32_t value) { ___value___2 = value; } }; // UnityEngine.AssetBundle struct AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // UnityEngine.Component struct Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // System.Threading.EventWaitHandle struct EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C : public WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842 { public: public: }; // UnityEngine.GameObject struct GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // System.Net.IPAddress struct IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE : public RuntimeObject { public: // System.Int64 System.Net.IPAddress::m_Address int64_t ___m_Address_5; // System.String System.Net.IPAddress::m_ToString String_t* ___m_ToString_6; // System.Net.Sockets.AddressFamily System.Net.IPAddress::m_Family int32_t ___m_Family_10; // System.UInt16[] System.Net.IPAddress::m_Numbers UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* ___m_Numbers_11; // System.Int64 System.Net.IPAddress::m_ScopeId int64_t ___m_ScopeId_12; // System.Int32 System.Net.IPAddress::m_HashCode int32_t ___m_HashCode_13; public: inline static int32_t get_offset_of_m_Address_5() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_Address_5)); } inline int64_t get_m_Address_5() const { return ___m_Address_5; } inline int64_t* get_address_of_m_Address_5() { return &___m_Address_5; } inline void set_m_Address_5(int64_t value) { ___m_Address_5 = value; } inline static int32_t get_offset_of_m_ToString_6() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_ToString_6)); } inline String_t* get_m_ToString_6() const { return ___m_ToString_6; } inline String_t** get_address_of_m_ToString_6() { return &___m_ToString_6; } inline void set_m_ToString_6(String_t* value) { ___m_ToString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ToString_6), (void*)value); } inline static int32_t get_offset_of_m_Family_10() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_Family_10)); } inline int32_t get_m_Family_10() const { return ___m_Family_10; } inline int32_t* get_address_of_m_Family_10() { return &___m_Family_10; } inline void set_m_Family_10(int32_t value) { ___m_Family_10 = value; } inline static int32_t get_offset_of_m_Numbers_11() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_Numbers_11)); } inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* get_m_Numbers_11() const { return ___m_Numbers_11; } inline UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67** get_address_of_m_Numbers_11() { return &___m_Numbers_11; } inline void set_m_Numbers_11(UInt16U5BU5D_t42D35C587B07DCDBCFDADF572C6D733AE85B2A67* value) { ___m_Numbers_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Numbers_11), (void*)value); } inline static int32_t get_offset_of_m_ScopeId_12() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_ScopeId_12)); } inline int64_t get_m_ScopeId_12() const { return ___m_ScopeId_12; } inline int64_t* get_address_of_m_ScopeId_12() { return &___m_ScopeId_12; } inline void set_m_ScopeId_12(int64_t value) { ___m_ScopeId_12 = value; } inline static int32_t get_offset_of_m_HashCode_13() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE, ___m_HashCode_13)); } inline int32_t get_m_HashCode_13() const { return ___m_HashCode_13; } inline int32_t* get_address_of_m_HashCode_13() { return &___m_HashCode_13; } inline void set_m_HashCode_13(int32_t value) { ___m_HashCode_13 = value; } }; // OVRSimpleJSON.JSONNode struct JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B : public RuntimeObject { public: public: }; // UnityEngine.Material struct Material_t8927C00353A72755313F046D0CE85178AE8218EE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // System.MulticastDelegate struct MulticastDelegate_t : public Delegate_t { public: // System.Delegate[] System.MulticastDelegate::delegates DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* ___delegates_11; public: inline static int32_t get_offset_of_delegates_11() { return static_cast(offsetof(MulticastDelegate_t, ___delegates_11)); } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* get_delegates_11() const { return ___delegates_11; } inline DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8** get_address_of_delegates_11() { return &___delegates_11; } inline void set_delegates_11(DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* value) { ___delegates_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___delegates_11), (void*)value); } }; // Native definition for P/Invoke marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_pinvoke : public Delegate_t_marshaled_pinvoke { Delegate_t_marshaled_pinvoke** ___delegates_11; }; // Native definition for COM marshalling of System.MulticastDelegate struct MulticastDelegate_t_marshaled_com : public Delegate_t_marshaled_com { Delegate_t_marshaled_com** ___delegates_11; }; // OVRInput struct OVRInput_t3C43263053F2510BDF75588657A71B87702767FB : public RuntimeObject { public: public: }; // OVRTextureData struct OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 { public: // System.Byte[] OVRTextureData::data ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___data_0; // System.Int32 OVRTextureData::width int32_t ___width_1; // System.Int32 OVRTextureData::height int32_t ___height_2; // OVRTextureFormat OVRTextureData::format int32_t ___format_3; // UnityEngine.TextureFormat OVRTextureData::transcodedFormat int32_t ___transcodedFormat_4; public: inline static int32_t get_offset_of_data_0() { return static_cast(offsetof(OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6, ___data_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_data_0() const { return ___data_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_data_0() { return &___data_0; } inline void set_data_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___data_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_0), (void*)value); } inline static int32_t get_offset_of_width_1() { return static_cast(offsetof(OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6, ___width_1)); } inline int32_t get_width_1() const { return ___width_1; } inline int32_t* get_address_of_width_1() { return &___width_1; } inline void set_width_1(int32_t value) { ___width_1 = value; } inline static int32_t get_offset_of_height_2() { return static_cast(offsetof(OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6, ___height_2)); } inline int32_t get_height_2() const { return ___height_2; } inline int32_t* get_address_of_height_2() { return &___height_2; } inline void set_height_2(int32_t value) { ___height_2 = value; } inline static int32_t get_offset_of_format_3() { return static_cast(offsetof(OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6, ___format_3)); } inline int32_t get_format_3() const { return ___format_3; } inline int32_t* get_address_of_format_3() { return &___format_3; } inline void set_format_3(int32_t value) { ___format_3 = value; } inline static int32_t get_offset_of_transcodedFormat_4() { return static_cast(offsetof(OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6, ___transcodedFormat_4)); } inline int32_t get_transcodedFormat_4() const { return ___transcodedFormat_4; } inline int32_t* get_address_of_transcodedFormat_4() { return &___transcodedFormat_4; } inline void set_transcodedFormat_4(int32_t value) { ___transcodedFormat_4 = value; } }; // Native definition for P/Invoke marshalling of OVRTextureData struct OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6_marshaled_pinvoke { Il2CppSafeArray/*NONE*/* ___data_0; int32_t ___width_1; int32_t ___height_2; int32_t ___format_3; int32_t ___transcodedFormat_4; }; // Native definition for COM marshalling of OVRTextureData struct OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6_marshaled_com { Il2CppSafeArray/*NONE*/* ___data_0; int32_t ___width_1; int32_t ___height_2; int32_t ___format_3; int32_t ___transcodedFormat_4; }; // System.SystemException struct SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 : public Exception_t { public: public: }; // System.Net.Sockets.TcpClient struct TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE : public RuntimeObject { public: // System.Net.Sockets.Socket System.Net.Sockets.TcpClient::m_ClientSocket Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * ___m_ClientSocket_0; // System.Boolean System.Net.Sockets.TcpClient::m_Active bool ___m_Active_1; // System.Net.Sockets.NetworkStream System.Net.Sockets.TcpClient::m_DataStream NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * ___m_DataStream_2; // System.Net.Sockets.AddressFamily System.Net.Sockets.TcpClient::m_Family int32_t ___m_Family_3; // System.Boolean System.Net.Sockets.TcpClient::m_CleanedUp bool ___m_CleanedUp_4; public: inline static int32_t get_offset_of_m_ClientSocket_0() { return static_cast(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_ClientSocket_0)); } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * get_m_ClientSocket_0() const { return ___m_ClientSocket_0; } inline Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 ** get_address_of_m_ClientSocket_0() { return &___m_ClientSocket_0; } inline void set_m_ClientSocket_0(Socket_tD9721140F91BE95BA05B87DD26A855B215D84D09 * value) { ___m_ClientSocket_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ClientSocket_0), (void*)value); } inline static int32_t get_offset_of_m_Active_1() { return static_cast(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_Active_1)); } inline bool get_m_Active_1() const { return ___m_Active_1; } inline bool* get_address_of_m_Active_1() { return &___m_Active_1; } inline void set_m_Active_1(bool value) { ___m_Active_1 = value; } inline static int32_t get_offset_of_m_DataStream_2() { return static_cast(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_DataStream_2)); } inline NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * get_m_DataStream_2() const { return ___m_DataStream_2; } inline NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 ** get_address_of_m_DataStream_2() { return &___m_DataStream_2; } inline void set_m_DataStream_2(NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * value) { ___m_DataStream_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_DataStream_2), (void*)value); } inline static int32_t get_offset_of_m_Family_3() { return static_cast(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_Family_3)); } inline int32_t get_m_Family_3() const { return ___m_Family_3; } inline int32_t* get_address_of_m_Family_3() { return &___m_Family_3; } inline void set_m_Family_3(int32_t value) { ___m_Family_3 = value; } inline static int32_t get_offset_of_m_CleanedUp_4() { return static_cast(offsetof(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE, ___m_CleanedUp_4)); } inline bool get_m_CleanedUp_4() const { return ___m_CleanedUp_4; } inline bool* get_address_of_m_CleanedUp_4() { return &___m_CleanedUp_4; } inline void set_m_CleanedUp_4(bool value) { ___m_CleanedUp_4 = value; } }; // UnityEngine.Texture struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE : public Object_tF2F3778131EFF286AF62B7B013A170F95A91571A { public: public: }; // System.Type struct Type_t : public MemberInfo_t { public: // System.RuntimeTypeHandle System.Type::_impl RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 ____impl_9; public: inline static int32_t get_offset_of__impl_9() { return static_cast(offsetof(Type_t, ____impl_9)); } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 get__impl_9() const { return ____impl_9; } inline RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 * get_address_of__impl_9() { return &____impl_9; } inline void set__impl_9(RuntimeTypeHandle_tC33965ADA3E041E0C94AF05E5CB527B56482CEF9 value) { ____impl_9 = value; } }; // OVRInput/HapticInfo struct HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6 : public RuntimeObject { public: // System.Boolean OVRInput/HapticInfo::playingHaptics bool ___playingHaptics_0; // System.Single OVRInput/HapticInfo::hapticsDurationPlayed float ___hapticsDurationPlayed_1; // System.Single OVRInput/HapticInfo::hapticsDuration float ___hapticsDuration_2; // System.Single OVRInput/HapticInfo::hapticAmplitude float ___hapticAmplitude_3; // UnityEngine.XR.XRNode OVRInput/HapticInfo::node int32_t ___node_4; public: inline static int32_t get_offset_of_playingHaptics_0() { return static_cast(offsetof(HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6, ___playingHaptics_0)); } inline bool get_playingHaptics_0() const { return ___playingHaptics_0; } inline bool* get_address_of_playingHaptics_0() { return &___playingHaptics_0; } inline void set_playingHaptics_0(bool value) { ___playingHaptics_0 = value; } inline static int32_t get_offset_of_hapticsDurationPlayed_1() { return static_cast(offsetof(HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6, ___hapticsDurationPlayed_1)); } inline float get_hapticsDurationPlayed_1() const { return ___hapticsDurationPlayed_1; } inline float* get_address_of_hapticsDurationPlayed_1() { return &___hapticsDurationPlayed_1; } inline void set_hapticsDurationPlayed_1(float value) { ___hapticsDurationPlayed_1 = value; } inline static int32_t get_offset_of_hapticsDuration_2() { return static_cast(offsetof(HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6, ___hapticsDuration_2)); } inline float get_hapticsDuration_2() const { return ___hapticsDuration_2; } inline float* get_address_of_hapticsDuration_2() { return &___hapticsDuration_2; } inline void set_hapticsDuration_2(float value) { ___hapticsDuration_2 = value; } inline static int32_t get_offset_of_hapticAmplitude_3() { return static_cast(offsetof(HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6, ___hapticAmplitude_3)); } inline float get_hapticAmplitude_3() const { return ___hapticAmplitude_3; } inline float* get_address_of_hapticAmplitude_3() { return &___hapticAmplitude_3; } inline void set_hapticAmplitude_3(float value) { ___hapticAmplitude_3 = value; } inline static int32_t get_offset_of_node_4() { return static_cast(offsetof(HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6, ___node_4)); } inline int32_t get_node_4() const { return ___node_4; } inline int32_t* get_address_of_node_4() { return &___node_4; } inline void set_node_4(int32_t value) { ___node_4 = value; } }; // OVRInput/OVRControllerBase struct OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF : public RuntimeObject { public: // OVRInput/Controller OVRInput/OVRControllerBase::controllerType int32_t ___controllerType_0; // OVRInput/OVRControllerBase/VirtualButtonMap OVRInput/OVRControllerBase::buttonMap VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * ___buttonMap_1; // OVRInput/OVRControllerBase/VirtualTouchMap OVRInput/OVRControllerBase::touchMap VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * ___touchMap_2; // OVRInput/OVRControllerBase/VirtualNearTouchMap OVRInput/OVRControllerBase::nearTouchMap VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * ___nearTouchMap_3; // OVRInput/OVRControllerBase/VirtualAxis1DMap OVRInput/OVRControllerBase::axis1DMap VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * ___axis1DMap_4; // OVRInput/OVRControllerBase/VirtualAxis2DMap OVRInput/OVRControllerBase::axis2DMap VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * ___axis2DMap_5; // OVRPlugin/ControllerState4 OVRInput/OVRControllerBase::previousState ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE ___previousState_6; // OVRPlugin/ControllerState4 OVRInput/OVRControllerBase::currentState ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE ___currentState_7; // System.Boolean OVRInput/OVRControllerBase::shouldApplyDeadzone bool ___shouldApplyDeadzone_8; public: inline static int32_t get_offset_of_controllerType_0() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___controllerType_0)); } inline int32_t get_controllerType_0() const { return ___controllerType_0; } inline int32_t* get_address_of_controllerType_0() { return &___controllerType_0; } inline void set_controllerType_0(int32_t value) { ___controllerType_0 = value; } inline static int32_t get_offset_of_buttonMap_1() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___buttonMap_1)); } inline VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * get_buttonMap_1() const { return ___buttonMap_1; } inline VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF ** get_address_of_buttonMap_1() { return &___buttonMap_1; } inline void set_buttonMap_1(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * value) { ___buttonMap_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___buttonMap_1), (void*)value); } inline static int32_t get_offset_of_touchMap_2() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___touchMap_2)); } inline VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * get_touchMap_2() const { return ___touchMap_2; } inline VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC ** get_address_of_touchMap_2() { return &___touchMap_2; } inline void set_touchMap_2(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * value) { ___touchMap_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___touchMap_2), (void*)value); } inline static int32_t get_offset_of_nearTouchMap_3() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___nearTouchMap_3)); } inline VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * get_nearTouchMap_3() const { return ___nearTouchMap_3; } inline VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A ** get_address_of_nearTouchMap_3() { return &___nearTouchMap_3; } inline void set_nearTouchMap_3(VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * value) { ___nearTouchMap_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___nearTouchMap_3), (void*)value); } inline static int32_t get_offset_of_axis1DMap_4() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___axis1DMap_4)); } inline VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * get_axis1DMap_4() const { return ___axis1DMap_4; } inline VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 ** get_address_of_axis1DMap_4() { return &___axis1DMap_4; } inline void set_axis1DMap_4(VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * value) { ___axis1DMap_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___axis1DMap_4), (void*)value); } inline static int32_t get_offset_of_axis2DMap_5() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___axis2DMap_5)); } inline VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * get_axis2DMap_5() const { return ___axis2DMap_5; } inline VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA ** get_address_of_axis2DMap_5() { return &___axis2DMap_5; } inline void set_axis2DMap_5(VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * value) { ___axis2DMap_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___axis2DMap_5), (void*)value); } inline static int32_t get_offset_of_previousState_6() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___previousState_6)); } inline ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE get_previousState_6() const { return ___previousState_6; } inline ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * get_address_of_previousState_6() { return &___previousState_6; } inline void set_previousState_6(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE value) { ___previousState_6 = value; } inline static int32_t get_offset_of_currentState_7() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___currentState_7)); } inline ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE get_currentState_7() const { return ___currentState_7; } inline ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * get_address_of_currentState_7() { return &___currentState_7; } inline void set_currentState_7(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE value) { ___currentState_7 = value; } inline static int32_t get_offset_of_shouldApplyDeadzone_8() { return static_cast(offsetof(OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF, ___shouldApplyDeadzone_8)); } inline bool get_shouldApplyDeadzone_8() const { return ___shouldApplyDeadzone_8; } inline bool* get_address_of_shouldApplyDeadzone_8() { return &___shouldApplyDeadzone_8; } inline void set_shouldApplyDeadzone_8(bool value) { ___shouldApplyDeadzone_8 = value; } }; // OVRInput/OpenVRControllerDetails struct OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 { public: // OVR.OpenVR.VRControllerState_t OVRInput/OpenVRControllerDetails::state VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A ___state_0; // OVRInput/OpenVRController OVRInput/OpenVRControllerDetails::controllerType uint64_t ___controllerType_1; // System.UInt32 OVRInput/OpenVRControllerDetails::deviceID uint32_t ___deviceID_2; // UnityEngine.Vector3 OVRInput/OpenVRControllerDetails::localPosition Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___localPosition_3; // UnityEngine.Quaternion OVRInput/OpenVRControllerDetails::localOrientation Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___localOrientation_4; public: inline static int32_t get_offset_of_state_0() { return static_cast(offsetof(OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5, ___state_0)); } inline VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A get_state_0() const { return ___state_0; } inline VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A * get_address_of_state_0() { return &___state_0; } inline void set_state_0(VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A value) { ___state_0 = value; } inline static int32_t get_offset_of_controllerType_1() { return static_cast(offsetof(OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5, ___controllerType_1)); } inline uint64_t get_controllerType_1() const { return ___controllerType_1; } inline uint64_t* get_address_of_controllerType_1() { return &___controllerType_1; } inline void set_controllerType_1(uint64_t value) { ___controllerType_1 = value; } inline static int32_t get_offset_of_deviceID_2() { return static_cast(offsetof(OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5, ___deviceID_2)); } inline uint32_t get_deviceID_2() const { return ___deviceID_2; } inline uint32_t* get_address_of_deviceID_2() { return &___deviceID_2; } inline void set_deviceID_2(uint32_t value) { ___deviceID_2 = value; } inline static int32_t get_offset_of_localPosition_3() { return static_cast(offsetof(OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5, ___localPosition_3)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_localPosition_3() const { return ___localPosition_3; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_localPosition_3() { return &___localPosition_3; } inline void set_localPosition_3(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___localPosition_3 = value; } inline static int32_t get_offset_of_localOrientation_4() { return static_cast(offsetof(OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5, ___localOrientation_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_localOrientation_4() const { return ___localOrientation_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_localOrientation_4() { return &___localOrientation_4; } inline void set_localOrientation_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___localOrientation_4 = value; } }; // OVRKeyboard/TrackedKeyboardInfo struct TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 { public: // System.String OVRKeyboard/TrackedKeyboardInfo::Name String_t* ___Name_0; // System.UInt64 OVRKeyboard/TrackedKeyboardInfo::Identifier uint64_t ___Identifier_1; // UnityEngine.Vector3 OVRKeyboard/TrackedKeyboardInfo::Dimensions Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___Dimensions_2; // OVRPlugin/TrackedKeyboardFlags OVRKeyboard/TrackedKeyboardInfo::KeyboardFlags int32_t ___KeyboardFlags_3; // OVRPlugin/TrackedKeyboardPresentationStyles OVRKeyboard/TrackedKeyboardInfo::SupportedPresentationStyles int32_t ___SupportedPresentationStyles_4; public: inline static int32_t get_offset_of_Name_0() { return static_cast(offsetof(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9, ___Name_0)); } inline String_t* get_Name_0() const { return ___Name_0; } inline String_t** get_address_of_Name_0() { return &___Name_0; } inline void set_Name_0(String_t* value) { ___Name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value); } inline static int32_t get_offset_of_Identifier_1() { return static_cast(offsetof(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9, ___Identifier_1)); } inline uint64_t get_Identifier_1() const { return ___Identifier_1; } inline uint64_t* get_address_of_Identifier_1() { return &___Identifier_1; } inline void set_Identifier_1(uint64_t value) { ___Identifier_1 = value; } inline static int32_t get_offset_of_Dimensions_2() { return static_cast(offsetof(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9, ___Dimensions_2)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_Dimensions_2() const { return ___Dimensions_2; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_Dimensions_2() { return &___Dimensions_2; } inline void set_Dimensions_2(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___Dimensions_2 = value; } inline static int32_t get_offset_of_KeyboardFlags_3() { return static_cast(offsetof(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9, ___KeyboardFlags_3)); } inline int32_t get_KeyboardFlags_3() const { return ___KeyboardFlags_3; } inline int32_t* get_address_of_KeyboardFlags_3() { return &___KeyboardFlags_3; } inline void set_KeyboardFlags_3(int32_t value) { ___KeyboardFlags_3 = value; } inline static int32_t get_offset_of_SupportedPresentationStyles_4() { return static_cast(offsetof(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9, ___SupportedPresentationStyles_4)); } inline int32_t get_SupportedPresentationStyles_4() const { return ___SupportedPresentationStyles_4; } inline int32_t* get_address_of_SupportedPresentationStyles_4() { return &___SupportedPresentationStyles_4; } inline void set_SupportedPresentationStyles_4(int32_t value) { ___SupportedPresentationStyles_4 = value; } }; // Native definition for P/Invoke marshalling of OVRKeyboard/TrackedKeyboardInfo struct TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_pinvoke { char* ___Name_0; uint64_t ___Identifier_1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___Dimensions_2; int32_t ___KeyboardFlags_3; int32_t ___SupportedPresentationStyles_4; }; // Native definition for COM marshalling of OVRKeyboard/TrackedKeyboardInfo struct TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_com { Il2CppChar* ___Name_0; uint64_t ___Identifier_1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___Dimensions_2; int32_t ___KeyboardFlags_3; int32_t ___SupportedPresentationStyles_4; }; // OVRPlugin/AppPerfStats struct AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5 { public: // OVRPlugin/AppPerfFrameStats[] OVRPlugin/AppPerfStats::FrameStats AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A* ___FrameStats_0; // System.Int32 OVRPlugin/AppPerfStats::FrameStatsCount int32_t ___FrameStatsCount_1; // OVRPlugin/Bool OVRPlugin/AppPerfStats::AnyFrameStatsDropped int32_t ___AnyFrameStatsDropped_2; // System.Single OVRPlugin/AppPerfStats::AdaptiveGpuPerformanceScale float ___AdaptiveGpuPerformanceScale_3; public: inline static int32_t get_offset_of_FrameStats_0() { return static_cast(offsetof(AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5, ___FrameStats_0)); } inline AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A* get_FrameStats_0() const { return ___FrameStats_0; } inline AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A** get_address_of_FrameStats_0() { return &___FrameStats_0; } inline void set_FrameStats_0(AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A* value) { ___FrameStats_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FrameStats_0), (void*)value); } inline static int32_t get_offset_of_FrameStatsCount_1() { return static_cast(offsetof(AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5, ___FrameStatsCount_1)); } inline int32_t get_FrameStatsCount_1() const { return ___FrameStatsCount_1; } inline int32_t* get_address_of_FrameStatsCount_1() { return &___FrameStatsCount_1; } inline void set_FrameStatsCount_1(int32_t value) { ___FrameStatsCount_1 = value; } inline static int32_t get_offset_of_AnyFrameStatsDropped_2() { return static_cast(offsetof(AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5, ___AnyFrameStatsDropped_2)); } inline int32_t get_AnyFrameStatsDropped_2() const { return ___AnyFrameStatsDropped_2; } inline int32_t* get_address_of_AnyFrameStatsDropped_2() { return &___AnyFrameStatsDropped_2; } inline void set_AnyFrameStatsDropped_2(int32_t value) { ___AnyFrameStatsDropped_2 = value; } inline static int32_t get_offset_of_AdaptiveGpuPerformanceScale_3() { return static_cast(offsetof(AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5, ___AdaptiveGpuPerformanceScale_3)); } inline float get_AdaptiveGpuPerformanceScale_3() const { return ___AdaptiveGpuPerformanceScale_3; } inline float* get_address_of_AdaptiveGpuPerformanceScale_3() { return &___AdaptiveGpuPerformanceScale_3; } inline void set_AdaptiveGpuPerformanceScale_3(float value) { ___AdaptiveGpuPerformanceScale_3 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/AppPerfStats struct AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke { AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 ___FrameStats_0[5]; int32_t ___FrameStatsCount_1; int32_t ___AnyFrameStatsDropped_2; float ___AdaptiveGpuPerformanceScale_3; }; // Native definition for COM marshalling of OVRPlugin/AppPerfStats struct AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_com { AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 ___FrameStats_0[5]; int32_t ___FrameStatsCount_1; int32_t ___AnyFrameStatsDropped_2; float ___AdaptiveGpuPerformanceScale_3; }; // OVRPlugin/Bone struct Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 { public: // OVRPlugin/BoneId OVRPlugin/Bone::Id int32_t ___Id_0; // System.Int16 OVRPlugin/Bone::ParentBoneIndex int16_t ___ParentBoneIndex_1; // OVRPlugin/Posef OVRPlugin/Bone::Pose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___Pose_2; public: inline static int32_t get_offset_of_Id_0() { return static_cast(offsetof(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500, ___Id_0)); } inline int32_t get_Id_0() const { return ___Id_0; } inline int32_t* get_address_of_Id_0() { return &___Id_0; } inline void set_Id_0(int32_t value) { ___Id_0 = value; } inline static int32_t get_offset_of_ParentBoneIndex_1() { return static_cast(offsetof(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500, ___ParentBoneIndex_1)); } inline int16_t get_ParentBoneIndex_1() const { return ___ParentBoneIndex_1; } inline int16_t* get_address_of_ParentBoneIndex_1() { return &___ParentBoneIndex_1; } inline void set_ParentBoneIndex_1(int16_t value) { ___ParentBoneIndex_1 = value; } inline static int32_t get_offset_of_Pose_2() { return static_cast(offsetof(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500, ___Pose_2)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_Pose_2() const { return ___Pose_2; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_Pose_2() { return &___Pose_2; } inline void set_Pose_2(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___Pose_2 = value; } }; // OVRPlugin/BoundaryGeometry struct BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470 { public: // OVRPlugin/BoundaryType OVRPlugin/BoundaryGeometry::BoundaryType int32_t ___BoundaryType_0; // OVRPlugin/Vector3f[] OVRPlugin/BoundaryGeometry::Points Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* ___Points_1; // System.Int32 OVRPlugin/BoundaryGeometry::PointsCount int32_t ___PointsCount_2; public: inline static int32_t get_offset_of_BoundaryType_0() { return static_cast(offsetof(BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470, ___BoundaryType_0)); } inline int32_t get_BoundaryType_0() const { return ___BoundaryType_0; } inline int32_t* get_address_of_BoundaryType_0() { return &___BoundaryType_0; } inline void set_BoundaryType_0(int32_t value) { ___BoundaryType_0 = value; } inline static int32_t get_offset_of_Points_1() { return static_cast(offsetof(BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470, ___Points_1)); } inline Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* get_Points_1() const { return ___Points_1; } inline Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1** get_address_of_Points_1() { return &___Points_1; } inline void set_Points_1(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* value) { ___Points_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Points_1), (void*)value); } inline static int32_t get_offset_of_PointsCount_2() { return static_cast(offsetof(BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470, ___PointsCount_2)); } inline int32_t get_PointsCount_2() const { return ___PointsCount_2; } inline int32_t* get_address_of_PointsCount_2() { return &___PointsCount_2; } inline void set_PointsCount_2(int32_t value) { ___PointsCount_2 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/BoundaryGeometry struct BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke { int32_t ___BoundaryType_0; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Points_1[256]; int32_t ___PointsCount_2; }; // Native definition for COM marshalling of OVRPlugin/BoundaryGeometry struct BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_com { int32_t ___BoundaryType_0; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Points_1[256]; int32_t ___PointsCount_2; }; // OVRPlugin/BoundaryTestResult struct BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 { public: // OVRPlugin/Bool OVRPlugin/BoundaryTestResult::IsTriggering int32_t ___IsTriggering_0; // System.Single OVRPlugin/BoundaryTestResult::ClosestDistance float ___ClosestDistance_1; // OVRPlugin/Vector3f OVRPlugin/BoundaryTestResult::ClosestPoint Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___ClosestPoint_2; // OVRPlugin/Vector3f OVRPlugin/BoundaryTestResult::ClosestPointNormal Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___ClosestPointNormal_3; public: inline static int32_t get_offset_of_IsTriggering_0() { return static_cast(offsetof(BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47, ___IsTriggering_0)); } inline int32_t get_IsTriggering_0() const { return ___IsTriggering_0; } inline int32_t* get_address_of_IsTriggering_0() { return &___IsTriggering_0; } inline void set_IsTriggering_0(int32_t value) { ___IsTriggering_0 = value; } inline static int32_t get_offset_of_ClosestDistance_1() { return static_cast(offsetof(BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47, ___ClosestDistance_1)); } inline float get_ClosestDistance_1() const { return ___ClosestDistance_1; } inline float* get_address_of_ClosestDistance_1() { return &___ClosestDistance_1; } inline void set_ClosestDistance_1(float value) { ___ClosestDistance_1 = value; } inline static int32_t get_offset_of_ClosestPoint_2() { return static_cast(offsetof(BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47, ___ClosestPoint_2)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_ClosestPoint_2() const { return ___ClosestPoint_2; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_ClosestPoint_2() { return &___ClosestPoint_2; } inline void set_ClosestPoint_2(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___ClosestPoint_2 = value; } inline static int32_t get_offset_of_ClosestPointNormal_3() { return static_cast(offsetof(BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47, ___ClosestPointNormal_3)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_ClosestPointNormal_3() const { return ___ClosestPointNormal_3; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_ClosestPointNormal_3() { return &___ClosestPointNormal_3; } inline void set_ClosestPointNormal_3(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___ClosestPointNormal_3 = value; } }; // OVRPlugin/CameraExtrinsics struct CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF { public: // OVRPlugin/Bool OVRPlugin/CameraExtrinsics::IsValid int32_t ___IsValid_0; // System.Double OVRPlugin/CameraExtrinsics::LastChangedTimeSeconds double ___LastChangedTimeSeconds_1; // OVRPlugin/CameraStatus OVRPlugin/CameraExtrinsics::CameraStatusData int32_t ___CameraStatusData_2; // OVRPlugin/Node OVRPlugin/CameraExtrinsics::AttachedToNode int32_t ___AttachedToNode_3; // OVRPlugin/Posef OVRPlugin/CameraExtrinsics::RelativePose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___RelativePose_4; public: inline static int32_t get_offset_of_IsValid_0() { return static_cast(offsetof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF, ___IsValid_0)); } inline int32_t get_IsValid_0() const { return ___IsValid_0; } inline int32_t* get_address_of_IsValid_0() { return &___IsValid_0; } inline void set_IsValid_0(int32_t value) { ___IsValid_0 = value; } inline static int32_t get_offset_of_LastChangedTimeSeconds_1() { return static_cast(offsetof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF, ___LastChangedTimeSeconds_1)); } inline double get_LastChangedTimeSeconds_1() const { return ___LastChangedTimeSeconds_1; } inline double* get_address_of_LastChangedTimeSeconds_1() { return &___LastChangedTimeSeconds_1; } inline void set_LastChangedTimeSeconds_1(double value) { ___LastChangedTimeSeconds_1 = value; } inline static int32_t get_offset_of_CameraStatusData_2() { return static_cast(offsetof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF, ___CameraStatusData_2)); } inline int32_t get_CameraStatusData_2() const { return ___CameraStatusData_2; } inline int32_t* get_address_of_CameraStatusData_2() { return &___CameraStatusData_2; } inline void set_CameraStatusData_2(int32_t value) { ___CameraStatusData_2 = value; } inline static int32_t get_offset_of_AttachedToNode_3() { return static_cast(offsetof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF, ___AttachedToNode_3)); } inline int32_t get_AttachedToNode_3() const { return ___AttachedToNode_3; } inline int32_t* get_address_of_AttachedToNode_3() { return &___AttachedToNode_3; } inline void set_AttachedToNode_3(int32_t value) { ___AttachedToNode_3 = value; } inline static int32_t get_offset_of_RelativePose_4() { return static_cast(offsetof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF, ___RelativePose_4)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_RelativePose_4() const { return ___RelativePose_4; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_RelativePose_4() { return &___RelativePose_4; } inline void set_RelativePose_4(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___RelativePose_4 = value; } }; // OVRPlugin/CameraIntrinsics struct CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA { public: // OVRPlugin/Bool OVRPlugin/CameraIntrinsics::IsValid int32_t ___IsValid_0; // System.Double OVRPlugin/CameraIntrinsics::LastChangedTimeSeconds double ___LastChangedTimeSeconds_1; // OVRPlugin/Fovf OVRPlugin/CameraIntrinsics::FOVPort Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF ___FOVPort_2; // System.Single OVRPlugin/CameraIntrinsics::VirtualNearPlaneDistanceMeters float ___VirtualNearPlaneDistanceMeters_3; // System.Single OVRPlugin/CameraIntrinsics::VirtualFarPlaneDistanceMeters float ___VirtualFarPlaneDistanceMeters_4; // OVRPlugin/Sizei OVRPlugin/CameraIntrinsics::ImageSensorPixelResolution Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___ImageSensorPixelResolution_5; public: inline static int32_t get_offset_of_IsValid_0() { return static_cast(offsetof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA, ___IsValid_0)); } inline int32_t get_IsValid_0() const { return ___IsValid_0; } inline int32_t* get_address_of_IsValid_0() { return &___IsValid_0; } inline void set_IsValid_0(int32_t value) { ___IsValid_0 = value; } inline static int32_t get_offset_of_LastChangedTimeSeconds_1() { return static_cast(offsetof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA, ___LastChangedTimeSeconds_1)); } inline double get_LastChangedTimeSeconds_1() const { return ___LastChangedTimeSeconds_1; } inline double* get_address_of_LastChangedTimeSeconds_1() { return &___LastChangedTimeSeconds_1; } inline void set_LastChangedTimeSeconds_1(double value) { ___LastChangedTimeSeconds_1 = value; } inline static int32_t get_offset_of_FOVPort_2() { return static_cast(offsetof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA, ___FOVPort_2)); } inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF get_FOVPort_2() const { return ___FOVPort_2; } inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF * get_address_of_FOVPort_2() { return &___FOVPort_2; } inline void set_FOVPort_2(Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF value) { ___FOVPort_2 = value; } inline static int32_t get_offset_of_VirtualNearPlaneDistanceMeters_3() { return static_cast(offsetof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA, ___VirtualNearPlaneDistanceMeters_3)); } inline float get_VirtualNearPlaneDistanceMeters_3() const { return ___VirtualNearPlaneDistanceMeters_3; } inline float* get_address_of_VirtualNearPlaneDistanceMeters_3() { return &___VirtualNearPlaneDistanceMeters_3; } inline void set_VirtualNearPlaneDistanceMeters_3(float value) { ___VirtualNearPlaneDistanceMeters_3 = value; } inline static int32_t get_offset_of_VirtualFarPlaneDistanceMeters_4() { return static_cast(offsetof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA, ___VirtualFarPlaneDistanceMeters_4)); } inline float get_VirtualFarPlaneDistanceMeters_4() const { return ___VirtualFarPlaneDistanceMeters_4; } inline float* get_address_of_VirtualFarPlaneDistanceMeters_4() { return &___VirtualFarPlaneDistanceMeters_4; } inline void set_VirtualFarPlaneDistanceMeters_4(float value) { ___VirtualFarPlaneDistanceMeters_4 = value; } inline static int32_t get_offset_of_ImageSensorPixelResolution_5() { return static_cast(offsetof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA, ___ImageSensorPixelResolution_5)); } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 get_ImageSensorPixelResolution_5() const { return ___ImageSensorPixelResolution_5; } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * get_address_of_ImageSensorPixelResolution_5() { return &___ImageSensorPixelResolution_5; } inline void set_ImageSensorPixelResolution_5(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 value) { ___ImageSensorPixelResolution_5 = value; } }; // OVRPlugin/EventDataBuffer struct EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9 { public: // OVRPlugin/EventType OVRPlugin/EventDataBuffer::EventType int32_t ___EventType_0; // System.Byte[] OVRPlugin/EventDataBuffer::EventData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___EventData_1; public: inline static int32_t get_offset_of_EventType_0() { return static_cast(offsetof(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9, ___EventType_0)); } inline int32_t get_EventType_0() const { return ___EventType_0; } inline int32_t* get_address_of_EventType_0() { return &___EventType_0; } inline void set_EventType_0(int32_t value) { ___EventType_0 = value; } inline static int32_t get_offset_of_EventData_1() { return static_cast(offsetof(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9, ___EventData_1)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_EventData_1() const { return ___EventData_1; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_EventData_1() { return &___EventData_1; } inline void set_EventData_1(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___EventData_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___EventData_1), (void*)value); } }; // Native definition for P/Invoke marshalling of OVRPlugin/EventDataBuffer struct EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke { int32_t ___EventType_0; uint8_t ___EventData_1[4000]; }; // Native definition for COM marshalling of OVRPlugin/EventDataBuffer struct EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_com { int32_t ___EventType_0; uint8_t ___EventData_1[4000]; }; // OVRPlugin/HandState struct HandState_t5377A12318B95003B2BB256777077FE3D05D0090 { public: // OVRPlugin/HandStatus OVRPlugin/HandState::Status int32_t ___Status_0; // OVRPlugin/Posef OVRPlugin/HandState::RootPose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___RootPose_1; // OVRPlugin/Quatf[] OVRPlugin/HandState::BoneRotations QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* ___BoneRotations_2; // OVRPlugin/HandFingerPinch OVRPlugin/HandState::Pinches int32_t ___Pinches_3; // System.Single[] OVRPlugin/HandState::PinchStrength SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___PinchStrength_4; // OVRPlugin/Posef OVRPlugin/HandState::PointerPose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___PointerPose_5; // System.Single OVRPlugin/HandState::HandScale float ___HandScale_6; // OVRPlugin/TrackingConfidence OVRPlugin/HandState::HandConfidence int32_t ___HandConfidence_7; // OVRPlugin/TrackingConfidence[] OVRPlugin/HandState::FingerConfidences TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322* ___FingerConfidences_8; // System.Double OVRPlugin/HandState::RequestedTimeStamp double ___RequestedTimeStamp_9; // System.Double OVRPlugin/HandState::SampleTimeStamp double ___SampleTimeStamp_10; public: inline static int32_t get_offset_of_Status_0() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___Status_0)); } inline int32_t get_Status_0() const { return ___Status_0; } inline int32_t* get_address_of_Status_0() { return &___Status_0; } inline void set_Status_0(int32_t value) { ___Status_0 = value; } inline static int32_t get_offset_of_RootPose_1() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___RootPose_1)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_RootPose_1() const { return ___RootPose_1; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_RootPose_1() { return &___RootPose_1; } inline void set_RootPose_1(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___RootPose_1 = value; } inline static int32_t get_offset_of_BoneRotations_2() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___BoneRotations_2)); } inline QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* get_BoneRotations_2() const { return ___BoneRotations_2; } inline QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5** get_address_of_BoneRotations_2() { return &___BoneRotations_2; } inline void set_BoneRotations_2(QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* value) { ___BoneRotations_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___BoneRotations_2), (void*)value); } inline static int32_t get_offset_of_Pinches_3() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___Pinches_3)); } inline int32_t get_Pinches_3() const { return ___Pinches_3; } inline int32_t* get_address_of_Pinches_3() { return &___Pinches_3; } inline void set_Pinches_3(int32_t value) { ___Pinches_3 = value; } inline static int32_t get_offset_of_PinchStrength_4() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___PinchStrength_4)); } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* get_PinchStrength_4() const { return ___PinchStrength_4; } inline SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA** get_address_of_PinchStrength_4() { return &___PinchStrength_4; } inline void set_PinchStrength_4(SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* value) { ___PinchStrength_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___PinchStrength_4), (void*)value); } inline static int32_t get_offset_of_PointerPose_5() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___PointerPose_5)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_PointerPose_5() const { return ___PointerPose_5; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_PointerPose_5() { return &___PointerPose_5; } inline void set_PointerPose_5(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___PointerPose_5 = value; } inline static int32_t get_offset_of_HandScale_6() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___HandScale_6)); } inline float get_HandScale_6() const { return ___HandScale_6; } inline float* get_address_of_HandScale_6() { return &___HandScale_6; } inline void set_HandScale_6(float value) { ___HandScale_6 = value; } inline static int32_t get_offset_of_HandConfidence_7() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___HandConfidence_7)); } inline int32_t get_HandConfidence_7() const { return ___HandConfidence_7; } inline int32_t* get_address_of_HandConfidence_7() { return &___HandConfidence_7; } inline void set_HandConfidence_7(int32_t value) { ___HandConfidence_7 = value; } inline static int32_t get_offset_of_FingerConfidences_8() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___FingerConfidences_8)); } inline TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322* get_FingerConfidences_8() const { return ___FingerConfidences_8; } inline TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322** get_address_of_FingerConfidences_8() { return &___FingerConfidences_8; } inline void set_FingerConfidences_8(TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322* value) { ___FingerConfidences_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___FingerConfidences_8), (void*)value); } inline static int32_t get_offset_of_RequestedTimeStamp_9() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___RequestedTimeStamp_9)); } inline double get_RequestedTimeStamp_9() const { return ___RequestedTimeStamp_9; } inline double* get_address_of_RequestedTimeStamp_9() { return &___RequestedTimeStamp_9; } inline void set_RequestedTimeStamp_9(double value) { ___RequestedTimeStamp_9 = value; } inline static int32_t get_offset_of_SampleTimeStamp_10() { return static_cast(offsetof(HandState_t5377A12318B95003B2BB256777077FE3D05D0090, ___SampleTimeStamp_10)); } inline double get_SampleTimeStamp_10() const { return ___SampleTimeStamp_10; } inline double* get_address_of_SampleTimeStamp_10() { return &___SampleTimeStamp_10; } inline void set_SampleTimeStamp_10(double value) { ___SampleTimeStamp_10 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/HandState struct HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_pinvoke { int32_t ___Status_0; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___RootPose_1; Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * ___BoneRotations_2; int32_t ___Pinches_3; Il2CppSafeArray/*NONE*/* ___PinchStrength_4; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___PointerPose_5; float ___HandScale_6; int32_t ___HandConfidence_7; int32_t* ___FingerConfidences_8; double ___RequestedTimeStamp_9; double ___SampleTimeStamp_10; }; // Native definition for COM marshalling of OVRPlugin/HandState struct HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_com { int32_t ___Status_0; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___RootPose_1; Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * ___BoneRotations_2; int32_t ___Pinches_3; Il2CppSafeArray/*NONE*/* ___PinchStrength_4; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___PointerPose_5; float ___HandScale_6; int32_t ___HandConfidence_7; int32_t* ___FingerConfidences_8; double ___RequestedTimeStamp_9; double ___SampleTimeStamp_10; }; // OVRPlugin/HandStateInternal struct HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C { public: // OVRPlugin/HandStatus OVRPlugin/HandStateInternal::Status int32_t ___Status_0; // OVRPlugin/Posef OVRPlugin/HandStateInternal::RootPose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___RootPose_1; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_0 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_0_2; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_1 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_1_3; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_2 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_2_4; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_3 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_3_5; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_4 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_4_6; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_5 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_5_7; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_6 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_6_8; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_7 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_7_9; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_8 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_8_10; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_9 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_9_11; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_10 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_10_12; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_11 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_11_13; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_12 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_12_14; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_13 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_13_15; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_14 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_14_16; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_15 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_15_17; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_16 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_16_18; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_17 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_17_19; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_18 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_18_20; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_19 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_19_21; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_20 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_20_22; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_21 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_21_23; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_22 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_22_24; // OVRPlugin/Quatf OVRPlugin/HandStateInternal::BoneRotations_23 Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___BoneRotations_23_25; // OVRPlugin/HandFingerPinch OVRPlugin/HandStateInternal::Pinches int32_t ___Pinches_26; // System.Single OVRPlugin/HandStateInternal::PinchStrength_0 float ___PinchStrength_0_27; // System.Single OVRPlugin/HandStateInternal::PinchStrength_1 float ___PinchStrength_1_28; // System.Single OVRPlugin/HandStateInternal::PinchStrength_2 float ___PinchStrength_2_29; // System.Single OVRPlugin/HandStateInternal::PinchStrength_3 float ___PinchStrength_3_30; // System.Single OVRPlugin/HandStateInternal::PinchStrength_4 float ___PinchStrength_4_31; // OVRPlugin/Posef OVRPlugin/HandStateInternal::PointerPose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___PointerPose_32; // System.Single OVRPlugin/HandStateInternal::HandScale float ___HandScale_33; // OVRPlugin/TrackingConfidence OVRPlugin/HandStateInternal::HandConfidence int32_t ___HandConfidence_34; // OVRPlugin/TrackingConfidence OVRPlugin/HandStateInternal::FingerConfidences_0 int32_t ___FingerConfidences_0_35; // OVRPlugin/TrackingConfidence OVRPlugin/HandStateInternal::FingerConfidences_1 int32_t ___FingerConfidences_1_36; // OVRPlugin/TrackingConfidence OVRPlugin/HandStateInternal::FingerConfidences_2 int32_t ___FingerConfidences_2_37; // OVRPlugin/TrackingConfidence OVRPlugin/HandStateInternal::FingerConfidences_3 int32_t ___FingerConfidences_3_38; // OVRPlugin/TrackingConfidence OVRPlugin/HandStateInternal::FingerConfidences_4 int32_t ___FingerConfidences_4_39; // System.Double OVRPlugin/HandStateInternal::RequestedTimeStamp double ___RequestedTimeStamp_40; // System.Double OVRPlugin/HandStateInternal::SampleTimeStamp double ___SampleTimeStamp_41; public: inline static int32_t get_offset_of_Status_0() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___Status_0)); } inline int32_t get_Status_0() const { return ___Status_0; } inline int32_t* get_address_of_Status_0() { return &___Status_0; } inline void set_Status_0(int32_t value) { ___Status_0 = value; } inline static int32_t get_offset_of_RootPose_1() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___RootPose_1)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_RootPose_1() const { return ___RootPose_1; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_RootPose_1() { return &___RootPose_1; } inline void set_RootPose_1(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___RootPose_1 = value; } inline static int32_t get_offset_of_BoneRotations_0_2() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_0_2)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_0_2() const { return ___BoneRotations_0_2; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_0_2() { return &___BoneRotations_0_2; } inline void set_BoneRotations_0_2(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_0_2 = value; } inline static int32_t get_offset_of_BoneRotations_1_3() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_1_3)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_1_3() const { return ___BoneRotations_1_3; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_1_3() { return &___BoneRotations_1_3; } inline void set_BoneRotations_1_3(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_1_3 = value; } inline static int32_t get_offset_of_BoneRotations_2_4() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_2_4)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_2_4() const { return ___BoneRotations_2_4; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_2_4() { return &___BoneRotations_2_4; } inline void set_BoneRotations_2_4(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_2_4 = value; } inline static int32_t get_offset_of_BoneRotations_3_5() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_3_5)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_3_5() const { return ___BoneRotations_3_5; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_3_5() { return &___BoneRotations_3_5; } inline void set_BoneRotations_3_5(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_3_5 = value; } inline static int32_t get_offset_of_BoneRotations_4_6() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_4_6)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_4_6() const { return ___BoneRotations_4_6; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_4_6() { return &___BoneRotations_4_6; } inline void set_BoneRotations_4_6(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_4_6 = value; } inline static int32_t get_offset_of_BoneRotations_5_7() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_5_7)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_5_7() const { return ___BoneRotations_5_7; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_5_7() { return &___BoneRotations_5_7; } inline void set_BoneRotations_5_7(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_5_7 = value; } inline static int32_t get_offset_of_BoneRotations_6_8() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_6_8)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_6_8() const { return ___BoneRotations_6_8; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_6_8() { return &___BoneRotations_6_8; } inline void set_BoneRotations_6_8(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_6_8 = value; } inline static int32_t get_offset_of_BoneRotations_7_9() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_7_9)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_7_9() const { return ___BoneRotations_7_9; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_7_9() { return &___BoneRotations_7_9; } inline void set_BoneRotations_7_9(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_7_9 = value; } inline static int32_t get_offset_of_BoneRotations_8_10() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_8_10)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_8_10() const { return ___BoneRotations_8_10; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_8_10() { return &___BoneRotations_8_10; } inline void set_BoneRotations_8_10(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_8_10 = value; } inline static int32_t get_offset_of_BoneRotations_9_11() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_9_11)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_9_11() const { return ___BoneRotations_9_11; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_9_11() { return &___BoneRotations_9_11; } inline void set_BoneRotations_9_11(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_9_11 = value; } inline static int32_t get_offset_of_BoneRotations_10_12() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_10_12)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_10_12() const { return ___BoneRotations_10_12; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_10_12() { return &___BoneRotations_10_12; } inline void set_BoneRotations_10_12(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_10_12 = value; } inline static int32_t get_offset_of_BoneRotations_11_13() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_11_13)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_11_13() const { return ___BoneRotations_11_13; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_11_13() { return &___BoneRotations_11_13; } inline void set_BoneRotations_11_13(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_11_13 = value; } inline static int32_t get_offset_of_BoneRotations_12_14() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_12_14)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_12_14() const { return ___BoneRotations_12_14; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_12_14() { return &___BoneRotations_12_14; } inline void set_BoneRotations_12_14(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_12_14 = value; } inline static int32_t get_offset_of_BoneRotations_13_15() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_13_15)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_13_15() const { return ___BoneRotations_13_15; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_13_15() { return &___BoneRotations_13_15; } inline void set_BoneRotations_13_15(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_13_15 = value; } inline static int32_t get_offset_of_BoneRotations_14_16() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_14_16)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_14_16() const { return ___BoneRotations_14_16; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_14_16() { return &___BoneRotations_14_16; } inline void set_BoneRotations_14_16(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_14_16 = value; } inline static int32_t get_offset_of_BoneRotations_15_17() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_15_17)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_15_17() const { return ___BoneRotations_15_17; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_15_17() { return &___BoneRotations_15_17; } inline void set_BoneRotations_15_17(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_15_17 = value; } inline static int32_t get_offset_of_BoneRotations_16_18() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_16_18)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_16_18() const { return ___BoneRotations_16_18; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_16_18() { return &___BoneRotations_16_18; } inline void set_BoneRotations_16_18(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_16_18 = value; } inline static int32_t get_offset_of_BoneRotations_17_19() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_17_19)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_17_19() const { return ___BoneRotations_17_19; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_17_19() { return &___BoneRotations_17_19; } inline void set_BoneRotations_17_19(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_17_19 = value; } inline static int32_t get_offset_of_BoneRotations_18_20() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_18_20)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_18_20() const { return ___BoneRotations_18_20; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_18_20() { return &___BoneRotations_18_20; } inline void set_BoneRotations_18_20(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_18_20 = value; } inline static int32_t get_offset_of_BoneRotations_19_21() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_19_21)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_19_21() const { return ___BoneRotations_19_21; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_19_21() { return &___BoneRotations_19_21; } inline void set_BoneRotations_19_21(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_19_21 = value; } inline static int32_t get_offset_of_BoneRotations_20_22() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_20_22)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_20_22() const { return ___BoneRotations_20_22; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_20_22() { return &___BoneRotations_20_22; } inline void set_BoneRotations_20_22(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_20_22 = value; } inline static int32_t get_offset_of_BoneRotations_21_23() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_21_23)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_21_23() const { return ___BoneRotations_21_23; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_21_23() { return &___BoneRotations_21_23; } inline void set_BoneRotations_21_23(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_21_23 = value; } inline static int32_t get_offset_of_BoneRotations_22_24() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_22_24)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_22_24() const { return ___BoneRotations_22_24; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_22_24() { return &___BoneRotations_22_24; } inline void set_BoneRotations_22_24(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_22_24 = value; } inline static int32_t get_offset_of_BoneRotations_23_25() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___BoneRotations_23_25)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_BoneRotations_23_25() const { return ___BoneRotations_23_25; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_BoneRotations_23_25() { return &___BoneRotations_23_25; } inline void set_BoneRotations_23_25(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___BoneRotations_23_25 = value; } inline static int32_t get_offset_of_Pinches_26() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___Pinches_26)); } inline int32_t get_Pinches_26() const { return ___Pinches_26; } inline int32_t* get_address_of_Pinches_26() { return &___Pinches_26; } inline void set_Pinches_26(int32_t value) { ___Pinches_26 = value; } inline static int32_t get_offset_of_PinchStrength_0_27() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___PinchStrength_0_27)); } inline float get_PinchStrength_0_27() const { return ___PinchStrength_0_27; } inline float* get_address_of_PinchStrength_0_27() { return &___PinchStrength_0_27; } inline void set_PinchStrength_0_27(float value) { ___PinchStrength_0_27 = value; } inline static int32_t get_offset_of_PinchStrength_1_28() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___PinchStrength_1_28)); } inline float get_PinchStrength_1_28() const { return ___PinchStrength_1_28; } inline float* get_address_of_PinchStrength_1_28() { return &___PinchStrength_1_28; } inline void set_PinchStrength_1_28(float value) { ___PinchStrength_1_28 = value; } inline static int32_t get_offset_of_PinchStrength_2_29() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___PinchStrength_2_29)); } inline float get_PinchStrength_2_29() const { return ___PinchStrength_2_29; } inline float* get_address_of_PinchStrength_2_29() { return &___PinchStrength_2_29; } inline void set_PinchStrength_2_29(float value) { ___PinchStrength_2_29 = value; } inline static int32_t get_offset_of_PinchStrength_3_30() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___PinchStrength_3_30)); } inline float get_PinchStrength_3_30() const { return ___PinchStrength_3_30; } inline float* get_address_of_PinchStrength_3_30() { return &___PinchStrength_3_30; } inline void set_PinchStrength_3_30(float value) { ___PinchStrength_3_30 = value; } inline static int32_t get_offset_of_PinchStrength_4_31() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___PinchStrength_4_31)); } inline float get_PinchStrength_4_31() const { return ___PinchStrength_4_31; } inline float* get_address_of_PinchStrength_4_31() { return &___PinchStrength_4_31; } inline void set_PinchStrength_4_31(float value) { ___PinchStrength_4_31 = value; } inline static int32_t get_offset_of_PointerPose_32() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___PointerPose_32)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_PointerPose_32() const { return ___PointerPose_32; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_PointerPose_32() { return &___PointerPose_32; } inline void set_PointerPose_32(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___PointerPose_32 = value; } inline static int32_t get_offset_of_HandScale_33() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___HandScale_33)); } inline float get_HandScale_33() const { return ___HandScale_33; } inline float* get_address_of_HandScale_33() { return &___HandScale_33; } inline void set_HandScale_33(float value) { ___HandScale_33 = value; } inline static int32_t get_offset_of_HandConfidence_34() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___HandConfidence_34)); } inline int32_t get_HandConfidence_34() const { return ___HandConfidence_34; } inline int32_t* get_address_of_HandConfidence_34() { return &___HandConfidence_34; } inline void set_HandConfidence_34(int32_t value) { ___HandConfidence_34 = value; } inline static int32_t get_offset_of_FingerConfidences_0_35() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___FingerConfidences_0_35)); } inline int32_t get_FingerConfidences_0_35() const { return ___FingerConfidences_0_35; } inline int32_t* get_address_of_FingerConfidences_0_35() { return &___FingerConfidences_0_35; } inline void set_FingerConfidences_0_35(int32_t value) { ___FingerConfidences_0_35 = value; } inline static int32_t get_offset_of_FingerConfidences_1_36() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___FingerConfidences_1_36)); } inline int32_t get_FingerConfidences_1_36() const { return ___FingerConfidences_1_36; } inline int32_t* get_address_of_FingerConfidences_1_36() { return &___FingerConfidences_1_36; } inline void set_FingerConfidences_1_36(int32_t value) { ___FingerConfidences_1_36 = value; } inline static int32_t get_offset_of_FingerConfidences_2_37() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___FingerConfidences_2_37)); } inline int32_t get_FingerConfidences_2_37() const { return ___FingerConfidences_2_37; } inline int32_t* get_address_of_FingerConfidences_2_37() { return &___FingerConfidences_2_37; } inline void set_FingerConfidences_2_37(int32_t value) { ___FingerConfidences_2_37 = value; } inline static int32_t get_offset_of_FingerConfidences_3_38() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___FingerConfidences_3_38)); } inline int32_t get_FingerConfidences_3_38() const { return ___FingerConfidences_3_38; } inline int32_t* get_address_of_FingerConfidences_3_38() { return &___FingerConfidences_3_38; } inline void set_FingerConfidences_3_38(int32_t value) { ___FingerConfidences_3_38 = value; } inline static int32_t get_offset_of_FingerConfidences_4_39() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___FingerConfidences_4_39)); } inline int32_t get_FingerConfidences_4_39() const { return ___FingerConfidences_4_39; } inline int32_t* get_address_of_FingerConfidences_4_39() { return &___FingerConfidences_4_39; } inline void set_FingerConfidences_4_39(int32_t value) { ___FingerConfidences_4_39 = value; } inline static int32_t get_offset_of_RequestedTimeStamp_40() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___RequestedTimeStamp_40)); } inline double get_RequestedTimeStamp_40() const { return ___RequestedTimeStamp_40; } inline double* get_address_of_RequestedTimeStamp_40() { return &___RequestedTimeStamp_40; } inline void set_RequestedTimeStamp_40(double value) { ___RequestedTimeStamp_40 = value; } inline static int32_t get_offset_of_SampleTimeStamp_41() { return static_cast(offsetof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C, ___SampleTimeStamp_41)); } inline double get_SampleTimeStamp_41() const { return ___SampleTimeStamp_41; } inline double* get_address_of_SampleTimeStamp_41() { return &___SampleTimeStamp_41; } inline void set_SampleTimeStamp_41(double value) { ___SampleTimeStamp_41 = value; } }; // OVRPlugin/InsightPassthroughStyle struct InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031 { public: // OVRPlugin/InsightPassthroughStyleFlags OVRPlugin/InsightPassthroughStyle::Flags int32_t ___Flags_0; // System.Single OVRPlugin/InsightPassthroughStyle::TextureOpacityFactor float ___TextureOpacityFactor_1; // OVRPlugin/Colorf OVRPlugin/InsightPassthroughStyle::EdgeColor Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81 ___EdgeColor_2; // OVRPlugin/InsightPassthroughColorMapType OVRPlugin/InsightPassthroughStyle::TextureColorMapType int32_t ___TextureColorMapType_3; // System.UInt32 OVRPlugin/InsightPassthroughStyle::TextureColorMapDataSize uint32_t ___TextureColorMapDataSize_4; // System.IntPtr OVRPlugin/InsightPassthroughStyle::TextureColorMapData intptr_t ___TextureColorMapData_5; public: inline static int32_t get_offset_of_Flags_0() { return static_cast(offsetof(InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031, ___Flags_0)); } inline int32_t get_Flags_0() const { return ___Flags_0; } inline int32_t* get_address_of_Flags_0() { return &___Flags_0; } inline void set_Flags_0(int32_t value) { ___Flags_0 = value; } inline static int32_t get_offset_of_TextureOpacityFactor_1() { return static_cast(offsetof(InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031, ___TextureOpacityFactor_1)); } inline float get_TextureOpacityFactor_1() const { return ___TextureOpacityFactor_1; } inline float* get_address_of_TextureOpacityFactor_1() { return &___TextureOpacityFactor_1; } inline void set_TextureOpacityFactor_1(float value) { ___TextureOpacityFactor_1 = value; } inline static int32_t get_offset_of_EdgeColor_2() { return static_cast(offsetof(InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031, ___EdgeColor_2)); } inline Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81 get_EdgeColor_2() const { return ___EdgeColor_2; } inline Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81 * get_address_of_EdgeColor_2() { return &___EdgeColor_2; } inline void set_EdgeColor_2(Colorf_tB639A8E41097085AB2F453FC1A3A86B54F016D81 value) { ___EdgeColor_2 = value; } inline static int32_t get_offset_of_TextureColorMapType_3() { return static_cast(offsetof(InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031, ___TextureColorMapType_3)); } inline int32_t get_TextureColorMapType_3() const { return ___TextureColorMapType_3; } inline int32_t* get_address_of_TextureColorMapType_3() { return &___TextureColorMapType_3; } inline void set_TextureColorMapType_3(int32_t value) { ___TextureColorMapType_3 = value; } inline static int32_t get_offset_of_TextureColorMapDataSize_4() { return static_cast(offsetof(InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031, ___TextureColorMapDataSize_4)); } inline uint32_t get_TextureColorMapDataSize_4() const { return ___TextureColorMapDataSize_4; } inline uint32_t* get_address_of_TextureColorMapDataSize_4() { return &___TextureColorMapDataSize_4; } inline void set_TextureColorMapDataSize_4(uint32_t value) { ___TextureColorMapDataSize_4 = value; } inline static int32_t get_offset_of_TextureColorMapData_5() { return static_cast(offsetof(InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031, ___TextureColorMapData_5)); } inline intptr_t get_TextureColorMapData_5() const { return ___TextureColorMapData_5; } inline intptr_t* get_address_of_TextureColorMapData_5() { return &___TextureColorMapData_5; } inline void set_TextureColorMapData_5(intptr_t value) { ___TextureColorMapData_5 = value; } }; // OVRPlugin/KeyboardDescription struct KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E { public: // System.Byte[] OVRPlugin/KeyboardDescription::Name ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___Name_0; // System.UInt64 OVRPlugin/KeyboardDescription::TrackedKeyboardId uint64_t ___TrackedKeyboardId_1; // OVRPlugin/Vector3f OVRPlugin/KeyboardDescription::Dimensions Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Dimensions_2; // OVRPlugin/TrackedKeyboardFlags OVRPlugin/KeyboardDescription::KeyboardFlags int32_t ___KeyboardFlags_3; // OVRPlugin/TrackedKeyboardPresentationStyles OVRPlugin/KeyboardDescription::SupportedPresentationStyles int32_t ___SupportedPresentationStyles_4; public: inline static int32_t get_offset_of_Name_0() { return static_cast(offsetof(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E, ___Name_0)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_Name_0() const { return ___Name_0; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_Name_0() { return &___Name_0; } inline void set_Name_0(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___Name_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Name_0), (void*)value); } inline static int32_t get_offset_of_TrackedKeyboardId_1() { return static_cast(offsetof(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E, ___TrackedKeyboardId_1)); } inline uint64_t get_TrackedKeyboardId_1() const { return ___TrackedKeyboardId_1; } inline uint64_t* get_address_of_TrackedKeyboardId_1() { return &___TrackedKeyboardId_1; } inline void set_TrackedKeyboardId_1(uint64_t value) { ___TrackedKeyboardId_1 = value; } inline static int32_t get_offset_of_Dimensions_2() { return static_cast(offsetof(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E, ___Dimensions_2)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_Dimensions_2() const { return ___Dimensions_2; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_Dimensions_2() { return &___Dimensions_2; } inline void set_Dimensions_2(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___Dimensions_2 = value; } inline static int32_t get_offset_of_KeyboardFlags_3() { return static_cast(offsetof(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E, ___KeyboardFlags_3)); } inline int32_t get_KeyboardFlags_3() const { return ___KeyboardFlags_3; } inline int32_t* get_address_of_KeyboardFlags_3() { return &___KeyboardFlags_3; } inline void set_KeyboardFlags_3(int32_t value) { ___KeyboardFlags_3 = value; } inline static int32_t get_offset_of_SupportedPresentationStyles_4() { return static_cast(offsetof(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E, ___SupportedPresentationStyles_4)); } inline int32_t get_SupportedPresentationStyles_4() const { return ___SupportedPresentationStyles_4; } inline int32_t* get_address_of_SupportedPresentationStyles_4() { return &___SupportedPresentationStyles_4; } inline void set_SupportedPresentationStyles_4(int32_t value) { ___SupportedPresentationStyles_4 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/KeyboardDescription struct KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke { uint8_t ___Name_0[128]; uint64_t ___TrackedKeyboardId_1; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Dimensions_2; int32_t ___KeyboardFlags_3; int32_t ___SupportedPresentationStyles_4; }; // Native definition for COM marshalling of OVRPlugin/KeyboardDescription struct KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_com { uint8_t ___Name_0[128]; uint64_t ___TrackedKeyboardId_1; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Dimensions_2; int32_t ___KeyboardFlags_3; int32_t ___SupportedPresentationStyles_4; }; // OVRPlugin/LayerDesc struct LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 { public: // OVRPlugin/OverlayShape OVRPlugin/LayerDesc::Shape int32_t ___Shape_0; // OVRPlugin/LayerLayout OVRPlugin/LayerDesc::Layout int32_t ___Layout_1; // OVRPlugin/Sizei OVRPlugin/LayerDesc::TextureSize Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___TextureSize_2; // System.Int32 OVRPlugin/LayerDesc::MipLevels int32_t ___MipLevels_3; // System.Int32 OVRPlugin/LayerDesc::SampleCount int32_t ___SampleCount_4; // OVRPlugin/EyeTextureFormat OVRPlugin/LayerDesc::Format int32_t ___Format_5; // System.Int32 OVRPlugin/LayerDesc::LayerFlags int32_t ___LayerFlags_6; // OVRPlugin/Fovf[] OVRPlugin/LayerDesc::Fov FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D* ___Fov_7; // OVRPlugin/Rectf[] OVRPlugin/LayerDesc::VisibleRect RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F* ___VisibleRect_8; // OVRPlugin/Sizei OVRPlugin/LayerDesc::MaxViewportSize Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___MaxViewportSize_9; // OVRPlugin/EyeTextureFormat OVRPlugin/LayerDesc::DepthFormat int32_t ___DepthFormat_10; // OVRPlugin/EyeTextureFormat OVRPlugin/LayerDesc::MotionVectorFormat int32_t ___MotionVectorFormat_11; // OVRPlugin/EyeTextureFormat OVRPlugin/LayerDesc::MotionVectorDepthFormat int32_t ___MotionVectorDepthFormat_12; // OVRPlugin/Sizei OVRPlugin/LayerDesc::MotionVectorTextureSize Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___MotionVectorTextureSize_13; public: inline static int32_t get_offset_of_Shape_0() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___Shape_0)); } inline int32_t get_Shape_0() const { return ___Shape_0; } inline int32_t* get_address_of_Shape_0() { return &___Shape_0; } inline void set_Shape_0(int32_t value) { ___Shape_0 = value; } inline static int32_t get_offset_of_Layout_1() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___Layout_1)); } inline int32_t get_Layout_1() const { return ___Layout_1; } inline int32_t* get_address_of_Layout_1() { return &___Layout_1; } inline void set_Layout_1(int32_t value) { ___Layout_1 = value; } inline static int32_t get_offset_of_TextureSize_2() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___TextureSize_2)); } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 get_TextureSize_2() const { return ___TextureSize_2; } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * get_address_of_TextureSize_2() { return &___TextureSize_2; } inline void set_TextureSize_2(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 value) { ___TextureSize_2 = value; } inline static int32_t get_offset_of_MipLevels_3() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___MipLevels_3)); } inline int32_t get_MipLevels_3() const { return ___MipLevels_3; } inline int32_t* get_address_of_MipLevels_3() { return &___MipLevels_3; } inline void set_MipLevels_3(int32_t value) { ___MipLevels_3 = value; } inline static int32_t get_offset_of_SampleCount_4() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___SampleCount_4)); } inline int32_t get_SampleCount_4() const { return ___SampleCount_4; } inline int32_t* get_address_of_SampleCount_4() { return &___SampleCount_4; } inline void set_SampleCount_4(int32_t value) { ___SampleCount_4 = value; } inline static int32_t get_offset_of_Format_5() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___Format_5)); } inline int32_t get_Format_5() const { return ___Format_5; } inline int32_t* get_address_of_Format_5() { return &___Format_5; } inline void set_Format_5(int32_t value) { ___Format_5 = value; } inline static int32_t get_offset_of_LayerFlags_6() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___LayerFlags_6)); } inline int32_t get_LayerFlags_6() const { return ___LayerFlags_6; } inline int32_t* get_address_of_LayerFlags_6() { return &___LayerFlags_6; } inline void set_LayerFlags_6(int32_t value) { ___LayerFlags_6 = value; } inline static int32_t get_offset_of_Fov_7() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___Fov_7)); } inline FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D* get_Fov_7() const { return ___Fov_7; } inline FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D** get_address_of_Fov_7() { return &___Fov_7; } inline void set_Fov_7(FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D* value) { ___Fov_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___Fov_7), (void*)value); } inline static int32_t get_offset_of_VisibleRect_8() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___VisibleRect_8)); } inline RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F* get_VisibleRect_8() const { return ___VisibleRect_8; } inline RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F** get_address_of_VisibleRect_8() { return &___VisibleRect_8; } inline void set_VisibleRect_8(RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F* value) { ___VisibleRect_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___VisibleRect_8), (void*)value); } inline static int32_t get_offset_of_MaxViewportSize_9() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___MaxViewportSize_9)); } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 get_MaxViewportSize_9() const { return ___MaxViewportSize_9; } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * get_address_of_MaxViewportSize_9() { return &___MaxViewportSize_9; } inline void set_MaxViewportSize_9(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 value) { ___MaxViewportSize_9 = value; } inline static int32_t get_offset_of_DepthFormat_10() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___DepthFormat_10)); } inline int32_t get_DepthFormat_10() const { return ___DepthFormat_10; } inline int32_t* get_address_of_DepthFormat_10() { return &___DepthFormat_10; } inline void set_DepthFormat_10(int32_t value) { ___DepthFormat_10 = value; } inline static int32_t get_offset_of_MotionVectorFormat_11() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___MotionVectorFormat_11)); } inline int32_t get_MotionVectorFormat_11() const { return ___MotionVectorFormat_11; } inline int32_t* get_address_of_MotionVectorFormat_11() { return &___MotionVectorFormat_11; } inline void set_MotionVectorFormat_11(int32_t value) { ___MotionVectorFormat_11 = value; } inline static int32_t get_offset_of_MotionVectorDepthFormat_12() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___MotionVectorDepthFormat_12)); } inline int32_t get_MotionVectorDepthFormat_12() const { return ___MotionVectorDepthFormat_12; } inline int32_t* get_address_of_MotionVectorDepthFormat_12() { return &___MotionVectorDepthFormat_12; } inline void set_MotionVectorDepthFormat_12(int32_t value) { ___MotionVectorDepthFormat_12 = value; } inline static int32_t get_offset_of_MotionVectorTextureSize_13() { return static_cast(offsetof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780, ___MotionVectorTextureSize_13)); } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 get_MotionVectorTextureSize_13() const { return ___MotionVectorTextureSize_13; } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * get_address_of_MotionVectorTextureSize_13() { return &___MotionVectorTextureSize_13; } inline void set_MotionVectorTextureSize_13(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 value) { ___MotionVectorTextureSize_13 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/LayerDesc struct LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke { int32_t ___Shape_0; int32_t ___Layout_1; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___TextureSize_2; int32_t ___MipLevels_3; int32_t ___SampleCount_4; int32_t ___Format_5; int32_t ___LayerFlags_6; Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF ___Fov_7[2]; Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 ___VisibleRect_8[2]; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___MaxViewportSize_9; int32_t ___DepthFormat_10; int32_t ___MotionVectorFormat_11; int32_t ___MotionVectorDepthFormat_12; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___MotionVectorTextureSize_13; }; // Native definition for COM marshalling of OVRPlugin/LayerDesc struct LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_com { int32_t ___Shape_0; int32_t ___Layout_1; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___TextureSize_2; int32_t ___MipLevels_3; int32_t ___SampleCount_4; int32_t ___Format_5; int32_t ___LayerFlags_6; Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF ___Fov_7[2]; Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 ___VisibleRect_8[2]; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___MaxViewportSize_9; int32_t ___DepthFormat_10; int32_t ___MotionVectorFormat_11; int32_t ___MotionVectorDepthFormat_12; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___MotionVectorTextureSize_13; }; // OVRPlugin/LayerSubmit struct LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44 { public: // System.Int32 OVRPlugin/LayerSubmit::LayerId int32_t ___LayerId_0; // System.Int32 OVRPlugin/LayerSubmit::TextureStage int32_t ___TextureStage_1; // OVRPlugin/Recti[] OVRPlugin/LayerSubmit::ViewportRect RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00* ___ViewportRect_2; // OVRPlugin/Posef OVRPlugin/LayerSubmit::Pose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___Pose_3; // System.Int32 OVRPlugin/LayerSubmit::LayerSubmitFlags int32_t ___LayerSubmitFlags_4; public: inline static int32_t get_offset_of_LayerId_0() { return static_cast(offsetof(LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44, ___LayerId_0)); } inline int32_t get_LayerId_0() const { return ___LayerId_0; } inline int32_t* get_address_of_LayerId_0() { return &___LayerId_0; } inline void set_LayerId_0(int32_t value) { ___LayerId_0 = value; } inline static int32_t get_offset_of_TextureStage_1() { return static_cast(offsetof(LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44, ___TextureStage_1)); } inline int32_t get_TextureStage_1() const { return ___TextureStage_1; } inline int32_t* get_address_of_TextureStage_1() { return &___TextureStage_1; } inline void set_TextureStage_1(int32_t value) { ___TextureStage_1 = value; } inline static int32_t get_offset_of_ViewportRect_2() { return static_cast(offsetof(LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44, ___ViewportRect_2)); } inline RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00* get_ViewportRect_2() const { return ___ViewportRect_2; } inline RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00** get_address_of_ViewportRect_2() { return &___ViewportRect_2; } inline void set_ViewportRect_2(RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00* value) { ___ViewportRect_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___ViewportRect_2), (void*)value); } inline static int32_t get_offset_of_Pose_3() { return static_cast(offsetof(LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44, ___Pose_3)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_Pose_3() const { return ___Pose_3; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_Pose_3() { return &___Pose_3; } inline void set_Pose_3(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___Pose_3 = value; } inline static int32_t get_offset_of_LayerSubmitFlags_4() { return static_cast(offsetof(LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44, ___LayerSubmitFlags_4)); } inline int32_t get_LayerSubmitFlags_4() const { return ___LayerSubmitFlags_4; } inline int32_t* get_address_of_LayerSubmitFlags_4() { return &___LayerSubmitFlags_4; } inline void set_LayerSubmitFlags_4(int32_t value) { ___LayerSubmitFlags_4 = value; } }; // Native definition for P/Invoke marshalling of OVRPlugin/LayerSubmit struct LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshaled_pinvoke { int32_t ___LayerId_0; int32_t ___TextureStage_1; Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B ___ViewportRect_2[2]; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___Pose_3; int32_t ___LayerSubmitFlags_4; }; // Native definition for COM marshalling of OVRPlugin/LayerSubmit struct LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshaled_com { int32_t ___LayerId_0; int32_t ___TextureStage_1; Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B ___ViewportRect_2[2]; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___Pose_3; int32_t ___LayerSubmitFlags_4; }; // OVRPlugin/Mesh struct Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E : public RuntimeObject { public: // OVRPlugin/MeshType OVRPlugin/Mesh::Type int32_t ___Type_0; // System.UInt32 OVRPlugin/Mesh::NumVertices uint32_t ___NumVertices_1; // System.UInt32 OVRPlugin/Mesh::NumIndices uint32_t ___NumIndices_2; // OVRPlugin/Vector3f[] OVRPlugin/Mesh::VertexPositions Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* ___VertexPositions_3; // System.Int16[] OVRPlugin/Mesh::Indices Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* ___Indices_4; // OVRPlugin/Vector3f[] OVRPlugin/Mesh::VertexNormals Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* ___VertexNormals_5; // OVRPlugin/Vector2f[] OVRPlugin/Mesh::VertexUV0 Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81* ___VertexUV0_6; // OVRPlugin/Vector4s[] OVRPlugin/Mesh::BlendIndices Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4* ___BlendIndices_7; // OVRPlugin/Vector4f[] OVRPlugin/Mesh::BlendWeights Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4* ___BlendWeights_8; public: inline static int32_t get_offset_of_Type_0() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___Type_0)); } inline int32_t get_Type_0() const { return ___Type_0; } inline int32_t* get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(int32_t value) { ___Type_0 = value; } inline static int32_t get_offset_of_NumVertices_1() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___NumVertices_1)); } inline uint32_t get_NumVertices_1() const { return ___NumVertices_1; } inline uint32_t* get_address_of_NumVertices_1() { return &___NumVertices_1; } inline void set_NumVertices_1(uint32_t value) { ___NumVertices_1 = value; } inline static int32_t get_offset_of_NumIndices_2() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___NumIndices_2)); } inline uint32_t get_NumIndices_2() const { return ___NumIndices_2; } inline uint32_t* get_address_of_NumIndices_2() { return &___NumIndices_2; } inline void set_NumIndices_2(uint32_t value) { ___NumIndices_2 = value; } inline static int32_t get_offset_of_VertexPositions_3() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___VertexPositions_3)); } inline Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* get_VertexPositions_3() const { return ___VertexPositions_3; } inline Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1** get_address_of_VertexPositions_3() { return &___VertexPositions_3; } inline void set_VertexPositions_3(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* value) { ___VertexPositions_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___VertexPositions_3), (void*)value); } inline static int32_t get_offset_of_Indices_4() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___Indices_4)); } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* get_Indices_4() const { return ___Indices_4; } inline Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD** get_address_of_Indices_4() { return &___Indices_4; } inline void set_Indices_4(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD* value) { ___Indices_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___Indices_4), (void*)value); } inline static int32_t get_offset_of_VertexNormals_5() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___VertexNormals_5)); } inline Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* get_VertexNormals_5() const { return ___VertexNormals_5; } inline Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1** get_address_of_VertexNormals_5() { return &___VertexNormals_5; } inline void set_VertexNormals_5(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1* value) { ___VertexNormals_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___VertexNormals_5), (void*)value); } inline static int32_t get_offset_of_VertexUV0_6() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___VertexUV0_6)); } inline Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81* get_VertexUV0_6() const { return ___VertexUV0_6; } inline Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81** get_address_of_VertexUV0_6() { return &___VertexUV0_6; } inline void set_VertexUV0_6(Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81* value) { ___VertexUV0_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___VertexUV0_6), (void*)value); } inline static int32_t get_offset_of_BlendIndices_7() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___BlendIndices_7)); } inline Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4* get_BlendIndices_7() const { return ___BlendIndices_7; } inline Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4** get_address_of_BlendIndices_7() { return &___BlendIndices_7; } inline void set_BlendIndices_7(Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4* value) { ___BlendIndices_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___BlendIndices_7), (void*)value); } inline static int32_t get_offset_of_BlendWeights_8() { return static_cast(offsetof(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E, ___BlendWeights_8)); } inline Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4* get_BlendWeights_8() const { return ___BlendWeights_8; } inline Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4** get_address_of_BlendWeights_8() { return &___BlendWeights_8; } inline void set_BlendWeights_8(Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4* value) { ___BlendWeights_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___BlendWeights_8), (void*)value); } }; // Native definition for P/Invoke marshalling of OVRPlugin/Mesh struct Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_pinvoke { int32_t ___Type_0; uint32_t ___NumVertices_1; uint32_t ___NumIndices_2; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___VertexPositions_3[3000]; int16_t ___Indices_4[18000]; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___VertexNormals_5[3000]; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___VertexUV0_6[3000]; Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 ___BlendIndices_7[3000]; Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE ___BlendWeights_8[3000]; }; // Native definition for COM marshalling of OVRPlugin/Mesh struct Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_com { int32_t ___Type_0; uint32_t ___NumVertices_1; uint32_t ___NumIndices_2; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___VertexPositions_3[3000]; int16_t ___Indices_4[18000]; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___VertexNormals_5[3000]; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___VertexUV0_6[3000]; Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 ___BlendIndices_7[3000]; Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE ___BlendWeights_8[3000]; }; // OVRPlugin/PoseStatef struct PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 { public: // OVRPlugin/Posef OVRPlugin/PoseStatef::Pose Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___Pose_0; // OVRPlugin/Vector3f OVRPlugin/PoseStatef::Velocity Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Velocity_1; // OVRPlugin/Vector3f OVRPlugin/PoseStatef::Acceleration Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___Acceleration_2; // OVRPlugin/Vector3f OVRPlugin/PoseStatef::AngularVelocity Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___AngularVelocity_3; // OVRPlugin/Vector3f OVRPlugin/PoseStatef::AngularAcceleration Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___AngularAcceleration_4; // System.Double OVRPlugin/PoseStatef::Time double ___Time_5; public: inline static int32_t get_offset_of_Pose_0() { return static_cast(offsetof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2, ___Pose_0)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_Pose_0() const { return ___Pose_0; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_Pose_0() { return &___Pose_0; } inline void set_Pose_0(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___Pose_0 = value; } inline static int32_t get_offset_of_Velocity_1() { return static_cast(offsetof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2, ___Velocity_1)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_Velocity_1() const { return ___Velocity_1; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_Velocity_1() { return &___Velocity_1; } inline void set_Velocity_1(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___Velocity_1 = value; } inline static int32_t get_offset_of_Acceleration_2() { return static_cast(offsetof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2, ___Acceleration_2)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_Acceleration_2() const { return ___Acceleration_2; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_Acceleration_2() { return &___Acceleration_2; } inline void set_Acceleration_2(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___Acceleration_2 = value; } inline static int32_t get_offset_of_AngularVelocity_3() { return static_cast(offsetof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2, ___AngularVelocity_3)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_AngularVelocity_3() const { return ___AngularVelocity_3; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_AngularVelocity_3() { return &___AngularVelocity_3; } inline void set_AngularVelocity_3(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___AngularVelocity_3 = value; } inline static int32_t get_offset_of_AngularAcceleration_4() { return static_cast(offsetof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2, ___AngularAcceleration_4)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_AngularAcceleration_4() const { return ___AngularAcceleration_4; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_AngularAcceleration_4() { return &___AngularAcceleration_4; } inline void set_AngularAcceleration_4(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___AngularAcceleration_4 = value; } inline static int32_t get_offset_of_Time_5() { return static_cast(offsetof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2, ___Time_5)); } inline double get_Time_5() const { return ___Time_5; } inline double* get_address_of_Time_5() { return &___Time_5; } inline void set_Time_5(double value) { ___Time_5 = value; } }; // OVRPlugin/Skeleton2 struct Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13 { public: // OVRPlugin/SkeletonType OVRPlugin/Skeleton2::Type int32_t ___Type_0; // System.UInt32 OVRPlugin/Skeleton2::NumBones uint32_t ___NumBones_1; // System.UInt32 OVRPlugin/Skeleton2::NumBoneCapsules uint32_t ___NumBoneCapsules_2; // OVRPlugin/Bone[] OVRPlugin/Skeleton2::Bones BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981* ___Bones_3; // OVRPlugin/BoneCapsule[] OVRPlugin/Skeleton2::BoneCapsules BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295* ___BoneCapsules_4; public: inline static int32_t get_offset_of_Type_0() { return static_cast(offsetof(Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13, ___Type_0)); } inline int32_t get_Type_0() const { return ___Type_0; } inline int32_t* get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(int32_t value) { ___Type_0 = value; } inline static int32_t get_offset_of_NumBones_1() { return static_cast(offsetof(Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13, ___NumBones_1)); } inline uint32_t get_NumBones_1() const { return ___NumBones_1; } inline uint32_t* get_address_of_NumBones_1() { return &___NumBones_1; } inline void set_NumBones_1(uint32_t value) { ___NumBones_1 = value; } inline static int32_t get_offset_of_NumBoneCapsules_2() { return static_cast(offsetof(Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13, ___NumBoneCapsules_2)); } inline uint32_t get_NumBoneCapsules_2() const { return ___NumBoneCapsules_2; } inline uint32_t* get_address_of_NumBoneCapsules_2() { return &___NumBoneCapsules_2; } inline void set_NumBoneCapsules_2(uint32_t value) { ___NumBoneCapsules_2 = value; } inline static int32_t get_offset_of_Bones_3() { return static_cast(offsetof(Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13, ___Bones_3)); } inline BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981* get_Bones_3() const { return ___Bones_3; } inline BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981** get_address_of_Bones_3() { return &___Bones_3; } inline void set_Bones_3(BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981* value) { ___Bones_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Bones_3), (void*)value); } inline static int32_t get_offset_of_BoneCapsules_4() { return static_cast(offsetof(Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13, ___BoneCapsules_4)); } inline BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295* get_BoneCapsules_4() const { return ___BoneCapsules_4; } inline BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295** get_address_of_BoneCapsules_4() { return &___BoneCapsules_4; } inline void set_BoneCapsules_4(BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295* value) { ___BoneCapsules_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___BoneCapsules_4), (void*)value); } }; // Native definition for P/Invoke marshalling of OVRPlugin/Skeleton2 struct Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_pinvoke { int32_t ___Type_0; uint32_t ___NumBones_1; uint32_t ___NumBoneCapsules_2; Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * ___Bones_3; BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * ___BoneCapsules_4; }; // Native definition for COM marshalling of OVRPlugin/Skeleton2 struct Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_com { int32_t ___Type_0; uint32_t ___NumBones_1; uint32_t ___NumBoneCapsules_2; Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * ___Bones_3; BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * ___BoneCapsules_4; }; // OVRPlugin/SpatialEntityAnchorCreateInfo struct SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC { public: // OVRPlugin/TrackingOrigin OVRPlugin/SpatialEntityAnchorCreateInfo::BaseTracking int32_t ___BaseTracking_0; // OVRPlugin/Posef OVRPlugin/SpatialEntityAnchorCreateInfo::PoseInSpace Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___PoseInSpace_1; // System.Double OVRPlugin/SpatialEntityAnchorCreateInfo::Time double ___Time_2; public: inline static int32_t get_offset_of_BaseTracking_0() { return static_cast(offsetof(SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC, ___BaseTracking_0)); } inline int32_t get_BaseTracking_0() const { return ___BaseTracking_0; } inline int32_t* get_address_of_BaseTracking_0() { return &___BaseTracking_0; } inline void set_BaseTracking_0(int32_t value) { ___BaseTracking_0 = value; } inline static int32_t get_offset_of_PoseInSpace_1() { return static_cast(offsetof(SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC, ___PoseInSpace_1)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_PoseInSpace_1() const { return ___PoseInSpace_1; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_PoseInSpace_1() { return &___PoseInSpace_1; } inline void set_PoseInSpace_1(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___PoseInSpace_1 = value; } inline static int32_t get_offset_of_Time_2() { return static_cast(offsetof(SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC, ___Time_2)); } inline double get_Time_2() const { return ___Time_2; } inline double* get_address_of_Time_2() { return &___Time_2; } inline void set_Time_2(double value) { ___Time_2 = value; } }; // OVRPlugin/SpatialEntityQueryInfo struct SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722 { public: // OVRPlugin/SpatialEntityQueryType OVRPlugin/SpatialEntityQueryInfo::QueryType int32_t ___QueryType_0; // System.Int32 OVRPlugin/SpatialEntityQueryInfo::MaxQuerySpaces int32_t ___MaxQuerySpaces_1; // System.Double OVRPlugin/SpatialEntityQueryInfo::Timeout double ___Timeout_2; // OVRPlugin/SpatialEntityStorageLocation OVRPlugin/SpatialEntityQueryInfo::Location int32_t ___Location_3; // OVRPlugin/SpatialEntityQueryActionType OVRPlugin/SpatialEntityQueryInfo::ActionType int32_t ___ActionType_4; // OVRPlugin/SpatialEntityQueryFilterType OVRPlugin/SpatialEntityQueryInfo::FilterType int32_t ___FilterType_5; // OVRPlugin/SpatialEntityFilterInfoIds OVRPlugin/SpatialEntityQueryInfo::IdInfo SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730 ___IdInfo_6; public: inline static int32_t get_offset_of_QueryType_0() { return static_cast(offsetof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722, ___QueryType_0)); } inline int32_t get_QueryType_0() const { return ___QueryType_0; } inline int32_t* get_address_of_QueryType_0() { return &___QueryType_0; } inline void set_QueryType_0(int32_t value) { ___QueryType_0 = value; } inline static int32_t get_offset_of_MaxQuerySpaces_1() { return static_cast(offsetof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722, ___MaxQuerySpaces_1)); } inline int32_t get_MaxQuerySpaces_1() const { return ___MaxQuerySpaces_1; } inline int32_t* get_address_of_MaxQuerySpaces_1() { return &___MaxQuerySpaces_1; } inline void set_MaxQuerySpaces_1(int32_t value) { ___MaxQuerySpaces_1 = value; } inline static int32_t get_offset_of_Timeout_2() { return static_cast(offsetof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722, ___Timeout_2)); } inline double get_Timeout_2() const { return ___Timeout_2; } inline double* get_address_of_Timeout_2() { return &___Timeout_2; } inline void set_Timeout_2(double value) { ___Timeout_2 = value; } inline static int32_t get_offset_of_Location_3() { return static_cast(offsetof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722, ___Location_3)); } inline int32_t get_Location_3() const { return ___Location_3; } inline int32_t* get_address_of_Location_3() { return &___Location_3; } inline void set_Location_3(int32_t value) { ___Location_3 = value; } inline static int32_t get_offset_of_ActionType_4() { return static_cast(offsetof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722, ___ActionType_4)); } inline int32_t get_ActionType_4() const { return ___ActionType_4; } inline int32_t* get_address_of_ActionType_4() { return &___ActionType_4; } inline void set_ActionType_4(int32_t value) { ___ActionType_4 = value; } inline static int32_t get_offset_of_FilterType_5() { return static_cast(offsetof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722, ___FilterType_5)); } inline int32_t get_FilterType_5() const { return ___FilterType_5; } inline int32_t* get_address_of_FilterType_5() { return &___FilterType_5; } inline void set_FilterType_5(int32_t value) { ___FilterType_5 = value; } inline static int32_t get_offset_of_IdInfo_6() { return static_cast(offsetof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722, ___IdInfo_6)); } inline SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730 get_IdInfo_6() const { return ___IdInfo_6; } inline SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730 * get_address_of_IdInfo_6() { return &___IdInfo_6; } inline void set_IdInfo_6(SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730 value) { ___IdInfo_6 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___IdInfo_6))->___Ids_0), (void*)NULL); } }; // Native definition for P/Invoke marshalling of OVRPlugin/SpatialEntityQueryInfo struct SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke { int32_t ___QueryType_0; int32_t ___MaxQuerySpaces_1; double ___Timeout_2; int32_t ___Location_3; int32_t ___ActionType_4; int32_t ___FilterType_5; SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke ___IdInfo_6; }; // Native definition for COM marshalling of OVRPlugin/SpatialEntityQueryInfo struct SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_com { int32_t ___QueryType_0; int32_t ___MaxQuerySpaces_1; double ___Timeout_2; int32_t ___Location_3; int32_t ___ActionType_4; int32_t ___FilterType_5; SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com ___IdInfo_6; }; // OVRSkeleton/SkeletonPoseData struct SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E { public: // OVRPlugin/Posef OVRSkeleton/SkeletonPoseData::k__BackingField Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___U3CRootPoseU3Ek__BackingField_0; // System.Single OVRSkeleton/SkeletonPoseData::k__BackingField float ___U3CRootScaleU3Ek__BackingField_1; // OVRPlugin/Quatf[] OVRSkeleton/SkeletonPoseData::k__BackingField QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* ___U3CBoneRotationsU3Ek__BackingField_2; // System.Boolean OVRSkeleton/SkeletonPoseData::k__BackingField bool ___U3CIsDataValidU3Ek__BackingField_3; // System.Boolean OVRSkeleton/SkeletonPoseData::k__BackingField bool ___U3CIsDataHighConfidenceU3Ek__BackingField_4; // System.Int32 OVRSkeleton/SkeletonPoseData::k__BackingField int32_t ___U3CSkeletonChangedCountU3Ek__BackingField_5; public: inline static int32_t get_offset_of_U3CRootPoseU3Ek__BackingField_0() { return static_cast(offsetof(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E, ___U3CRootPoseU3Ek__BackingField_0)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_U3CRootPoseU3Ek__BackingField_0() const { return ___U3CRootPoseU3Ek__BackingField_0; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_U3CRootPoseU3Ek__BackingField_0() { return &___U3CRootPoseU3Ek__BackingField_0; } inline void set_U3CRootPoseU3Ek__BackingField_0(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___U3CRootPoseU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CRootScaleU3Ek__BackingField_1() { return static_cast(offsetof(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E, ___U3CRootScaleU3Ek__BackingField_1)); } inline float get_U3CRootScaleU3Ek__BackingField_1() const { return ___U3CRootScaleU3Ek__BackingField_1; } inline float* get_address_of_U3CRootScaleU3Ek__BackingField_1() { return &___U3CRootScaleU3Ek__BackingField_1; } inline void set_U3CRootScaleU3Ek__BackingField_1(float value) { ___U3CRootScaleU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CBoneRotationsU3Ek__BackingField_2() { return static_cast(offsetof(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E, ___U3CBoneRotationsU3Ek__BackingField_2)); } inline QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* get_U3CBoneRotationsU3Ek__BackingField_2() const { return ___U3CBoneRotationsU3Ek__BackingField_2; } inline QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5** get_address_of_U3CBoneRotationsU3Ek__BackingField_2() { return &___U3CBoneRotationsU3Ek__BackingField_2; } inline void set_U3CBoneRotationsU3Ek__BackingField_2(QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* value) { ___U3CBoneRotationsU3Ek__BackingField_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CBoneRotationsU3Ek__BackingField_2), (void*)value); } inline static int32_t get_offset_of_U3CIsDataValidU3Ek__BackingField_3() { return static_cast(offsetof(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E, ___U3CIsDataValidU3Ek__BackingField_3)); } inline bool get_U3CIsDataValidU3Ek__BackingField_3() const { return ___U3CIsDataValidU3Ek__BackingField_3; } inline bool* get_address_of_U3CIsDataValidU3Ek__BackingField_3() { return &___U3CIsDataValidU3Ek__BackingField_3; } inline void set_U3CIsDataValidU3Ek__BackingField_3(bool value) { ___U3CIsDataValidU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3CIsDataHighConfidenceU3Ek__BackingField_4() { return static_cast(offsetof(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E, ___U3CIsDataHighConfidenceU3Ek__BackingField_4)); } inline bool get_U3CIsDataHighConfidenceU3Ek__BackingField_4() const { return ___U3CIsDataHighConfidenceU3Ek__BackingField_4; } inline bool* get_address_of_U3CIsDataHighConfidenceU3Ek__BackingField_4() { return &___U3CIsDataHighConfidenceU3Ek__BackingField_4; } inline void set_U3CIsDataHighConfidenceU3Ek__BackingField_4(bool value) { ___U3CIsDataHighConfidenceU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CSkeletonChangedCountU3Ek__BackingField_5() { return static_cast(offsetof(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E, ___U3CSkeletonChangedCountU3Ek__BackingField_5)); } inline int32_t get_U3CSkeletonChangedCountU3Ek__BackingField_5() const { return ___U3CSkeletonChangedCountU3Ek__BackingField_5; } inline int32_t* get_address_of_U3CSkeletonChangedCountU3Ek__BackingField_5() { return &___U3CSkeletonChangedCountU3Ek__BackingField_5; } inline void set_U3CSkeletonChangedCountU3Ek__BackingField_5(int32_t value) { ___U3CSkeletonChangedCountU3Ek__BackingField_5 = value; } }; // Native definition for P/Invoke marshalling of OVRSkeleton/SkeletonPoseData struct SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_pinvoke { Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___U3CRootPoseU3Ek__BackingField_0; float ___U3CRootScaleU3Ek__BackingField_1; Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * ___U3CBoneRotationsU3Ek__BackingField_2; int32_t ___U3CIsDataValidU3Ek__BackingField_3; int32_t ___U3CIsDataHighConfidenceU3Ek__BackingField_4; int32_t ___U3CSkeletonChangedCountU3Ek__BackingField_5; }; // Native definition for COM marshalling of OVRSkeleton/SkeletonPoseData struct SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_com { Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___U3CRootPoseU3Ek__BackingField_0; float ___U3CRootScaleU3Ek__BackingField_1; Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * ___U3CBoneRotationsU3Ek__BackingField_2; int32_t ___U3CIsDataValidU3Ek__BackingField_3; int32_t ___U3CIsDataHighConfidenceU3Ek__BackingField_4; int32_t ___U3CSkeletonChangedCountU3Ek__BackingField_5; }; // OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent struct TrackedKeyboardVisibilityChangedEvent_t33B59D3F8C22172347ADC07C6FDFB42622F7D729 { public: // System.String OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent::ActiveKeyboardName String_t* ___ActiveKeyboardName_0; // OVRTrackedKeyboard/TrackedKeyboardState OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent::State int32_t ___State_1; // System.Boolean OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent::TrackingTimeout bool ___TrackingTimeout_2; public: inline static int32_t get_offset_of_ActiveKeyboardName_0() { return static_cast(offsetof(TrackedKeyboardVisibilityChangedEvent_t33B59D3F8C22172347ADC07C6FDFB42622F7D729, ___ActiveKeyboardName_0)); } inline String_t* get_ActiveKeyboardName_0() const { return ___ActiveKeyboardName_0; } inline String_t** get_address_of_ActiveKeyboardName_0() { return &___ActiveKeyboardName_0; } inline void set_ActiveKeyboardName_0(String_t* value) { ___ActiveKeyboardName_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___ActiveKeyboardName_0), (void*)value); } inline static int32_t get_offset_of_State_1() { return static_cast(offsetof(TrackedKeyboardVisibilityChangedEvent_t33B59D3F8C22172347ADC07C6FDFB42622F7D729, ___State_1)); } inline int32_t get_State_1() const { return ___State_1; } inline int32_t* get_address_of_State_1() { return &___State_1; } inline void set_State_1(int32_t value) { ___State_1 = value; } inline static int32_t get_offset_of_TrackingTimeout_2() { return static_cast(offsetof(TrackedKeyboardVisibilityChangedEvent_t33B59D3F8C22172347ADC07C6FDFB42622F7D729, ___TrackingTimeout_2)); } inline bool get_TrackingTimeout_2() const { return ___TrackingTimeout_2; } inline bool* get_address_of_TrackingTimeout_2() { return &___TrackingTimeout_2; } inline void set_TrackingTimeout_2(bool value) { ___TrackingTimeout_2 = value; } }; // Native definition for P/Invoke marshalling of OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent struct TrackedKeyboardVisibilityChangedEvent_t33B59D3F8C22172347ADC07C6FDFB42622F7D729_marshaled_pinvoke { char* ___ActiveKeyboardName_0; int32_t ___State_1; int32_t ___TrackingTimeout_2; }; // Native definition for COM marshalling of OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent struct TrackedKeyboardVisibilityChangedEvent_t33B59D3F8C22172347ADC07C6FDFB42622F7D729_marshaled_com { Il2CppChar* ___ActiveKeyboardName_0; int32_t ___State_1; int32_t ___TrackingTimeout_2; }; // OVRInput/OVRControllerBase/VirtualAxis1DMap struct VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 : public RuntimeObject { public: // OVRInput/RawAxis1D OVRInput/OVRControllerBase/VirtualAxis1DMap::None int32_t ___None_0; // OVRInput/RawAxis1D OVRInput/OVRControllerBase/VirtualAxis1DMap::PrimaryIndexTrigger int32_t ___PrimaryIndexTrigger_1; // OVRInput/RawAxis1D OVRInput/OVRControllerBase/VirtualAxis1DMap::PrimaryHandTrigger int32_t ___PrimaryHandTrigger_2; // OVRInput/RawAxis1D OVRInput/OVRControllerBase/VirtualAxis1DMap::SecondaryIndexTrigger int32_t ___SecondaryIndexTrigger_3; // OVRInput/RawAxis1D OVRInput/OVRControllerBase/VirtualAxis1DMap::SecondaryHandTrigger int32_t ___SecondaryHandTrigger_4; public: inline static int32_t get_offset_of_None_0() { return static_cast(offsetof(VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7, ___None_0)); } inline int32_t get_None_0() const { return ___None_0; } inline int32_t* get_address_of_None_0() { return &___None_0; } inline void set_None_0(int32_t value) { ___None_0 = value; } inline static int32_t get_offset_of_PrimaryIndexTrigger_1() { return static_cast(offsetof(VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7, ___PrimaryIndexTrigger_1)); } inline int32_t get_PrimaryIndexTrigger_1() const { return ___PrimaryIndexTrigger_1; } inline int32_t* get_address_of_PrimaryIndexTrigger_1() { return &___PrimaryIndexTrigger_1; } inline void set_PrimaryIndexTrigger_1(int32_t value) { ___PrimaryIndexTrigger_1 = value; } inline static int32_t get_offset_of_PrimaryHandTrigger_2() { return static_cast(offsetof(VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7, ___PrimaryHandTrigger_2)); } inline int32_t get_PrimaryHandTrigger_2() const { return ___PrimaryHandTrigger_2; } inline int32_t* get_address_of_PrimaryHandTrigger_2() { return &___PrimaryHandTrigger_2; } inline void set_PrimaryHandTrigger_2(int32_t value) { ___PrimaryHandTrigger_2 = value; } inline static int32_t get_offset_of_SecondaryIndexTrigger_3() { return static_cast(offsetof(VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7, ___SecondaryIndexTrigger_3)); } inline int32_t get_SecondaryIndexTrigger_3() const { return ___SecondaryIndexTrigger_3; } inline int32_t* get_address_of_SecondaryIndexTrigger_3() { return &___SecondaryIndexTrigger_3; } inline void set_SecondaryIndexTrigger_3(int32_t value) { ___SecondaryIndexTrigger_3 = value; } inline static int32_t get_offset_of_SecondaryHandTrigger_4() { return static_cast(offsetof(VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7, ___SecondaryHandTrigger_4)); } inline int32_t get_SecondaryHandTrigger_4() const { return ___SecondaryHandTrigger_4; } inline int32_t* get_address_of_SecondaryHandTrigger_4() { return &___SecondaryHandTrigger_4; } inline void set_SecondaryHandTrigger_4(int32_t value) { ___SecondaryHandTrigger_4 = value; } }; // OVRInput/OVRControllerBase/VirtualAxis2DMap struct VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA : public RuntimeObject { public: // OVRInput/RawAxis2D OVRInput/OVRControllerBase/VirtualAxis2DMap::None int32_t ___None_0; // OVRInput/RawAxis2D OVRInput/OVRControllerBase/VirtualAxis2DMap::PrimaryThumbstick int32_t ___PrimaryThumbstick_1; // OVRInput/RawAxis2D OVRInput/OVRControllerBase/VirtualAxis2DMap::PrimaryTouchpad int32_t ___PrimaryTouchpad_2; // OVRInput/RawAxis2D OVRInput/OVRControllerBase/VirtualAxis2DMap::SecondaryThumbstick int32_t ___SecondaryThumbstick_3; // OVRInput/RawAxis2D OVRInput/OVRControllerBase/VirtualAxis2DMap::SecondaryTouchpad int32_t ___SecondaryTouchpad_4; public: inline static int32_t get_offset_of_None_0() { return static_cast(offsetof(VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA, ___None_0)); } inline int32_t get_None_0() const { return ___None_0; } inline int32_t* get_address_of_None_0() { return &___None_0; } inline void set_None_0(int32_t value) { ___None_0 = value; } inline static int32_t get_offset_of_PrimaryThumbstick_1() { return static_cast(offsetof(VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA, ___PrimaryThumbstick_1)); } inline int32_t get_PrimaryThumbstick_1() const { return ___PrimaryThumbstick_1; } inline int32_t* get_address_of_PrimaryThumbstick_1() { return &___PrimaryThumbstick_1; } inline void set_PrimaryThumbstick_1(int32_t value) { ___PrimaryThumbstick_1 = value; } inline static int32_t get_offset_of_PrimaryTouchpad_2() { return static_cast(offsetof(VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA, ___PrimaryTouchpad_2)); } inline int32_t get_PrimaryTouchpad_2() const { return ___PrimaryTouchpad_2; } inline int32_t* get_address_of_PrimaryTouchpad_2() { return &___PrimaryTouchpad_2; } inline void set_PrimaryTouchpad_2(int32_t value) { ___PrimaryTouchpad_2 = value; } inline static int32_t get_offset_of_SecondaryThumbstick_3() { return static_cast(offsetof(VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA, ___SecondaryThumbstick_3)); } inline int32_t get_SecondaryThumbstick_3() const { return ___SecondaryThumbstick_3; } inline int32_t* get_address_of_SecondaryThumbstick_3() { return &___SecondaryThumbstick_3; } inline void set_SecondaryThumbstick_3(int32_t value) { ___SecondaryThumbstick_3 = value; } inline static int32_t get_offset_of_SecondaryTouchpad_4() { return static_cast(offsetof(VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA, ___SecondaryTouchpad_4)); } inline int32_t get_SecondaryTouchpad_4() const { return ___SecondaryTouchpad_4; } inline int32_t* get_address_of_SecondaryTouchpad_4() { return &___SecondaryTouchpad_4; } inline void set_SecondaryTouchpad_4(int32_t value) { ___SecondaryTouchpad_4 = value; } }; // OVRInput/OVRControllerBase/VirtualButtonMap struct VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF : public RuntimeObject { public: // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::None int32_t ___None_0; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::One int32_t ___One_1; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Two int32_t ___Two_2; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Three int32_t ___Three_3; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Four int32_t ___Four_4; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Start int32_t ___Start_5; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Back int32_t ___Back_6; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryShoulder int32_t ___PrimaryShoulder_7; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryIndexTrigger int32_t ___PrimaryIndexTrigger_8; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryHandTrigger int32_t ___PrimaryHandTrigger_9; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryThumbstick int32_t ___PrimaryThumbstick_10; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryThumbstickUp int32_t ___PrimaryThumbstickUp_11; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryThumbstickDown int32_t ___PrimaryThumbstickDown_12; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryThumbstickLeft int32_t ___PrimaryThumbstickLeft_13; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryThumbstickRight int32_t ___PrimaryThumbstickRight_14; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::PrimaryTouchpad int32_t ___PrimaryTouchpad_15; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryShoulder int32_t ___SecondaryShoulder_16; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryIndexTrigger int32_t ___SecondaryIndexTrigger_17; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryHandTrigger int32_t ___SecondaryHandTrigger_18; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryThumbstick int32_t ___SecondaryThumbstick_19; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryThumbstickUp int32_t ___SecondaryThumbstickUp_20; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryThumbstickDown int32_t ___SecondaryThumbstickDown_21; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryThumbstickLeft int32_t ___SecondaryThumbstickLeft_22; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryThumbstickRight int32_t ___SecondaryThumbstickRight_23; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::SecondaryTouchpad int32_t ___SecondaryTouchpad_24; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::DpadUp int32_t ___DpadUp_25; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::DpadDown int32_t ___DpadDown_26; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::DpadLeft int32_t ___DpadLeft_27; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::DpadRight int32_t ___DpadRight_28; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Up int32_t ___Up_29; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Down int32_t ___Down_30; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Left int32_t ___Left_31; // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::Right int32_t ___Right_32; public: inline static int32_t get_offset_of_None_0() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___None_0)); } inline int32_t get_None_0() const { return ___None_0; } inline int32_t* get_address_of_None_0() { return &___None_0; } inline void set_None_0(int32_t value) { ___None_0 = value; } inline static int32_t get_offset_of_One_1() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___One_1)); } inline int32_t get_One_1() const { return ___One_1; } inline int32_t* get_address_of_One_1() { return &___One_1; } inline void set_One_1(int32_t value) { ___One_1 = value; } inline static int32_t get_offset_of_Two_2() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Two_2)); } inline int32_t get_Two_2() const { return ___Two_2; } inline int32_t* get_address_of_Two_2() { return &___Two_2; } inline void set_Two_2(int32_t value) { ___Two_2 = value; } inline static int32_t get_offset_of_Three_3() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Three_3)); } inline int32_t get_Three_3() const { return ___Three_3; } inline int32_t* get_address_of_Three_3() { return &___Three_3; } inline void set_Three_3(int32_t value) { ___Three_3 = value; } inline static int32_t get_offset_of_Four_4() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Four_4)); } inline int32_t get_Four_4() const { return ___Four_4; } inline int32_t* get_address_of_Four_4() { return &___Four_4; } inline void set_Four_4(int32_t value) { ___Four_4 = value; } inline static int32_t get_offset_of_Start_5() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Start_5)); } inline int32_t get_Start_5() const { return ___Start_5; } inline int32_t* get_address_of_Start_5() { return &___Start_5; } inline void set_Start_5(int32_t value) { ___Start_5 = value; } inline static int32_t get_offset_of_Back_6() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Back_6)); } inline int32_t get_Back_6() const { return ___Back_6; } inline int32_t* get_address_of_Back_6() { return &___Back_6; } inline void set_Back_6(int32_t value) { ___Back_6 = value; } inline static int32_t get_offset_of_PrimaryShoulder_7() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryShoulder_7)); } inline int32_t get_PrimaryShoulder_7() const { return ___PrimaryShoulder_7; } inline int32_t* get_address_of_PrimaryShoulder_7() { return &___PrimaryShoulder_7; } inline void set_PrimaryShoulder_7(int32_t value) { ___PrimaryShoulder_7 = value; } inline static int32_t get_offset_of_PrimaryIndexTrigger_8() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryIndexTrigger_8)); } inline int32_t get_PrimaryIndexTrigger_8() const { return ___PrimaryIndexTrigger_8; } inline int32_t* get_address_of_PrimaryIndexTrigger_8() { return &___PrimaryIndexTrigger_8; } inline void set_PrimaryIndexTrigger_8(int32_t value) { ___PrimaryIndexTrigger_8 = value; } inline static int32_t get_offset_of_PrimaryHandTrigger_9() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryHandTrigger_9)); } inline int32_t get_PrimaryHandTrigger_9() const { return ___PrimaryHandTrigger_9; } inline int32_t* get_address_of_PrimaryHandTrigger_9() { return &___PrimaryHandTrigger_9; } inline void set_PrimaryHandTrigger_9(int32_t value) { ___PrimaryHandTrigger_9 = value; } inline static int32_t get_offset_of_PrimaryThumbstick_10() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryThumbstick_10)); } inline int32_t get_PrimaryThumbstick_10() const { return ___PrimaryThumbstick_10; } inline int32_t* get_address_of_PrimaryThumbstick_10() { return &___PrimaryThumbstick_10; } inline void set_PrimaryThumbstick_10(int32_t value) { ___PrimaryThumbstick_10 = value; } inline static int32_t get_offset_of_PrimaryThumbstickUp_11() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryThumbstickUp_11)); } inline int32_t get_PrimaryThumbstickUp_11() const { return ___PrimaryThumbstickUp_11; } inline int32_t* get_address_of_PrimaryThumbstickUp_11() { return &___PrimaryThumbstickUp_11; } inline void set_PrimaryThumbstickUp_11(int32_t value) { ___PrimaryThumbstickUp_11 = value; } inline static int32_t get_offset_of_PrimaryThumbstickDown_12() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryThumbstickDown_12)); } inline int32_t get_PrimaryThumbstickDown_12() const { return ___PrimaryThumbstickDown_12; } inline int32_t* get_address_of_PrimaryThumbstickDown_12() { return &___PrimaryThumbstickDown_12; } inline void set_PrimaryThumbstickDown_12(int32_t value) { ___PrimaryThumbstickDown_12 = value; } inline static int32_t get_offset_of_PrimaryThumbstickLeft_13() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryThumbstickLeft_13)); } inline int32_t get_PrimaryThumbstickLeft_13() const { return ___PrimaryThumbstickLeft_13; } inline int32_t* get_address_of_PrimaryThumbstickLeft_13() { return &___PrimaryThumbstickLeft_13; } inline void set_PrimaryThumbstickLeft_13(int32_t value) { ___PrimaryThumbstickLeft_13 = value; } inline static int32_t get_offset_of_PrimaryThumbstickRight_14() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryThumbstickRight_14)); } inline int32_t get_PrimaryThumbstickRight_14() const { return ___PrimaryThumbstickRight_14; } inline int32_t* get_address_of_PrimaryThumbstickRight_14() { return &___PrimaryThumbstickRight_14; } inline void set_PrimaryThumbstickRight_14(int32_t value) { ___PrimaryThumbstickRight_14 = value; } inline static int32_t get_offset_of_PrimaryTouchpad_15() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___PrimaryTouchpad_15)); } inline int32_t get_PrimaryTouchpad_15() const { return ___PrimaryTouchpad_15; } inline int32_t* get_address_of_PrimaryTouchpad_15() { return &___PrimaryTouchpad_15; } inline void set_PrimaryTouchpad_15(int32_t value) { ___PrimaryTouchpad_15 = value; } inline static int32_t get_offset_of_SecondaryShoulder_16() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryShoulder_16)); } inline int32_t get_SecondaryShoulder_16() const { return ___SecondaryShoulder_16; } inline int32_t* get_address_of_SecondaryShoulder_16() { return &___SecondaryShoulder_16; } inline void set_SecondaryShoulder_16(int32_t value) { ___SecondaryShoulder_16 = value; } inline static int32_t get_offset_of_SecondaryIndexTrigger_17() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryIndexTrigger_17)); } inline int32_t get_SecondaryIndexTrigger_17() const { return ___SecondaryIndexTrigger_17; } inline int32_t* get_address_of_SecondaryIndexTrigger_17() { return &___SecondaryIndexTrigger_17; } inline void set_SecondaryIndexTrigger_17(int32_t value) { ___SecondaryIndexTrigger_17 = value; } inline static int32_t get_offset_of_SecondaryHandTrigger_18() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryHandTrigger_18)); } inline int32_t get_SecondaryHandTrigger_18() const { return ___SecondaryHandTrigger_18; } inline int32_t* get_address_of_SecondaryHandTrigger_18() { return &___SecondaryHandTrigger_18; } inline void set_SecondaryHandTrigger_18(int32_t value) { ___SecondaryHandTrigger_18 = value; } inline static int32_t get_offset_of_SecondaryThumbstick_19() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryThumbstick_19)); } inline int32_t get_SecondaryThumbstick_19() const { return ___SecondaryThumbstick_19; } inline int32_t* get_address_of_SecondaryThumbstick_19() { return &___SecondaryThumbstick_19; } inline void set_SecondaryThumbstick_19(int32_t value) { ___SecondaryThumbstick_19 = value; } inline static int32_t get_offset_of_SecondaryThumbstickUp_20() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryThumbstickUp_20)); } inline int32_t get_SecondaryThumbstickUp_20() const { return ___SecondaryThumbstickUp_20; } inline int32_t* get_address_of_SecondaryThumbstickUp_20() { return &___SecondaryThumbstickUp_20; } inline void set_SecondaryThumbstickUp_20(int32_t value) { ___SecondaryThumbstickUp_20 = value; } inline static int32_t get_offset_of_SecondaryThumbstickDown_21() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryThumbstickDown_21)); } inline int32_t get_SecondaryThumbstickDown_21() const { return ___SecondaryThumbstickDown_21; } inline int32_t* get_address_of_SecondaryThumbstickDown_21() { return &___SecondaryThumbstickDown_21; } inline void set_SecondaryThumbstickDown_21(int32_t value) { ___SecondaryThumbstickDown_21 = value; } inline static int32_t get_offset_of_SecondaryThumbstickLeft_22() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryThumbstickLeft_22)); } inline int32_t get_SecondaryThumbstickLeft_22() const { return ___SecondaryThumbstickLeft_22; } inline int32_t* get_address_of_SecondaryThumbstickLeft_22() { return &___SecondaryThumbstickLeft_22; } inline void set_SecondaryThumbstickLeft_22(int32_t value) { ___SecondaryThumbstickLeft_22 = value; } inline static int32_t get_offset_of_SecondaryThumbstickRight_23() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryThumbstickRight_23)); } inline int32_t get_SecondaryThumbstickRight_23() const { return ___SecondaryThumbstickRight_23; } inline int32_t* get_address_of_SecondaryThumbstickRight_23() { return &___SecondaryThumbstickRight_23; } inline void set_SecondaryThumbstickRight_23(int32_t value) { ___SecondaryThumbstickRight_23 = value; } inline static int32_t get_offset_of_SecondaryTouchpad_24() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___SecondaryTouchpad_24)); } inline int32_t get_SecondaryTouchpad_24() const { return ___SecondaryTouchpad_24; } inline int32_t* get_address_of_SecondaryTouchpad_24() { return &___SecondaryTouchpad_24; } inline void set_SecondaryTouchpad_24(int32_t value) { ___SecondaryTouchpad_24 = value; } inline static int32_t get_offset_of_DpadUp_25() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___DpadUp_25)); } inline int32_t get_DpadUp_25() const { return ___DpadUp_25; } inline int32_t* get_address_of_DpadUp_25() { return &___DpadUp_25; } inline void set_DpadUp_25(int32_t value) { ___DpadUp_25 = value; } inline static int32_t get_offset_of_DpadDown_26() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___DpadDown_26)); } inline int32_t get_DpadDown_26() const { return ___DpadDown_26; } inline int32_t* get_address_of_DpadDown_26() { return &___DpadDown_26; } inline void set_DpadDown_26(int32_t value) { ___DpadDown_26 = value; } inline static int32_t get_offset_of_DpadLeft_27() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___DpadLeft_27)); } inline int32_t get_DpadLeft_27() const { return ___DpadLeft_27; } inline int32_t* get_address_of_DpadLeft_27() { return &___DpadLeft_27; } inline void set_DpadLeft_27(int32_t value) { ___DpadLeft_27 = value; } inline static int32_t get_offset_of_DpadRight_28() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___DpadRight_28)); } inline int32_t get_DpadRight_28() const { return ___DpadRight_28; } inline int32_t* get_address_of_DpadRight_28() { return &___DpadRight_28; } inline void set_DpadRight_28(int32_t value) { ___DpadRight_28 = value; } inline static int32_t get_offset_of_Up_29() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Up_29)); } inline int32_t get_Up_29() const { return ___Up_29; } inline int32_t* get_address_of_Up_29() { return &___Up_29; } inline void set_Up_29(int32_t value) { ___Up_29 = value; } inline static int32_t get_offset_of_Down_30() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Down_30)); } inline int32_t get_Down_30() const { return ___Down_30; } inline int32_t* get_address_of_Down_30() { return &___Down_30; } inline void set_Down_30(int32_t value) { ___Down_30 = value; } inline static int32_t get_offset_of_Left_31() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Left_31)); } inline int32_t get_Left_31() const { return ___Left_31; } inline int32_t* get_address_of_Left_31() { return &___Left_31; } inline void set_Left_31(int32_t value) { ___Left_31 = value; } inline static int32_t get_offset_of_Right_32() { return static_cast(offsetof(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF, ___Right_32)); } inline int32_t get_Right_32() const { return ___Right_32; } inline int32_t* get_address_of_Right_32() { return &___Right_32; } inline void set_Right_32(int32_t value) { ___Right_32 = value; } }; // OVRInput/OVRControllerBase/VirtualNearTouchMap struct VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A : public RuntimeObject { public: // OVRInput/RawNearTouch OVRInput/OVRControllerBase/VirtualNearTouchMap::None int32_t ___None_0; // OVRInput/RawNearTouch OVRInput/OVRControllerBase/VirtualNearTouchMap::PrimaryIndexTrigger int32_t ___PrimaryIndexTrigger_1; // OVRInput/RawNearTouch OVRInput/OVRControllerBase/VirtualNearTouchMap::PrimaryThumbButtons int32_t ___PrimaryThumbButtons_2; // OVRInput/RawNearTouch OVRInput/OVRControllerBase/VirtualNearTouchMap::SecondaryIndexTrigger int32_t ___SecondaryIndexTrigger_3; // OVRInput/RawNearTouch OVRInput/OVRControllerBase/VirtualNearTouchMap::SecondaryThumbButtons int32_t ___SecondaryThumbButtons_4; public: inline static int32_t get_offset_of_None_0() { return static_cast(offsetof(VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A, ___None_0)); } inline int32_t get_None_0() const { return ___None_0; } inline int32_t* get_address_of_None_0() { return &___None_0; } inline void set_None_0(int32_t value) { ___None_0 = value; } inline static int32_t get_offset_of_PrimaryIndexTrigger_1() { return static_cast(offsetof(VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A, ___PrimaryIndexTrigger_1)); } inline int32_t get_PrimaryIndexTrigger_1() const { return ___PrimaryIndexTrigger_1; } inline int32_t* get_address_of_PrimaryIndexTrigger_1() { return &___PrimaryIndexTrigger_1; } inline void set_PrimaryIndexTrigger_1(int32_t value) { ___PrimaryIndexTrigger_1 = value; } inline static int32_t get_offset_of_PrimaryThumbButtons_2() { return static_cast(offsetof(VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A, ___PrimaryThumbButtons_2)); } inline int32_t get_PrimaryThumbButtons_2() const { return ___PrimaryThumbButtons_2; } inline int32_t* get_address_of_PrimaryThumbButtons_2() { return &___PrimaryThumbButtons_2; } inline void set_PrimaryThumbButtons_2(int32_t value) { ___PrimaryThumbButtons_2 = value; } inline static int32_t get_offset_of_SecondaryIndexTrigger_3() { return static_cast(offsetof(VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A, ___SecondaryIndexTrigger_3)); } inline int32_t get_SecondaryIndexTrigger_3() const { return ___SecondaryIndexTrigger_3; } inline int32_t* get_address_of_SecondaryIndexTrigger_3() { return &___SecondaryIndexTrigger_3; } inline void set_SecondaryIndexTrigger_3(int32_t value) { ___SecondaryIndexTrigger_3 = value; } inline static int32_t get_offset_of_SecondaryThumbButtons_4() { return static_cast(offsetof(VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A, ___SecondaryThumbButtons_4)); } inline int32_t get_SecondaryThumbButtons_4() const { return ___SecondaryThumbButtons_4; } inline int32_t* get_address_of_SecondaryThumbButtons_4() { return &___SecondaryThumbButtons_4; } inline void set_SecondaryThumbButtons_4(int32_t value) { ___SecondaryThumbButtons_4 = value; } }; // OVRInput/OVRControllerBase/VirtualTouchMap struct VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC : public RuntimeObject { public: // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::None int32_t ___None_0; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::One int32_t ___One_1; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::Two int32_t ___Two_2; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::Three int32_t ___Three_3; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::Four int32_t ___Four_4; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::PrimaryIndexTrigger int32_t ___PrimaryIndexTrigger_5; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::PrimaryThumbstick int32_t ___PrimaryThumbstick_6; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::PrimaryThumbRest int32_t ___PrimaryThumbRest_7; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::PrimaryTouchpad int32_t ___PrimaryTouchpad_8; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::SecondaryIndexTrigger int32_t ___SecondaryIndexTrigger_9; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::SecondaryThumbstick int32_t ___SecondaryThumbstick_10; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::SecondaryThumbRest int32_t ___SecondaryThumbRest_11; // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::SecondaryTouchpad int32_t ___SecondaryTouchpad_12; public: inline static int32_t get_offset_of_None_0() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___None_0)); } inline int32_t get_None_0() const { return ___None_0; } inline int32_t* get_address_of_None_0() { return &___None_0; } inline void set_None_0(int32_t value) { ___None_0 = value; } inline static int32_t get_offset_of_One_1() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___One_1)); } inline int32_t get_One_1() const { return ___One_1; } inline int32_t* get_address_of_One_1() { return &___One_1; } inline void set_One_1(int32_t value) { ___One_1 = value; } inline static int32_t get_offset_of_Two_2() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___Two_2)); } inline int32_t get_Two_2() const { return ___Two_2; } inline int32_t* get_address_of_Two_2() { return &___Two_2; } inline void set_Two_2(int32_t value) { ___Two_2 = value; } inline static int32_t get_offset_of_Three_3() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___Three_3)); } inline int32_t get_Three_3() const { return ___Three_3; } inline int32_t* get_address_of_Three_3() { return &___Three_3; } inline void set_Three_3(int32_t value) { ___Three_3 = value; } inline static int32_t get_offset_of_Four_4() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___Four_4)); } inline int32_t get_Four_4() const { return ___Four_4; } inline int32_t* get_address_of_Four_4() { return &___Four_4; } inline void set_Four_4(int32_t value) { ___Four_4 = value; } inline static int32_t get_offset_of_PrimaryIndexTrigger_5() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___PrimaryIndexTrigger_5)); } inline int32_t get_PrimaryIndexTrigger_5() const { return ___PrimaryIndexTrigger_5; } inline int32_t* get_address_of_PrimaryIndexTrigger_5() { return &___PrimaryIndexTrigger_5; } inline void set_PrimaryIndexTrigger_5(int32_t value) { ___PrimaryIndexTrigger_5 = value; } inline static int32_t get_offset_of_PrimaryThumbstick_6() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___PrimaryThumbstick_6)); } inline int32_t get_PrimaryThumbstick_6() const { return ___PrimaryThumbstick_6; } inline int32_t* get_address_of_PrimaryThumbstick_6() { return &___PrimaryThumbstick_6; } inline void set_PrimaryThumbstick_6(int32_t value) { ___PrimaryThumbstick_6 = value; } inline static int32_t get_offset_of_PrimaryThumbRest_7() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___PrimaryThumbRest_7)); } inline int32_t get_PrimaryThumbRest_7() const { return ___PrimaryThumbRest_7; } inline int32_t* get_address_of_PrimaryThumbRest_7() { return &___PrimaryThumbRest_7; } inline void set_PrimaryThumbRest_7(int32_t value) { ___PrimaryThumbRest_7 = value; } inline static int32_t get_offset_of_PrimaryTouchpad_8() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___PrimaryTouchpad_8)); } inline int32_t get_PrimaryTouchpad_8() const { return ___PrimaryTouchpad_8; } inline int32_t* get_address_of_PrimaryTouchpad_8() { return &___PrimaryTouchpad_8; } inline void set_PrimaryTouchpad_8(int32_t value) { ___PrimaryTouchpad_8 = value; } inline static int32_t get_offset_of_SecondaryIndexTrigger_9() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___SecondaryIndexTrigger_9)); } inline int32_t get_SecondaryIndexTrigger_9() const { return ___SecondaryIndexTrigger_9; } inline int32_t* get_address_of_SecondaryIndexTrigger_9() { return &___SecondaryIndexTrigger_9; } inline void set_SecondaryIndexTrigger_9(int32_t value) { ___SecondaryIndexTrigger_9 = value; } inline static int32_t get_offset_of_SecondaryThumbstick_10() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___SecondaryThumbstick_10)); } inline int32_t get_SecondaryThumbstick_10() const { return ___SecondaryThumbstick_10; } inline int32_t* get_address_of_SecondaryThumbstick_10() { return &___SecondaryThumbstick_10; } inline void set_SecondaryThumbstick_10(int32_t value) { ___SecondaryThumbstick_10 = value; } inline static int32_t get_offset_of_SecondaryThumbRest_11() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___SecondaryThumbRest_11)); } inline int32_t get_SecondaryThumbRest_11() const { return ___SecondaryThumbRest_11; } inline int32_t* get_address_of_SecondaryThumbRest_11() { return &___SecondaryThumbRest_11; } inline void set_SecondaryThumbRest_11(int32_t value) { ___SecondaryThumbRest_11 = value; } inline static int32_t get_offset_of_SecondaryTouchpad_12() { return static_cast(offsetof(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC, ___SecondaryTouchpad_12)); } inline int32_t get_SecondaryTouchpad_12() const { return ___SecondaryTouchpad_12; } inline int32_t* get_address_of_SecondaryTouchpad_12() { return &___SecondaryTouchpad_12; } inline void set_SecondaryTouchpad_12(int32_t value) { ___SecondaryTouchpad_12 = value; } }; // System.Action`1 struct Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 : public MulticastDelegate_t { public: public: }; // System.Action`4 struct Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A : public MulticastDelegate_t { public: public: }; // System.Action struct Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 : public MulticastDelegate_t { public: public: }; // System.AsyncCallback struct AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA : public MulticastDelegate_t { public: public: }; // UnityEngine.Behaviour struct Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.Collider struct Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // System.Runtime.InteropServices.ExternalException struct ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // System.InvalidOperationException struct InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // OVRSimpleJSON.JSONNumber struct JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F : public JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B { public: // System.Double OVRSimpleJSON.JSONNumber::m_Data double ___m_Data_6; public: inline static int32_t get_offset_of_m_Data_6() { return static_cast(offsetof(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F, ___m_Data_6)); } inline double get_m_Data_6() const { return ___m_Data_6; } inline double* get_address_of_m_Data_6() { return &___m_Data_6; } inline void set_m_Data_6(double value) { ___m_Data_6 = value; } }; // OVRSimpleJSON.JSONObject struct JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 : public JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B { public: // System.Collections.Generic.Dictionary`2 OVRSimpleJSON.JSONObject::m_Dict Dictionary_2_tF1A1BB8BB6BCB70F241AA8204D801193E9E0211A * ___m_Dict_6; // System.Boolean OVRSimpleJSON.JSONObject::inline bool ___inline_7; public: inline static int32_t get_offset_of_m_Dict_6() { return static_cast(offsetof(JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4, ___m_Dict_6)); } inline Dictionary_2_tF1A1BB8BB6BCB70F241AA8204D801193E9E0211A * get_m_Dict_6() const { return ___m_Dict_6; } inline Dictionary_2_tF1A1BB8BB6BCB70F241AA8204D801193E9E0211A ** get_address_of_m_Dict_6() { return &___m_Dict_6; } inline void set_m_Dict_6(Dictionary_2_tF1A1BB8BB6BCB70F241AA8204D801193E9E0211A * value) { ___m_Dict_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Dict_6), (void*)value); } inline static int32_t get_offset_of_inline_7() { return static_cast(offsetof(JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4, ___inline_7)); } inline bool get_inline_7() const { return ___inline_7; } inline bool* get_address_of_inline_7() { return &___inline_7; } inline void set_inline_7(bool value) { ___inline_7 = value; } }; // System.Threading.ManualResetEvent struct ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA : public EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C { public: public: }; // System.NotSupportedException struct NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 : public SystemException_tC551B4D6EE3772B5F32C71EE8C719F4B43ECCC62 { public: public: }; // OVRMaterialData struct OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455 { public: // UnityEngine.Shader OVRMaterialData::shader Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___shader_0; // System.Int32 OVRMaterialData::textureId int32_t ___textureId_1; // OVRTextureData OVRMaterialData::texture OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 ___texture_2; public: inline static int32_t get_offset_of_shader_0() { return static_cast(offsetof(OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455, ___shader_0)); } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * get_shader_0() const { return ___shader_0; } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 ** get_address_of_shader_0() { return &___shader_0; } inline void set_shader_0(Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * value) { ___shader_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___shader_0), (void*)value); } inline static int32_t get_offset_of_textureId_1() { return static_cast(offsetof(OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455, ___textureId_1)); } inline int32_t get_textureId_1() const { return ___textureId_1; } inline int32_t* get_address_of_textureId_1() { return &___textureId_1; } inline void set_textureId_1(int32_t value) { ___textureId_1 = value; } inline static int32_t get_offset_of_texture_2() { return static_cast(offsetof(OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455, ___texture_2)); } inline OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 get_texture_2() const { return ___texture_2; } inline OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 * get_address_of_texture_2() { return &___texture_2; } inline void set_texture_2(OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 value) { ___texture_2 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___texture_2))->___data_0), (void*)NULL); } }; // Native definition for P/Invoke marshalling of OVRMaterialData struct OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455_marshaled_pinvoke { Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___shader_0; int32_t ___textureId_1; OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6_marshaled_pinvoke ___texture_2; }; // Native definition for COM marshalling of OVRMaterialData struct OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455_marshaled_com { Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___shader_0; int32_t ___textureId_1; OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6_marshaled_com ___texture_2; }; // UnityEngine.RenderTexture struct RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 : public Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE { public: public: }; // UnityEngine.Renderer struct Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // UnityEngine.Texture2D struct Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF : public Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE { public: public: }; // UnityEngine.Transform struct Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 : public Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 { public: public: }; // OVRInput/OVRControllerGamepadAndroid struct OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191 : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerGamepadMac struct OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: // System.Boolean OVRInput/OVRControllerGamepadMac::initialized bool ___initialized_9; public: inline static int32_t get_offset_of_initialized_9() { return static_cast(offsetof(OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924, ___initialized_9)); } inline bool get_initialized_9() const { return ___initialized_9; } inline bool* get_address_of_initialized_9() { return &___initialized_9; } inline void set_initialized_9(bool value) { ___initialized_9 = value; } }; // OVRInput/OVRControllerGamepadPC struct OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerHands struct OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerLHand struct OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerLTouch struct OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerRHand struct OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerRTouch struct OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerRemote struct OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457 : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRInput/OVRControllerTouch struct OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 : public OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF { public: public: }; // OVRManager/InstantiateMrcCameraDelegate struct InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 : public MulticastDelegate_t { public: public: }; // OVROverlay/ExternalSurfaceObjectCreated struct ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 : public MulticastDelegate_t { public: public: }; // OVRPlugin/KeyboardState struct KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5 { public: // OVRPlugin/Bool OVRPlugin/KeyboardState::IsActive int32_t ___IsActive_0; // OVRPlugin/Bool OVRPlugin/KeyboardState::OrientationValid int32_t ___OrientationValid_1; // OVRPlugin/Bool OVRPlugin/KeyboardState::PositionValid int32_t ___PositionValid_2; // OVRPlugin/Bool OVRPlugin/KeyboardState::OrientationTracked int32_t ___OrientationTracked_3; // OVRPlugin/Bool OVRPlugin/KeyboardState::PositionTracked int32_t ___PositionTracked_4; // OVRPlugin/PoseStatef OVRPlugin/KeyboardState::PoseState PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 ___PoseState_5; // OVRPlugin/Vector4f OVRPlugin/KeyboardState::ContrastParameters Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE ___ContrastParameters_6; public: inline static int32_t get_offset_of_IsActive_0() { return static_cast(offsetof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5, ___IsActive_0)); } inline int32_t get_IsActive_0() const { return ___IsActive_0; } inline int32_t* get_address_of_IsActive_0() { return &___IsActive_0; } inline void set_IsActive_0(int32_t value) { ___IsActive_0 = value; } inline static int32_t get_offset_of_OrientationValid_1() { return static_cast(offsetof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5, ___OrientationValid_1)); } inline int32_t get_OrientationValid_1() const { return ___OrientationValid_1; } inline int32_t* get_address_of_OrientationValid_1() { return &___OrientationValid_1; } inline void set_OrientationValid_1(int32_t value) { ___OrientationValid_1 = value; } inline static int32_t get_offset_of_PositionValid_2() { return static_cast(offsetof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5, ___PositionValid_2)); } inline int32_t get_PositionValid_2() const { return ___PositionValid_2; } inline int32_t* get_address_of_PositionValid_2() { return &___PositionValid_2; } inline void set_PositionValid_2(int32_t value) { ___PositionValid_2 = value; } inline static int32_t get_offset_of_OrientationTracked_3() { return static_cast(offsetof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5, ___OrientationTracked_3)); } inline int32_t get_OrientationTracked_3() const { return ___OrientationTracked_3; } inline int32_t* get_address_of_OrientationTracked_3() { return &___OrientationTracked_3; } inline void set_OrientationTracked_3(int32_t value) { ___OrientationTracked_3 = value; } inline static int32_t get_offset_of_PositionTracked_4() { return static_cast(offsetof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5, ___PositionTracked_4)); } inline int32_t get_PositionTracked_4() const { return ___PositionTracked_4; } inline int32_t* get_address_of_PositionTracked_4() { return &___PositionTracked_4; } inline void set_PositionTracked_4(int32_t value) { ___PositionTracked_4 = value; } inline static int32_t get_offset_of_PoseState_5() { return static_cast(offsetof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5, ___PoseState_5)); } inline PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 get_PoseState_5() const { return ___PoseState_5; } inline PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 * get_address_of_PoseState_5() { return &___PoseState_5; } inline void set_PoseState_5(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 value) { ___PoseState_5 = value; } inline static int32_t get_offset_of_ContrastParameters_6() { return static_cast(offsetof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5, ___ContrastParameters_6)); } inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE get_ContrastParameters_6() const { return ___ContrastParameters_6; } inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE * get_address_of_ContrastParameters_6() { return &___ContrastParameters_6; } inline void set_ContrastParameters_6(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE value) { ___ContrastParameters_6 = value; } }; // OVRPlugin/Skeleton struct Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 { public: // OVRPlugin/SkeletonType OVRPlugin/Skeleton::Type int32_t ___Type_0; // System.UInt32 OVRPlugin/Skeleton::NumBones uint32_t ___NumBones_1; // System.UInt32 OVRPlugin/Skeleton::NumBoneCapsules uint32_t ___NumBoneCapsules_2; // OVRPlugin/Bone[] OVRPlugin/Skeleton::Bones BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981* ___Bones_3; // OVRPlugin/BoneCapsule[] OVRPlugin/Skeleton::BoneCapsules BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295* ___BoneCapsules_4; public: inline static int32_t get_offset_of_Type_0() { return static_cast(offsetof(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099, ___Type_0)); } inline int32_t get_Type_0() const { return ___Type_0; } inline int32_t* get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(int32_t value) { ___Type_0 = value; } inline static int32_t get_offset_of_NumBones_1() { return static_cast(offsetof(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099, ___NumBones_1)); } inline uint32_t get_NumBones_1() const { return ___NumBones_1; } inline uint32_t* get_address_of_NumBones_1() { return &___NumBones_1; } inline void set_NumBones_1(uint32_t value) { ___NumBones_1 = value; } inline static int32_t get_offset_of_NumBoneCapsules_2() { return static_cast(offsetof(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099, ___NumBoneCapsules_2)); } inline uint32_t get_NumBoneCapsules_2() const { return ___NumBoneCapsules_2; } inline uint32_t* get_address_of_NumBoneCapsules_2() { return &___NumBoneCapsules_2; } inline void set_NumBoneCapsules_2(uint32_t value) { ___NumBoneCapsules_2 = value; } inline static int32_t get_offset_of_Bones_3() { return static_cast(offsetof(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099, ___Bones_3)); } inline BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981* get_Bones_3() const { return ___Bones_3; } inline BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981** get_address_of_Bones_3() { return &___Bones_3; } inline void set_Bones_3(BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981* value) { ___Bones_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Bones_3), (void*)value); } inline static int32_t get_offset_of_BoneCapsules_4() { return static_cast(offsetof(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099, ___BoneCapsules_4)); } inline BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295* get_BoneCapsules_4() const { return ___BoneCapsules_4; } inline BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295** get_address_of_BoneCapsules_4() { return &___BoneCapsules_4; } inline void set_BoneCapsules_4(BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295* value) { ___BoneCapsules_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___BoneCapsules_4), (void*)value); } }; // Native definition for P/Invoke marshalling of OVRPlugin/Skeleton struct Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke { int32_t ___Type_0; uint32_t ___NumBones_1; uint32_t ___NumBoneCapsules_2; Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_3[24]; BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_4[19]; }; // Native definition for COM marshalling of OVRPlugin/Skeleton struct Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_com { int32_t ___Type_0; uint32_t ___NumBones_1; uint32_t ___NumBoneCapsules_2; Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_3[24]; BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_4[19]; }; // OVRPlugin/Skeleton2Internal struct Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6 { public: // OVRPlugin/SkeletonType OVRPlugin/Skeleton2Internal::Type int32_t ___Type_0; // System.UInt32 OVRPlugin/Skeleton2Internal::NumBones uint32_t ___NumBones_1; // System.UInt32 OVRPlugin/Skeleton2Internal::NumBoneCapsules uint32_t ___NumBoneCapsules_2; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_0 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_0_3; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_1 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_1_4; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_2 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_2_5; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_3 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_3_6; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_4 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_4_7; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_5 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_5_8; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_6 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_6_9; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_7 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_7_10; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_8 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_8_11; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_9 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_9_12; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_10 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_10_13; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_11 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_11_14; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_12 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_12_15; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_13 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_13_16; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_14 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_14_17; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_15 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_15_18; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_16 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_16_19; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_17 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_17_20; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_18 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_18_21; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_19 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_19_22; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_20 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_20_23; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_21 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_21_24; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_22 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_22_25; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_23 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_23_26; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_24 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_24_27; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_25 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_25_28; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_26 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_26_29; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_27 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_27_30; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_28 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_28_31; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_29 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_29_32; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_30 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_30_33; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_31 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_31_34; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_32 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_32_35; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_33 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_33_36; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_34 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_34_37; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_35 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_35_38; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_36 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_36_39; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_37 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_37_40; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_38 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_38_41; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_39 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_39_42; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_40 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_40_43; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_41 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_41_44; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_42 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_42_45; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_43 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_43_46; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_44 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_44_47; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_45 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_45_48; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_46 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_46_49; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_47 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_47_50; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_48 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_48_51; // OVRPlugin/Bone OVRPlugin/Skeleton2Internal::Bones_49 Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 ___Bones_49_52; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_0 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_0_53; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_1 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_1_54; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_2 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_2_55; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_3 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_3_56; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_4 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_4_57; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_5 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_5_58; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_6 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_6_59; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_7 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_7_60; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_8 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_8_61; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_9 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_9_62; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_10 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_10_63; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_11 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_11_64; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_12 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_12_65; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_13 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_13_66; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_14 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_14_67; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_15 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_15_68; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_16 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_16_69; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_17 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_17_70; // OVRPlugin/BoneCapsule OVRPlugin/Skeleton2Internal::BoneCapsules_18 BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 ___BoneCapsules_18_71; public: inline static int32_t get_offset_of_Type_0() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Type_0)); } inline int32_t get_Type_0() const { return ___Type_0; } inline int32_t* get_address_of_Type_0() { return &___Type_0; } inline void set_Type_0(int32_t value) { ___Type_0 = value; } inline static int32_t get_offset_of_NumBones_1() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___NumBones_1)); } inline uint32_t get_NumBones_1() const { return ___NumBones_1; } inline uint32_t* get_address_of_NumBones_1() { return &___NumBones_1; } inline void set_NumBones_1(uint32_t value) { ___NumBones_1 = value; } inline static int32_t get_offset_of_NumBoneCapsules_2() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___NumBoneCapsules_2)); } inline uint32_t get_NumBoneCapsules_2() const { return ___NumBoneCapsules_2; } inline uint32_t* get_address_of_NumBoneCapsules_2() { return &___NumBoneCapsules_2; } inline void set_NumBoneCapsules_2(uint32_t value) { ___NumBoneCapsules_2 = value; } inline static int32_t get_offset_of_Bones_0_3() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_0_3)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_0_3() const { return ___Bones_0_3; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_0_3() { return &___Bones_0_3; } inline void set_Bones_0_3(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_0_3 = value; } inline static int32_t get_offset_of_Bones_1_4() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_1_4)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_1_4() const { return ___Bones_1_4; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_1_4() { return &___Bones_1_4; } inline void set_Bones_1_4(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_1_4 = value; } inline static int32_t get_offset_of_Bones_2_5() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_2_5)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_2_5() const { return ___Bones_2_5; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_2_5() { return &___Bones_2_5; } inline void set_Bones_2_5(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_2_5 = value; } inline static int32_t get_offset_of_Bones_3_6() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_3_6)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_3_6() const { return ___Bones_3_6; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_3_6() { return &___Bones_3_6; } inline void set_Bones_3_6(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_3_6 = value; } inline static int32_t get_offset_of_Bones_4_7() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_4_7)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_4_7() const { return ___Bones_4_7; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_4_7() { return &___Bones_4_7; } inline void set_Bones_4_7(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_4_7 = value; } inline static int32_t get_offset_of_Bones_5_8() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_5_8)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_5_8() const { return ___Bones_5_8; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_5_8() { return &___Bones_5_8; } inline void set_Bones_5_8(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_5_8 = value; } inline static int32_t get_offset_of_Bones_6_9() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_6_9)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_6_9() const { return ___Bones_6_9; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_6_9() { return &___Bones_6_9; } inline void set_Bones_6_9(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_6_9 = value; } inline static int32_t get_offset_of_Bones_7_10() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_7_10)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_7_10() const { return ___Bones_7_10; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_7_10() { return &___Bones_7_10; } inline void set_Bones_7_10(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_7_10 = value; } inline static int32_t get_offset_of_Bones_8_11() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_8_11)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_8_11() const { return ___Bones_8_11; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_8_11() { return &___Bones_8_11; } inline void set_Bones_8_11(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_8_11 = value; } inline static int32_t get_offset_of_Bones_9_12() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_9_12)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_9_12() const { return ___Bones_9_12; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_9_12() { return &___Bones_9_12; } inline void set_Bones_9_12(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_9_12 = value; } inline static int32_t get_offset_of_Bones_10_13() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_10_13)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_10_13() const { return ___Bones_10_13; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_10_13() { return &___Bones_10_13; } inline void set_Bones_10_13(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_10_13 = value; } inline static int32_t get_offset_of_Bones_11_14() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_11_14)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_11_14() const { return ___Bones_11_14; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_11_14() { return &___Bones_11_14; } inline void set_Bones_11_14(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_11_14 = value; } inline static int32_t get_offset_of_Bones_12_15() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_12_15)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_12_15() const { return ___Bones_12_15; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_12_15() { return &___Bones_12_15; } inline void set_Bones_12_15(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_12_15 = value; } inline static int32_t get_offset_of_Bones_13_16() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_13_16)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_13_16() const { return ___Bones_13_16; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_13_16() { return &___Bones_13_16; } inline void set_Bones_13_16(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_13_16 = value; } inline static int32_t get_offset_of_Bones_14_17() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_14_17)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_14_17() const { return ___Bones_14_17; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_14_17() { return &___Bones_14_17; } inline void set_Bones_14_17(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_14_17 = value; } inline static int32_t get_offset_of_Bones_15_18() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_15_18)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_15_18() const { return ___Bones_15_18; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_15_18() { return &___Bones_15_18; } inline void set_Bones_15_18(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_15_18 = value; } inline static int32_t get_offset_of_Bones_16_19() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_16_19)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_16_19() const { return ___Bones_16_19; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_16_19() { return &___Bones_16_19; } inline void set_Bones_16_19(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_16_19 = value; } inline static int32_t get_offset_of_Bones_17_20() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_17_20)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_17_20() const { return ___Bones_17_20; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_17_20() { return &___Bones_17_20; } inline void set_Bones_17_20(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_17_20 = value; } inline static int32_t get_offset_of_Bones_18_21() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_18_21)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_18_21() const { return ___Bones_18_21; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_18_21() { return &___Bones_18_21; } inline void set_Bones_18_21(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_18_21 = value; } inline static int32_t get_offset_of_Bones_19_22() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_19_22)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_19_22() const { return ___Bones_19_22; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_19_22() { return &___Bones_19_22; } inline void set_Bones_19_22(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_19_22 = value; } inline static int32_t get_offset_of_Bones_20_23() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_20_23)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_20_23() const { return ___Bones_20_23; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_20_23() { return &___Bones_20_23; } inline void set_Bones_20_23(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_20_23 = value; } inline static int32_t get_offset_of_Bones_21_24() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_21_24)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_21_24() const { return ___Bones_21_24; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_21_24() { return &___Bones_21_24; } inline void set_Bones_21_24(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_21_24 = value; } inline static int32_t get_offset_of_Bones_22_25() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_22_25)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_22_25() const { return ___Bones_22_25; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_22_25() { return &___Bones_22_25; } inline void set_Bones_22_25(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_22_25 = value; } inline static int32_t get_offset_of_Bones_23_26() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_23_26)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_23_26() const { return ___Bones_23_26; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_23_26() { return &___Bones_23_26; } inline void set_Bones_23_26(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_23_26 = value; } inline static int32_t get_offset_of_Bones_24_27() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_24_27)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_24_27() const { return ___Bones_24_27; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_24_27() { return &___Bones_24_27; } inline void set_Bones_24_27(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_24_27 = value; } inline static int32_t get_offset_of_Bones_25_28() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_25_28)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_25_28() const { return ___Bones_25_28; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_25_28() { return &___Bones_25_28; } inline void set_Bones_25_28(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_25_28 = value; } inline static int32_t get_offset_of_Bones_26_29() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_26_29)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_26_29() const { return ___Bones_26_29; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_26_29() { return &___Bones_26_29; } inline void set_Bones_26_29(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_26_29 = value; } inline static int32_t get_offset_of_Bones_27_30() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_27_30)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_27_30() const { return ___Bones_27_30; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_27_30() { return &___Bones_27_30; } inline void set_Bones_27_30(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_27_30 = value; } inline static int32_t get_offset_of_Bones_28_31() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_28_31)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_28_31() const { return ___Bones_28_31; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_28_31() { return &___Bones_28_31; } inline void set_Bones_28_31(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_28_31 = value; } inline static int32_t get_offset_of_Bones_29_32() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_29_32)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_29_32() const { return ___Bones_29_32; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_29_32() { return &___Bones_29_32; } inline void set_Bones_29_32(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_29_32 = value; } inline static int32_t get_offset_of_Bones_30_33() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_30_33)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_30_33() const { return ___Bones_30_33; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_30_33() { return &___Bones_30_33; } inline void set_Bones_30_33(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_30_33 = value; } inline static int32_t get_offset_of_Bones_31_34() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_31_34)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_31_34() const { return ___Bones_31_34; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_31_34() { return &___Bones_31_34; } inline void set_Bones_31_34(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_31_34 = value; } inline static int32_t get_offset_of_Bones_32_35() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_32_35)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_32_35() const { return ___Bones_32_35; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_32_35() { return &___Bones_32_35; } inline void set_Bones_32_35(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_32_35 = value; } inline static int32_t get_offset_of_Bones_33_36() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_33_36)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_33_36() const { return ___Bones_33_36; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_33_36() { return &___Bones_33_36; } inline void set_Bones_33_36(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_33_36 = value; } inline static int32_t get_offset_of_Bones_34_37() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_34_37)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_34_37() const { return ___Bones_34_37; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_34_37() { return &___Bones_34_37; } inline void set_Bones_34_37(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_34_37 = value; } inline static int32_t get_offset_of_Bones_35_38() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_35_38)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_35_38() const { return ___Bones_35_38; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_35_38() { return &___Bones_35_38; } inline void set_Bones_35_38(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_35_38 = value; } inline static int32_t get_offset_of_Bones_36_39() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_36_39)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_36_39() const { return ___Bones_36_39; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_36_39() { return &___Bones_36_39; } inline void set_Bones_36_39(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_36_39 = value; } inline static int32_t get_offset_of_Bones_37_40() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_37_40)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_37_40() const { return ___Bones_37_40; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_37_40() { return &___Bones_37_40; } inline void set_Bones_37_40(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_37_40 = value; } inline static int32_t get_offset_of_Bones_38_41() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_38_41)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_38_41() const { return ___Bones_38_41; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_38_41() { return &___Bones_38_41; } inline void set_Bones_38_41(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_38_41 = value; } inline static int32_t get_offset_of_Bones_39_42() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_39_42)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_39_42() const { return ___Bones_39_42; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_39_42() { return &___Bones_39_42; } inline void set_Bones_39_42(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_39_42 = value; } inline static int32_t get_offset_of_Bones_40_43() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_40_43)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_40_43() const { return ___Bones_40_43; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_40_43() { return &___Bones_40_43; } inline void set_Bones_40_43(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_40_43 = value; } inline static int32_t get_offset_of_Bones_41_44() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_41_44)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_41_44() const { return ___Bones_41_44; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_41_44() { return &___Bones_41_44; } inline void set_Bones_41_44(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_41_44 = value; } inline static int32_t get_offset_of_Bones_42_45() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_42_45)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_42_45() const { return ___Bones_42_45; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_42_45() { return &___Bones_42_45; } inline void set_Bones_42_45(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_42_45 = value; } inline static int32_t get_offset_of_Bones_43_46() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_43_46)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_43_46() const { return ___Bones_43_46; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_43_46() { return &___Bones_43_46; } inline void set_Bones_43_46(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_43_46 = value; } inline static int32_t get_offset_of_Bones_44_47() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_44_47)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_44_47() const { return ___Bones_44_47; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_44_47() { return &___Bones_44_47; } inline void set_Bones_44_47(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_44_47 = value; } inline static int32_t get_offset_of_Bones_45_48() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_45_48)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_45_48() const { return ___Bones_45_48; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_45_48() { return &___Bones_45_48; } inline void set_Bones_45_48(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_45_48 = value; } inline static int32_t get_offset_of_Bones_46_49() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_46_49)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_46_49() const { return ___Bones_46_49; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_46_49() { return &___Bones_46_49; } inline void set_Bones_46_49(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_46_49 = value; } inline static int32_t get_offset_of_Bones_47_50() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_47_50)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_47_50() const { return ___Bones_47_50; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_47_50() { return &___Bones_47_50; } inline void set_Bones_47_50(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_47_50 = value; } inline static int32_t get_offset_of_Bones_48_51() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_48_51)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_48_51() const { return ___Bones_48_51; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_48_51() { return &___Bones_48_51; } inline void set_Bones_48_51(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_48_51 = value; } inline static int32_t get_offset_of_Bones_49_52() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___Bones_49_52)); } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 get_Bones_49_52() const { return ___Bones_49_52; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * get_address_of_Bones_49_52() { return &___Bones_49_52; } inline void set_Bones_49_52(Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { ___Bones_49_52 = value; } inline static int32_t get_offset_of_BoneCapsules_0_53() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_0_53)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_0_53() const { return ___BoneCapsules_0_53; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_0_53() { return &___BoneCapsules_0_53; } inline void set_BoneCapsules_0_53(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_0_53 = value; } inline static int32_t get_offset_of_BoneCapsules_1_54() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_1_54)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_1_54() const { return ___BoneCapsules_1_54; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_1_54() { return &___BoneCapsules_1_54; } inline void set_BoneCapsules_1_54(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_1_54 = value; } inline static int32_t get_offset_of_BoneCapsules_2_55() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_2_55)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_2_55() const { return ___BoneCapsules_2_55; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_2_55() { return &___BoneCapsules_2_55; } inline void set_BoneCapsules_2_55(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_2_55 = value; } inline static int32_t get_offset_of_BoneCapsules_3_56() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_3_56)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_3_56() const { return ___BoneCapsules_3_56; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_3_56() { return &___BoneCapsules_3_56; } inline void set_BoneCapsules_3_56(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_3_56 = value; } inline static int32_t get_offset_of_BoneCapsules_4_57() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_4_57)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_4_57() const { return ___BoneCapsules_4_57; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_4_57() { return &___BoneCapsules_4_57; } inline void set_BoneCapsules_4_57(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_4_57 = value; } inline static int32_t get_offset_of_BoneCapsules_5_58() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_5_58)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_5_58() const { return ___BoneCapsules_5_58; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_5_58() { return &___BoneCapsules_5_58; } inline void set_BoneCapsules_5_58(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_5_58 = value; } inline static int32_t get_offset_of_BoneCapsules_6_59() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_6_59)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_6_59() const { return ___BoneCapsules_6_59; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_6_59() { return &___BoneCapsules_6_59; } inline void set_BoneCapsules_6_59(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_6_59 = value; } inline static int32_t get_offset_of_BoneCapsules_7_60() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_7_60)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_7_60() const { return ___BoneCapsules_7_60; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_7_60() { return &___BoneCapsules_7_60; } inline void set_BoneCapsules_7_60(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_7_60 = value; } inline static int32_t get_offset_of_BoneCapsules_8_61() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_8_61)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_8_61() const { return ___BoneCapsules_8_61; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_8_61() { return &___BoneCapsules_8_61; } inline void set_BoneCapsules_8_61(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_8_61 = value; } inline static int32_t get_offset_of_BoneCapsules_9_62() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_9_62)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_9_62() const { return ___BoneCapsules_9_62; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_9_62() { return &___BoneCapsules_9_62; } inline void set_BoneCapsules_9_62(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_9_62 = value; } inline static int32_t get_offset_of_BoneCapsules_10_63() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_10_63)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_10_63() const { return ___BoneCapsules_10_63; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_10_63() { return &___BoneCapsules_10_63; } inline void set_BoneCapsules_10_63(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_10_63 = value; } inline static int32_t get_offset_of_BoneCapsules_11_64() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_11_64)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_11_64() const { return ___BoneCapsules_11_64; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_11_64() { return &___BoneCapsules_11_64; } inline void set_BoneCapsules_11_64(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_11_64 = value; } inline static int32_t get_offset_of_BoneCapsules_12_65() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_12_65)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_12_65() const { return ___BoneCapsules_12_65; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_12_65() { return &___BoneCapsules_12_65; } inline void set_BoneCapsules_12_65(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_12_65 = value; } inline static int32_t get_offset_of_BoneCapsules_13_66() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_13_66)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_13_66() const { return ___BoneCapsules_13_66; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_13_66() { return &___BoneCapsules_13_66; } inline void set_BoneCapsules_13_66(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_13_66 = value; } inline static int32_t get_offset_of_BoneCapsules_14_67() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_14_67)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_14_67() const { return ___BoneCapsules_14_67; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_14_67() { return &___BoneCapsules_14_67; } inline void set_BoneCapsules_14_67(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_14_67 = value; } inline static int32_t get_offset_of_BoneCapsules_15_68() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_15_68)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_15_68() const { return ___BoneCapsules_15_68; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_15_68() { return &___BoneCapsules_15_68; } inline void set_BoneCapsules_15_68(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_15_68 = value; } inline static int32_t get_offset_of_BoneCapsules_16_69() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_16_69)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_16_69() const { return ___BoneCapsules_16_69; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_16_69() { return &___BoneCapsules_16_69; } inline void set_BoneCapsules_16_69(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_16_69 = value; } inline static int32_t get_offset_of_BoneCapsules_17_70() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_17_70)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_17_70() const { return ___BoneCapsules_17_70; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_17_70() { return &___BoneCapsules_17_70; } inline void set_BoneCapsules_17_70(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_17_70 = value; } inline static int32_t get_offset_of_BoneCapsules_18_71() { return static_cast(offsetof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6, ___BoneCapsules_18_71)); } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 get_BoneCapsules_18_71() const { return ___BoneCapsules_18_71; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * get_address_of_BoneCapsules_18_71() { return &___BoneCapsules_18_71; } inline void set_BoneCapsules_18_71(BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { ___BoneCapsules_18_71 = value; } }; // OVRControllerTest/BoolMonitor/BoolGenerator struct BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 : public MulticastDelegate_t { public: public: }; // OVRHandTest/BoolMonitor/BoolGenerator struct BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A : public MulticastDelegate_t { public: public: }; // UnityEngine.Camera struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // UnityEngine.CapsuleCollider struct CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 : public Collider_t5E81E43C2ECA0209A7C4528E84A632712D192B02 { public: public: }; // UnityEngine.LineRenderer struct LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 : public Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C { public: public: }; // UnityEngine.MeshRenderer struct MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B : public Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C { public: public: }; // UnityEngine.MonoBehaviour struct MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A : public Behaviour_t1A3DDDCF73B4627928FBFE02ED52B7251777DBD9 { public: public: }; // System.ObjectDisposedException struct ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A : public InvalidOperationException_t10D3EE59AD28EC641ACEE05BCA4271A527E5ECAB { public: // System.String System.ObjectDisposedException::objectName String_t* ___objectName_17; public: inline static int32_t get_offset_of_objectName_17() { return static_cast(offsetof(ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A, ___objectName_17)); } inline String_t* get_objectName_17() const { return ___objectName_17; } inline String_t** get_address_of_objectName_17() { return &___objectName_17; } inline void set_objectName_17(String_t* value) { ___objectName_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___objectName_17), (void*)value); } }; // System.ComponentModel.Win32Exception struct Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 : public ExternalException_tC18275DD0AEB2CDF9F85D94670C5A49A4DC3B783 { public: // System.Int32 System.ComponentModel.Win32Exception::nativeErrorCode int32_t ___nativeErrorCode_17; public: inline static int32_t get_offset_of_nativeErrorCode_17() { return static_cast(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950, ___nativeErrorCode_17)); } inline int32_t get_nativeErrorCode_17() const { return ___nativeErrorCode_17; } inline int32_t* get_address_of_nativeErrorCode_17() { return &___nativeErrorCode_17; } inline void set_nativeErrorCode_17(int32_t value) { ___nativeErrorCode_17 = value; } }; // OVRGLTFLoader/<>c__DisplayClass16_0 struct U3CU3Ec__DisplayClass16_0_t0F271AD861E4457446EA28F2A62A60968C4B1C2E : public RuntimeObject { public: // OVRGLTFLoader OVRGLTFLoader/<>c__DisplayClass16_0::<>4__this OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01 * ___U3CU3E4__this_0; // OVRMaterialData OVRGLTFLoader/<>c__DisplayClass16_0::matData OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455 ___matData_1; public: inline static int32_t get_offset_of_U3CU3E4__this_0() { return static_cast(offsetof(U3CU3Ec__DisplayClass16_0_t0F271AD861E4457446EA28F2A62A60968C4B1C2E, ___U3CU3E4__this_0)); } inline OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01 * get_U3CU3E4__this_0() const { return ___U3CU3E4__this_0; } inline OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01 ** get_address_of_U3CU3E4__this_0() { return &___U3CU3E4__this_0; } inline void set_U3CU3E4__this_0(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01 * value) { ___U3CU3E4__this_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E4__this_0), (void*)value); } inline static int32_t get_offset_of_matData_1() { return static_cast(offsetof(U3CU3Ec__DisplayClass16_0_t0F271AD861E4457446EA28F2A62A60968C4B1C2E, ___matData_1)); } inline OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455 get_matData_1() const { return ___matData_1; } inline OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455 * get_address_of_matData_1() { return &___matData_1; } inline void set_matData_1(OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455 value) { ___matData_1 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___matData_1))->___shader_0), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((&(((&___matData_1))->___texture_2))->___data_0), (void*)NULL); #endif } }; // OVRCameraRig struct OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CtrackingSpaceU3Ek__BackingField_4; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CleftEyeAnchorU3Ek__BackingField_5; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CcenterEyeAnchorU3Ek__BackingField_6; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CrightEyeAnchorU3Ek__BackingField_7; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CleftHandAnchorU3Ek__BackingField_8; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CrightHandAnchorU3Ek__BackingField_9; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CleftControllerAnchorU3Ek__BackingField_10; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CrightControllerAnchorU3Ek__BackingField_11; // UnityEngine.Transform OVRCameraRig::k__BackingField Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___U3CtrackerAnchorU3Ek__BackingField_12; // System.Action`1 OVRCameraRig::UpdatedAnchors Action_1_t75B6371B869E36A42B0DFFC8D8B2630F1D659A6C * ___UpdatedAnchors_13; // System.Boolean OVRCameraRig::usePerEyeCameras bool ___usePerEyeCameras_14; // System.Boolean OVRCameraRig::useFixedUpdateForTracking bool ___useFixedUpdateForTracking_15; // System.Boolean OVRCameraRig::disableEyeAnchorCameras bool ___disableEyeAnchorCameras_16; // System.Boolean OVRCameraRig::_skipUpdate bool ____skipUpdate_17; // System.String OVRCameraRig::trackingSpaceName String_t* ___trackingSpaceName_18; // System.String OVRCameraRig::trackerAnchorName String_t* ___trackerAnchorName_19; // System.String OVRCameraRig::leftEyeAnchorName String_t* ___leftEyeAnchorName_20; // System.String OVRCameraRig::centerEyeAnchorName String_t* ___centerEyeAnchorName_21; // System.String OVRCameraRig::rightEyeAnchorName String_t* ___rightEyeAnchorName_22; // System.String OVRCameraRig::leftHandAnchorName String_t* ___leftHandAnchorName_23; // System.String OVRCameraRig::rightHandAnchorName String_t* ___rightHandAnchorName_24; // System.String OVRCameraRig::leftControllerAnchorName String_t* ___leftControllerAnchorName_25; // System.String OVRCameraRig::rightControllerAnchorName String_t* ___rightControllerAnchorName_26; // UnityEngine.Camera OVRCameraRig::_centerEyeCamera Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ____centerEyeCamera_27; // UnityEngine.Camera OVRCameraRig::_leftEyeCamera Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ____leftEyeCamera_28; // UnityEngine.Camera OVRCameraRig::_rightEyeCamera Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ____rightEyeCamera_29; public: inline static int32_t get_offset_of_U3CtrackingSpaceU3Ek__BackingField_4() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CtrackingSpaceU3Ek__BackingField_4)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CtrackingSpaceU3Ek__BackingField_4() const { return ___U3CtrackingSpaceU3Ek__BackingField_4; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CtrackingSpaceU3Ek__BackingField_4() { return &___U3CtrackingSpaceU3Ek__BackingField_4; } inline void set_U3CtrackingSpaceU3Ek__BackingField_4(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CtrackingSpaceU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackingSpaceU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_U3CleftEyeAnchorU3Ek__BackingField_5() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CleftEyeAnchorU3Ek__BackingField_5)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CleftEyeAnchorU3Ek__BackingField_5() const { return ___U3CleftEyeAnchorU3Ek__BackingField_5; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CleftEyeAnchorU3Ek__BackingField_5() { return &___U3CleftEyeAnchorU3Ek__BackingField_5; } inline void set_U3CleftEyeAnchorU3Ek__BackingField_5(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CleftEyeAnchorU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CleftEyeAnchorU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CcenterEyeAnchorU3Ek__BackingField_6() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CcenterEyeAnchorU3Ek__BackingField_6)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CcenterEyeAnchorU3Ek__BackingField_6() const { return ___U3CcenterEyeAnchorU3Ek__BackingField_6; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CcenterEyeAnchorU3Ek__BackingField_6() { return &___U3CcenterEyeAnchorU3Ek__BackingField_6; } inline void set_U3CcenterEyeAnchorU3Ek__BackingField_6(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CcenterEyeAnchorU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CcenterEyeAnchorU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CrightEyeAnchorU3Ek__BackingField_7() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CrightEyeAnchorU3Ek__BackingField_7)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CrightEyeAnchorU3Ek__BackingField_7() const { return ___U3CrightEyeAnchorU3Ek__BackingField_7; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CrightEyeAnchorU3Ek__BackingField_7() { return &___U3CrightEyeAnchorU3Ek__BackingField_7; } inline void set_U3CrightEyeAnchorU3Ek__BackingField_7(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CrightEyeAnchorU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrightEyeAnchorU3Ek__BackingField_7), (void*)value); } inline static int32_t get_offset_of_U3CleftHandAnchorU3Ek__BackingField_8() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CleftHandAnchorU3Ek__BackingField_8)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CleftHandAnchorU3Ek__BackingField_8() const { return ___U3CleftHandAnchorU3Ek__BackingField_8; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CleftHandAnchorU3Ek__BackingField_8() { return &___U3CleftHandAnchorU3Ek__BackingField_8; } inline void set_U3CleftHandAnchorU3Ek__BackingField_8(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CleftHandAnchorU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CleftHandAnchorU3Ek__BackingField_8), (void*)value); } inline static int32_t get_offset_of_U3CrightHandAnchorU3Ek__BackingField_9() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CrightHandAnchorU3Ek__BackingField_9)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CrightHandAnchorU3Ek__BackingField_9() const { return ___U3CrightHandAnchorU3Ek__BackingField_9; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CrightHandAnchorU3Ek__BackingField_9() { return &___U3CrightHandAnchorU3Ek__BackingField_9; } inline void set_U3CrightHandAnchorU3Ek__BackingField_9(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CrightHandAnchorU3Ek__BackingField_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrightHandAnchorU3Ek__BackingField_9), (void*)value); } inline static int32_t get_offset_of_U3CleftControllerAnchorU3Ek__BackingField_10() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CleftControllerAnchorU3Ek__BackingField_10)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CleftControllerAnchorU3Ek__BackingField_10() const { return ___U3CleftControllerAnchorU3Ek__BackingField_10; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CleftControllerAnchorU3Ek__BackingField_10() { return &___U3CleftControllerAnchorU3Ek__BackingField_10; } inline void set_U3CleftControllerAnchorU3Ek__BackingField_10(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CleftControllerAnchorU3Ek__BackingField_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CleftControllerAnchorU3Ek__BackingField_10), (void*)value); } inline static int32_t get_offset_of_U3CrightControllerAnchorU3Ek__BackingField_11() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CrightControllerAnchorU3Ek__BackingField_11)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CrightControllerAnchorU3Ek__BackingField_11() const { return ___U3CrightControllerAnchorU3Ek__BackingField_11; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CrightControllerAnchorU3Ek__BackingField_11() { return &___U3CrightControllerAnchorU3Ek__BackingField_11; } inline void set_U3CrightControllerAnchorU3Ek__BackingField_11(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CrightControllerAnchorU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CrightControllerAnchorU3Ek__BackingField_11), (void*)value); } inline static int32_t get_offset_of_U3CtrackerAnchorU3Ek__BackingField_12() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___U3CtrackerAnchorU3Ek__BackingField_12)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_U3CtrackerAnchorU3Ek__BackingField_12() const { return ___U3CtrackerAnchorU3Ek__BackingField_12; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_U3CtrackerAnchorU3Ek__BackingField_12() { return &___U3CtrackerAnchorU3Ek__BackingField_12; } inline void set_U3CtrackerAnchorU3Ek__BackingField_12(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___U3CtrackerAnchorU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackerAnchorU3Ek__BackingField_12), (void*)value); } inline static int32_t get_offset_of_UpdatedAnchors_13() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___UpdatedAnchors_13)); } inline Action_1_t75B6371B869E36A42B0DFFC8D8B2630F1D659A6C * get_UpdatedAnchors_13() const { return ___UpdatedAnchors_13; } inline Action_1_t75B6371B869E36A42B0DFFC8D8B2630F1D659A6C ** get_address_of_UpdatedAnchors_13() { return &___UpdatedAnchors_13; } inline void set_UpdatedAnchors_13(Action_1_t75B6371B869E36A42B0DFFC8D8B2630F1D659A6C * value) { ___UpdatedAnchors_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___UpdatedAnchors_13), (void*)value); } inline static int32_t get_offset_of_usePerEyeCameras_14() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___usePerEyeCameras_14)); } inline bool get_usePerEyeCameras_14() const { return ___usePerEyeCameras_14; } inline bool* get_address_of_usePerEyeCameras_14() { return &___usePerEyeCameras_14; } inline void set_usePerEyeCameras_14(bool value) { ___usePerEyeCameras_14 = value; } inline static int32_t get_offset_of_useFixedUpdateForTracking_15() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___useFixedUpdateForTracking_15)); } inline bool get_useFixedUpdateForTracking_15() const { return ___useFixedUpdateForTracking_15; } inline bool* get_address_of_useFixedUpdateForTracking_15() { return &___useFixedUpdateForTracking_15; } inline void set_useFixedUpdateForTracking_15(bool value) { ___useFixedUpdateForTracking_15 = value; } inline static int32_t get_offset_of_disableEyeAnchorCameras_16() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___disableEyeAnchorCameras_16)); } inline bool get_disableEyeAnchorCameras_16() const { return ___disableEyeAnchorCameras_16; } inline bool* get_address_of_disableEyeAnchorCameras_16() { return &___disableEyeAnchorCameras_16; } inline void set_disableEyeAnchorCameras_16(bool value) { ___disableEyeAnchorCameras_16 = value; } inline static int32_t get_offset_of__skipUpdate_17() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ____skipUpdate_17)); } inline bool get__skipUpdate_17() const { return ____skipUpdate_17; } inline bool* get_address_of__skipUpdate_17() { return &____skipUpdate_17; } inline void set__skipUpdate_17(bool value) { ____skipUpdate_17 = value; } inline static int32_t get_offset_of_trackingSpaceName_18() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___trackingSpaceName_18)); } inline String_t* get_trackingSpaceName_18() const { return ___trackingSpaceName_18; } inline String_t** get_address_of_trackingSpaceName_18() { return &___trackingSpaceName_18; } inline void set_trackingSpaceName_18(String_t* value) { ___trackingSpaceName_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___trackingSpaceName_18), (void*)value); } inline static int32_t get_offset_of_trackerAnchorName_19() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___trackerAnchorName_19)); } inline String_t* get_trackerAnchorName_19() const { return ___trackerAnchorName_19; } inline String_t** get_address_of_trackerAnchorName_19() { return &___trackerAnchorName_19; } inline void set_trackerAnchorName_19(String_t* value) { ___trackerAnchorName_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___trackerAnchorName_19), (void*)value); } inline static int32_t get_offset_of_leftEyeAnchorName_20() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___leftEyeAnchorName_20)); } inline String_t* get_leftEyeAnchorName_20() const { return ___leftEyeAnchorName_20; } inline String_t** get_address_of_leftEyeAnchorName_20() { return &___leftEyeAnchorName_20; } inline void set_leftEyeAnchorName_20(String_t* value) { ___leftEyeAnchorName_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftEyeAnchorName_20), (void*)value); } inline static int32_t get_offset_of_centerEyeAnchorName_21() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___centerEyeAnchorName_21)); } inline String_t* get_centerEyeAnchorName_21() const { return ___centerEyeAnchorName_21; } inline String_t** get_address_of_centerEyeAnchorName_21() { return &___centerEyeAnchorName_21; } inline void set_centerEyeAnchorName_21(String_t* value) { ___centerEyeAnchorName_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___centerEyeAnchorName_21), (void*)value); } inline static int32_t get_offset_of_rightEyeAnchorName_22() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___rightEyeAnchorName_22)); } inline String_t* get_rightEyeAnchorName_22() const { return ___rightEyeAnchorName_22; } inline String_t** get_address_of_rightEyeAnchorName_22() { return &___rightEyeAnchorName_22; } inline void set_rightEyeAnchorName_22(String_t* value) { ___rightEyeAnchorName_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightEyeAnchorName_22), (void*)value); } inline static int32_t get_offset_of_leftHandAnchorName_23() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___leftHandAnchorName_23)); } inline String_t* get_leftHandAnchorName_23() const { return ___leftHandAnchorName_23; } inline String_t** get_address_of_leftHandAnchorName_23() { return &___leftHandAnchorName_23; } inline void set_leftHandAnchorName_23(String_t* value) { ___leftHandAnchorName_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftHandAnchorName_23), (void*)value); } inline static int32_t get_offset_of_rightHandAnchorName_24() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___rightHandAnchorName_24)); } inline String_t* get_rightHandAnchorName_24() const { return ___rightHandAnchorName_24; } inline String_t** get_address_of_rightHandAnchorName_24() { return &___rightHandAnchorName_24; } inline void set_rightHandAnchorName_24(String_t* value) { ___rightHandAnchorName_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightHandAnchorName_24), (void*)value); } inline static int32_t get_offset_of_leftControllerAnchorName_25() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___leftControllerAnchorName_25)); } inline String_t* get_leftControllerAnchorName_25() const { return ___leftControllerAnchorName_25; } inline String_t** get_address_of_leftControllerAnchorName_25() { return &___leftControllerAnchorName_25; } inline void set_leftControllerAnchorName_25(String_t* value) { ___leftControllerAnchorName_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftControllerAnchorName_25), (void*)value); } inline static int32_t get_offset_of_rightControllerAnchorName_26() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ___rightControllerAnchorName_26)); } inline String_t* get_rightControllerAnchorName_26() const { return ___rightControllerAnchorName_26; } inline String_t** get_address_of_rightControllerAnchorName_26() { return &___rightControllerAnchorName_26; } inline void set_rightControllerAnchorName_26(String_t* value) { ___rightControllerAnchorName_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightControllerAnchorName_26), (void*)value); } inline static int32_t get_offset_of__centerEyeCamera_27() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ____centerEyeCamera_27)); } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * get__centerEyeCamera_27() const { return ____centerEyeCamera_27; } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C ** get_address_of__centerEyeCamera_27() { return &____centerEyeCamera_27; } inline void set__centerEyeCamera_27(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * value) { ____centerEyeCamera_27 = value; Il2CppCodeGenWriteBarrier((void**)(&____centerEyeCamera_27), (void*)value); } inline static int32_t get_offset_of__leftEyeCamera_28() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ____leftEyeCamera_28)); } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * get__leftEyeCamera_28() const { return ____leftEyeCamera_28; } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C ** get_address_of__leftEyeCamera_28() { return &____leftEyeCamera_28; } inline void set__leftEyeCamera_28(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * value) { ____leftEyeCamera_28 = value; Il2CppCodeGenWriteBarrier((void**)(&____leftEyeCamera_28), (void*)value); } inline static int32_t get_offset_of__rightEyeCamera_29() { return static_cast(offsetof(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517, ____rightEyeCamera_29)); } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * get__rightEyeCamera_29() const { return ____rightEyeCamera_29; } inline Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C ** get_address_of__rightEyeCamera_29() { return &____rightEyeCamera_29; } inline void set__rightEyeCamera_29(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * value) { ____rightEyeCamera_29 = value; Il2CppCodeGenWriteBarrier((void**)(&____rightEyeCamera_29), (void*)value); } }; // OVRHandTest struct OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // UnityEngine.UI.Text OVRHandTest::uiText Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___uiText_4; // System.Collections.Generic.List`1 OVRHandTest::monitors List_1_t615E6F3A4C2A54B096257A75A930596B3A8DDC4B * ___monitors_5; // System.Text.StringBuilder OVRHandTest::data StringBuilder_t * ___data_6; // OVRPlugin/HandState OVRHandTest::hs_LH HandState_t5377A12318B95003B2BB256777077FE3D05D0090 ___hs_LH_7; // OVRPlugin/HandState OVRHandTest::hs_RH HandState_t5377A12318B95003B2BB256777077FE3D05D0090 ___hs_RH_8; // OVRPlugin/Skeleton OVRHandTest::skel_LH Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 ___skel_LH_9; // OVRPlugin/Skeleton OVRHandTest::skel_RH Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 ___skel_RH_10; // OVRPlugin/Mesh OVRHandTest::mesh_LH Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E * ___mesh_LH_11; // OVRPlugin/Mesh OVRHandTest::mesh_RH Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E * ___mesh_RH_12; // System.Boolean OVRHandTest::result_skel_LH bool ___result_skel_LH_13; // System.Boolean OVRHandTest::result_skel_RH bool ___result_skel_RH_14; // System.Boolean OVRHandTest::result_mesh_LH bool ___result_mesh_LH_15; // System.Boolean OVRHandTest::result_mesh_RH bool ___result_mesh_RH_16; public: inline static int32_t get_offset_of_uiText_4() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___uiText_4)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_uiText_4() const { return ___uiText_4; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_uiText_4() { return &___uiText_4; } inline void set_uiText_4(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___uiText_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___uiText_4), (void*)value); } inline static int32_t get_offset_of_monitors_5() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___monitors_5)); } inline List_1_t615E6F3A4C2A54B096257A75A930596B3A8DDC4B * get_monitors_5() const { return ___monitors_5; } inline List_1_t615E6F3A4C2A54B096257A75A930596B3A8DDC4B ** get_address_of_monitors_5() { return &___monitors_5; } inline void set_monitors_5(List_1_t615E6F3A4C2A54B096257A75A930596B3A8DDC4B * value) { ___monitors_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___monitors_5), (void*)value); } inline static int32_t get_offset_of_data_6() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___data_6)); } inline StringBuilder_t * get_data_6() const { return ___data_6; } inline StringBuilder_t ** get_address_of_data_6() { return &___data_6; } inline void set_data_6(StringBuilder_t * value) { ___data_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___data_6), (void*)value); } inline static int32_t get_offset_of_hs_LH_7() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___hs_LH_7)); } inline HandState_t5377A12318B95003B2BB256777077FE3D05D0090 get_hs_LH_7() const { return ___hs_LH_7; } inline HandState_t5377A12318B95003B2BB256777077FE3D05D0090 * get_address_of_hs_LH_7() { return &___hs_LH_7; } inline void set_hs_LH_7(HandState_t5377A12318B95003B2BB256777077FE3D05D0090 value) { ___hs_LH_7 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___hs_LH_7))->___BoneRotations_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___hs_LH_7))->___PinchStrength_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___hs_LH_7))->___FingerConfidences_8), (void*)NULL); #endif } inline static int32_t get_offset_of_hs_RH_8() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___hs_RH_8)); } inline HandState_t5377A12318B95003B2BB256777077FE3D05D0090 get_hs_RH_8() const { return ___hs_RH_8; } inline HandState_t5377A12318B95003B2BB256777077FE3D05D0090 * get_address_of_hs_RH_8() { return &___hs_RH_8; } inline void set_hs_RH_8(HandState_t5377A12318B95003B2BB256777077FE3D05D0090 value) { ___hs_RH_8 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___hs_RH_8))->___BoneRotations_2), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___hs_RH_8))->___PinchStrength_4), (void*)NULL); #endif #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___hs_RH_8))->___FingerConfidences_8), (void*)NULL); #endif } inline static int32_t get_offset_of_skel_LH_9() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___skel_LH_9)); } inline Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 get_skel_LH_9() const { return ___skel_LH_9; } inline Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 * get_address_of_skel_LH_9() { return &___skel_LH_9; } inline void set_skel_LH_9(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 value) { ___skel_LH_9 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___skel_LH_9))->___Bones_3), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___skel_LH_9))->___BoneCapsules_4), (void*)NULL); #endif } inline static int32_t get_offset_of_skel_RH_10() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___skel_RH_10)); } inline Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 get_skel_RH_10() const { return ___skel_RH_10; } inline Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 * get_address_of_skel_RH_10() { return &___skel_RH_10; } inline void set_skel_RH_10(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 value) { ___skel_RH_10 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___skel_RH_10))->___Bones_3), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___skel_RH_10))->___BoneCapsules_4), (void*)NULL); #endif } inline static int32_t get_offset_of_mesh_LH_11() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___mesh_LH_11)); } inline Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E * get_mesh_LH_11() const { return ___mesh_LH_11; } inline Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E ** get_address_of_mesh_LH_11() { return &___mesh_LH_11; } inline void set_mesh_LH_11(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E * value) { ___mesh_LH_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___mesh_LH_11), (void*)value); } inline static int32_t get_offset_of_mesh_RH_12() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___mesh_RH_12)); } inline Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E * get_mesh_RH_12() const { return ___mesh_RH_12; } inline Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E ** get_address_of_mesh_RH_12() { return &___mesh_RH_12; } inline void set_mesh_RH_12(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E * value) { ___mesh_RH_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___mesh_RH_12), (void*)value); } inline static int32_t get_offset_of_result_skel_LH_13() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___result_skel_LH_13)); } inline bool get_result_skel_LH_13() const { return ___result_skel_LH_13; } inline bool* get_address_of_result_skel_LH_13() { return &___result_skel_LH_13; } inline void set_result_skel_LH_13(bool value) { ___result_skel_LH_13 = value; } inline static int32_t get_offset_of_result_skel_RH_14() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___result_skel_RH_14)); } inline bool get_result_skel_RH_14() const { return ___result_skel_RH_14; } inline bool* get_address_of_result_skel_RH_14() { return &___result_skel_RH_14; } inline void set_result_skel_RH_14(bool value) { ___result_skel_RH_14 = value; } inline static int32_t get_offset_of_result_mesh_LH_15() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___result_mesh_LH_15)); } inline bool get_result_mesh_LH_15() const { return ___result_mesh_LH_15; } inline bool* get_address_of_result_mesh_LH_15() { return &___result_mesh_LH_15; } inline void set_result_mesh_LH_15(bool value) { ___result_mesh_LH_15 = value; } inline static int32_t get_offset_of_result_mesh_RH_16() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF, ___result_mesh_RH_16)); } inline bool get_result_mesh_RH_16() const { return ___result_mesh_RH_16; } inline bool* get_address_of_result_mesh_RH_16() { return &___result_mesh_RH_16; } inline void set_result_mesh_RH_16(bool value) { ___result_mesh_RH_16 = value; } }; // OVRManager struct OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Collections.Generic.IEnumerable`1 OVRManager::disabledCameras RuntimeObject* ___disabledCameras_10; // System.Single OVRManager::prevTimeScale float ___prevTimeScale_11; // System.Boolean OVRManager::useRecommendedMSAALevel bool ___useRecommendedMSAALevel_38; // System.Boolean OVRManager::_monoscopic bool ____monoscopic_39; // OVRManager/ColorSpace OVRManager::_colorGamut int32_t ____colorGamut_40; // System.Single OVRManager::minRenderScale float ___minRenderScale_41; // System.Single OVRManager::maxRenderScale float ___maxRenderScale_42; // UnityEngine.Vector3 OVRManager::_headPoseRelativeOffsetRotation Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ____headPoseRelativeOffsetRotation_43; // UnityEngine.Vector3 OVRManager::_headPoseRelativeOffsetTranslation Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ____headPoseRelativeOffsetTranslation_44; // System.Int32 OVRManager::profilerTcpPort int32_t ___profilerTcpPort_45; // System.Boolean OVRManager::expandMixedRealityCapturePropertySheet bool ___expandMixedRealityCapturePropertySheet_46; // System.Boolean OVRManager::enableMixedReality bool ___enableMixedReality_47; // OVRManager/CompositionMethod OVRManager::compositionMethod int32_t ___compositionMethod_48; // UnityEngine.LayerMask OVRManager::extraHiddenLayers LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___extraHiddenLayers_49; // UnityEngine.LayerMask OVRManager::extraVisibleLayers LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 ___extraVisibleLayers_50; // System.Boolean OVRManager::dynamicCullingMask bool ___dynamicCullingMask_51; // UnityEngine.Color OVRManager::externalCompositionBackdropColorRift Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___externalCompositionBackdropColorRift_52; // UnityEngine.Color OVRManager::externalCompositionBackdropColorQuest Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___externalCompositionBackdropColorQuest_53; // OVRManager/CameraDevice OVRManager::capturingCameraDevice int32_t ___capturingCameraDevice_54; // System.Boolean OVRManager::flipCameraFrameHorizontally bool ___flipCameraFrameHorizontally_55; // System.Boolean OVRManager::flipCameraFrameVertically bool ___flipCameraFrameVertically_56; // System.Single OVRManager::handPoseStateLatency float ___handPoseStateLatency_57; // System.Single OVRManager::sandwichCompositionRenderLatency float ___sandwichCompositionRenderLatency_58; // System.Int32 OVRManager::sandwichCompositionBufferedFrames int32_t ___sandwichCompositionBufferedFrames_59; // UnityEngine.Color OVRManager::chromaKeyColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___chromaKeyColor_60; // System.Single OVRManager::chromaKeySimilarity float ___chromaKeySimilarity_61; // System.Single OVRManager::chromaKeySmoothRange float ___chromaKeySmoothRange_62; // System.Single OVRManager::chromaKeySpillRange float ___chromaKeySpillRange_63; // System.Boolean OVRManager::useDynamicLighting bool ___useDynamicLighting_64; // OVRManager/DepthQuality OVRManager::depthQuality int32_t ___depthQuality_65; // System.Single OVRManager::dynamicLightingSmoothFactor float ___dynamicLightingSmoothFactor_66; // System.Single OVRManager::dynamicLightingDepthVariationClampingValue float ___dynamicLightingDepthVariationClampingValue_67; // OVRManager/VirtualGreenScreenType OVRManager::virtualGreenScreenType int32_t ___virtualGreenScreenType_68; // System.Single OVRManager::virtualGreenScreenTopY float ___virtualGreenScreenTopY_69; // System.Single OVRManager::virtualGreenScreenBottomY float ___virtualGreenScreenBottomY_70; // System.Boolean OVRManager::virtualGreenScreenApplyDepthCulling bool ___virtualGreenScreenApplyDepthCulling_71; // System.Single OVRManager::virtualGreenScreenDepthTolerance float ___virtualGreenScreenDepthTolerance_72; // OVRManager/MrcActivationMode OVRManager::mrcActivationMode int32_t ___mrcActivationMode_73; // OVRManager/InstantiateMrcCameraDelegate OVRManager::instantiateMixedRealityCameraGameObject InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 * ___instantiateMixedRealityCameraGameObject_74; // System.Boolean OVRManager::isInsightPassthroughEnabled bool ___isInsightPassthroughEnabled_75; // OVRManager/TrackingOrigin OVRManager::_trackingOriginType int32_t ____trackingOriginType_86; // System.Boolean OVRManager::usePositionTracking bool ___usePositionTracking_87; // System.Boolean OVRManager::useRotationTracking bool ___useRotationTracking_88; // System.Boolean OVRManager::useIPDInPositionTracking bool ___useIPDInPositionTracking_89; // System.Boolean OVRManager::resetTrackerOnLoad bool ___resetTrackerOnLoad_90; // System.Boolean OVRManager::AllowRecenter bool ___AllowRecenter_91; // System.Boolean OVRManager::LateControllerUpdate bool ___LateControllerUpdate_92; // System.Boolean OVRManager::LateLatching bool ___LateLatching_93; // System.Boolean OVRManager::k__BackingField bool ___U3CisSupportedPlatformU3Ek__BackingField_94; public: inline static int32_t get_offset_of_disabledCameras_10() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___disabledCameras_10)); } inline RuntimeObject* get_disabledCameras_10() const { return ___disabledCameras_10; } inline RuntimeObject** get_address_of_disabledCameras_10() { return &___disabledCameras_10; } inline void set_disabledCameras_10(RuntimeObject* value) { ___disabledCameras_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___disabledCameras_10), (void*)value); } inline static int32_t get_offset_of_prevTimeScale_11() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___prevTimeScale_11)); } inline float get_prevTimeScale_11() const { return ___prevTimeScale_11; } inline float* get_address_of_prevTimeScale_11() { return &___prevTimeScale_11; } inline void set_prevTimeScale_11(float value) { ___prevTimeScale_11 = value; } inline static int32_t get_offset_of_useRecommendedMSAALevel_38() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___useRecommendedMSAALevel_38)); } inline bool get_useRecommendedMSAALevel_38() const { return ___useRecommendedMSAALevel_38; } inline bool* get_address_of_useRecommendedMSAALevel_38() { return &___useRecommendedMSAALevel_38; } inline void set_useRecommendedMSAALevel_38(bool value) { ___useRecommendedMSAALevel_38 = value; } inline static int32_t get_offset_of__monoscopic_39() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ____monoscopic_39)); } inline bool get__monoscopic_39() const { return ____monoscopic_39; } inline bool* get_address_of__monoscopic_39() { return &____monoscopic_39; } inline void set__monoscopic_39(bool value) { ____monoscopic_39 = value; } inline static int32_t get_offset_of__colorGamut_40() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ____colorGamut_40)); } inline int32_t get__colorGamut_40() const { return ____colorGamut_40; } inline int32_t* get_address_of__colorGamut_40() { return &____colorGamut_40; } inline void set__colorGamut_40(int32_t value) { ____colorGamut_40 = value; } inline static int32_t get_offset_of_minRenderScale_41() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___minRenderScale_41)); } inline float get_minRenderScale_41() const { return ___minRenderScale_41; } inline float* get_address_of_minRenderScale_41() { return &___minRenderScale_41; } inline void set_minRenderScale_41(float value) { ___minRenderScale_41 = value; } inline static int32_t get_offset_of_maxRenderScale_42() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___maxRenderScale_42)); } inline float get_maxRenderScale_42() const { return ___maxRenderScale_42; } inline float* get_address_of_maxRenderScale_42() { return &___maxRenderScale_42; } inline void set_maxRenderScale_42(float value) { ___maxRenderScale_42 = value; } inline static int32_t get_offset_of__headPoseRelativeOffsetRotation_43() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ____headPoseRelativeOffsetRotation_43)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get__headPoseRelativeOffsetRotation_43() const { return ____headPoseRelativeOffsetRotation_43; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of__headPoseRelativeOffsetRotation_43() { return &____headPoseRelativeOffsetRotation_43; } inline void set__headPoseRelativeOffsetRotation_43(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ____headPoseRelativeOffsetRotation_43 = value; } inline static int32_t get_offset_of__headPoseRelativeOffsetTranslation_44() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ____headPoseRelativeOffsetTranslation_44)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get__headPoseRelativeOffsetTranslation_44() const { return ____headPoseRelativeOffsetTranslation_44; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of__headPoseRelativeOffsetTranslation_44() { return &____headPoseRelativeOffsetTranslation_44; } inline void set__headPoseRelativeOffsetTranslation_44(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ____headPoseRelativeOffsetTranslation_44 = value; } inline static int32_t get_offset_of_profilerTcpPort_45() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___profilerTcpPort_45)); } inline int32_t get_profilerTcpPort_45() const { return ___profilerTcpPort_45; } inline int32_t* get_address_of_profilerTcpPort_45() { return &___profilerTcpPort_45; } inline void set_profilerTcpPort_45(int32_t value) { ___profilerTcpPort_45 = value; } inline static int32_t get_offset_of_expandMixedRealityCapturePropertySheet_46() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___expandMixedRealityCapturePropertySheet_46)); } inline bool get_expandMixedRealityCapturePropertySheet_46() const { return ___expandMixedRealityCapturePropertySheet_46; } inline bool* get_address_of_expandMixedRealityCapturePropertySheet_46() { return &___expandMixedRealityCapturePropertySheet_46; } inline void set_expandMixedRealityCapturePropertySheet_46(bool value) { ___expandMixedRealityCapturePropertySheet_46 = value; } inline static int32_t get_offset_of_enableMixedReality_47() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___enableMixedReality_47)); } inline bool get_enableMixedReality_47() const { return ___enableMixedReality_47; } inline bool* get_address_of_enableMixedReality_47() { return &___enableMixedReality_47; } inline void set_enableMixedReality_47(bool value) { ___enableMixedReality_47 = value; } inline static int32_t get_offset_of_compositionMethod_48() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___compositionMethod_48)); } inline int32_t get_compositionMethod_48() const { return ___compositionMethod_48; } inline int32_t* get_address_of_compositionMethod_48() { return &___compositionMethod_48; } inline void set_compositionMethod_48(int32_t value) { ___compositionMethod_48 = value; } inline static int32_t get_offset_of_extraHiddenLayers_49() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___extraHiddenLayers_49)); } inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 get_extraHiddenLayers_49() const { return ___extraHiddenLayers_49; } inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 * get_address_of_extraHiddenLayers_49() { return &___extraHiddenLayers_49; } inline void set_extraHiddenLayers_49(LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 value) { ___extraHiddenLayers_49 = value; } inline static int32_t get_offset_of_extraVisibleLayers_50() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___extraVisibleLayers_50)); } inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 get_extraVisibleLayers_50() const { return ___extraVisibleLayers_50; } inline LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 * get_address_of_extraVisibleLayers_50() { return &___extraVisibleLayers_50; } inline void set_extraVisibleLayers_50(LayerMask_t5FA647D8C300EA0621360CA4424717C3C73190A8 value) { ___extraVisibleLayers_50 = value; } inline static int32_t get_offset_of_dynamicCullingMask_51() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___dynamicCullingMask_51)); } inline bool get_dynamicCullingMask_51() const { return ___dynamicCullingMask_51; } inline bool* get_address_of_dynamicCullingMask_51() { return &___dynamicCullingMask_51; } inline void set_dynamicCullingMask_51(bool value) { ___dynamicCullingMask_51 = value; } inline static int32_t get_offset_of_externalCompositionBackdropColorRift_52() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___externalCompositionBackdropColorRift_52)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_externalCompositionBackdropColorRift_52() const { return ___externalCompositionBackdropColorRift_52; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_externalCompositionBackdropColorRift_52() { return &___externalCompositionBackdropColorRift_52; } inline void set_externalCompositionBackdropColorRift_52(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___externalCompositionBackdropColorRift_52 = value; } inline static int32_t get_offset_of_externalCompositionBackdropColorQuest_53() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___externalCompositionBackdropColorQuest_53)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_externalCompositionBackdropColorQuest_53() const { return ___externalCompositionBackdropColorQuest_53; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_externalCompositionBackdropColorQuest_53() { return &___externalCompositionBackdropColorQuest_53; } inline void set_externalCompositionBackdropColorQuest_53(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___externalCompositionBackdropColorQuest_53 = value; } inline static int32_t get_offset_of_capturingCameraDevice_54() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___capturingCameraDevice_54)); } inline int32_t get_capturingCameraDevice_54() const { return ___capturingCameraDevice_54; } inline int32_t* get_address_of_capturingCameraDevice_54() { return &___capturingCameraDevice_54; } inline void set_capturingCameraDevice_54(int32_t value) { ___capturingCameraDevice_54 = value; } inline static int32_t get_offset_of_flipCameraFrameHorizontally_55() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___flipCameraFrameHorizontally_55)); } inline bool get_flipCameraFrameHorizontally_55() const { return ___flipCameraFrameHorizontally_55; } inline bool* get_address_of_flipCameraFrameHorizontally_55() { return &___flipCameraFrameHorizontally_55; } inline void set_flipCameraFrameHorizontally_55(bool value) { ___flipCameraFrameHorizontally_55 = value; } inline static int32_t get_offset_of_flipCameraFrameVertically_56() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___flipCameraFrameVertically_56)); } inline bool get_flipCameraFrameVertically_56() const { return ___flipCameraFrameVertically_56; } inline bool* get_address_of_flipCameraFrameVertically_56() { return &___flipCameraFrameVertically_56; } inline void set_flipCameraFrameVertically_56(bool value) { ___flipCameraFrameVertically_56 = value; } inline static int32_t get_offset_of_handPoseStateLatency_57() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___handPoseStateLatency_57)); } inline float get_handPoseStateLatency_57() const { return ___handPoseStateLatency_57; } inline float* get_address_of_handPoseStateLatency_57() { return &___handPoseStateLatency_57; } inline void set_handPoseStateLatency_57(float value) { ___handPoseStateLatency_57 = value; } inline static int32_t get_offset_of_sandwichCompositionRenderLatency_58() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___sandwichCompositionRenderLatency_58)); } inline float get_sandwichCompositionRenderLatency_58() const { return ___sandwichCompositionRenderLatency_58; } inline float* get_address_of_sandwichCompositionRenderLatency_58() { return &___sandwichCompositionRenderLatency_58; } inline void set_sandwichCompositionRenderLatency_58(float value) { ___sandwichCompositionRenderLatency_58 = value; } inline static int32_t get_offset_of_sandwichCompositionBufferedFrames_59() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___sandwichCompositionBufferedFrames_59)); } inline int32_t get_sandwichCompositionBufferedFrames_59() const { return ___sandwichCompositionBufferedFrames_59; } inline int32_t* get_address_of_sandwichCompositionBufferedFrames_59() { return &___sandwichCompositionBufferedFrames_59; } inline void set_sandwichCompositionBufferedFrames_59(int32_t value) { ___sandwichCompositionBufferedFrames_59 = value; } inline static int32_t get_offset_of_chromaKeyColor_60() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___chromaKeyColor_60)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_chromaKeyColor_60() const { return ___chromaKeyColor_60; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_chromaKeyColor_60() { return &___chromaKeyColor_60; } inline void set_chromaKeyColor_60(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___chromaKeyColor_60 = value; } inline static int32_t get_offset_of_chromaKeySimilarity_61() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___chromaKeySimilarity_61)); } inline float get_chromaKeySimilarity_61() const { return ___chromaKeySimilarity_61; } inline float* get_address_of_chromaKeySimilarity_61() { return &___chromaKeySimilarity_61; } inline void set_chromaKeySimilarity_61(float value) { ___chromaKeySimilarity_61 = value; } inline static int32_t get_offset_of_chromaKeySmoothRange_62() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___chromaKeySmoothRange_62)); } inline float get_chromaKeySmoothRange_62() const { return ___chromaKeySmoothRange_62; } inline float* get_address_of_chromaKeySmoothRange_62() { return &___chromaKeySmoothRange_62; } inline void set_chromaKeySmoothRange_62(float value) { ___chromaKeySmoothRange_62 = value; } inline static int32_t get_offset_of_chromaKeySpillRange_63() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___chromaKeySpillRange_63)); } inline float get_chromaKeySpillRange_63() const { return ___chromaKeySpillRange_63; } inline float* get_address_of_chromaKeySpillRange_63() { return &___chromaKeySpillRange_63; } inline void set_chromaKeySpillRange_63(float value) { ___chromaKeySpillRange_63 = value; } inline static int32_t get_offset_of_useDynamicLighting_64() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___useDynamicLighting_64)); } inline bool get_useDynamicLighting_64() const { return ___useDynamicLighting_64; } inline bool* get_address_of_useDynamicLighting_64() { return &___useDynamicLighting_64; } inline void set_useDynamicLighting_64(bool value) { ___useDynamicLighting_64 = value; } inline static int32_t get_offset_of_depthQuality_65() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___depthQuality_65)); } inline int32_t get_depthQuality_65() const { return ___depthQuality_65; } inline int32_t* get_address_of_depthQuality_65() { return &___depthQuality_65; } inline void set_depthQuality_65(int32_t value) { ___depthQuality_65 = value; } inline static int32_t get_offset_of_dynamicLightingSmoothFactor_66() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___dynamicLightingSmoothFactor_66)); } inline float get_dynamicLightingSmoothFactor_66() const { return ___dynamicLightingSmoothFactor_66; } inline float* get_address_of_dynamicLightingSmoothFactor_66() { return &___dynamicLightingSmoothFactor_66; } inline void set_dynamicLightingSmoothFactor_66(float value) { ___dynamicLightingSmoothFactor_66 = value; } inline static int32_t get_offset_of_dynamicLightingDepthVariationClampingValue_67() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___dynamicLightingDepthVariationClampingValue_67)); } inline float get_dynamicLightingDepthVariationClampingValue_67() const { return ___dynamicLightingDepthVariationClampingValue_67; } inline float* get_address_of_dynamicLightingDepthVariationClampingValue_67() { return &___dynamicLightingDepthVariationClampingValue_67; } inline void set_dynamicLightingDepthVariationClampingValue_67(float value) { ___dynamicLightingDepthVariationClampingValue_67 = value; } inline static int32_t get_offset_of_virtualGreenScreenType_68() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___virtualGreenScreenType_68)); } inline int32_t get_virtualGreenScreenType_68() const { return ___virtualGreenScreenType_68; } inline int32_t* get_address_of_virtualGreenScreenType_68() { return &___virtualGreenScreenType_68; } inline void set_virtualGreenScreenType_68(int32_t value) { ___virtualGreenScreenType_68 = value; } inline static int32_t get_offset_of_virtualGreenScreenTopY_69() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___virtualGreenScreenTopY_69)); } inline float get_virtualGreenScreenTopY_69() const { return ___virtualGreenScreenTopY_69; } inline float* get_address_of_virtualGreenScreenTopY_69() { return &___virtualGreenScreenTopY_69; } inline void set_virtualGreenScreenTopY_69(float value) { ___virtualGreenScreenTopY_69 = value; } inline static int32_t get_offset_of_virtualGreenScreenBottomY_70() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___virtualGreenScreenBottomY_70)); } inline float get_virtualGreenScreenBottomY_70() const { return ___virtualGreenScreenBottomY_70; } inline float* get_address_of_virtualGreenScreenBottomY_70() { return &___virtualGreenScreenBottomY_70; } inline void set_virtualGreenScreenBottomY_70(float value) { ___virtualGreenScreenBottomY_70 = value; } inline static int32_t get_offset_of_virtualGreenScreenApplyDepthCulling_71() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___virtualGreenScreenApplyDepthCulling_71)); } inline bool get_virtualGreenScreenApplyDepthCulling_71() const { return ___virtualGreenScreenApplyDepthCulling_71; } inline bool* get_address_of_virtualGreenScreenApplyDepthCulling_71() { return &___virtualGreenScreenApplyDepthCulling_71; } inline void set_virtualGreenScreenApplyDepthCulling_71(bool value) { ___virtualGreenScreenApplyDepthCulling_71 = value; } inline static int32_t get_offset_of_virtualGreenScreenDepthTolerance_72() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___virtualGreenScreenDepthTolerance_72)); } inline float get_virtualGreenScreenDepthTolerance_72() const { return ___virtualGreenScreenDepthTolerance_72; } inline float* get_address_of_virtualGreenScreenDepthTolerance_72() { return &___virtualGreenScreenDepthTolerance_72; } inline void set_virtualGreenScreenDepthTolerance_72(float value) { ___virtualGreenScreenDepthTolerance_72 = value; } inline static int32_t get_offset_of_mrcActivationMode_73() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___mrcActivationMode_73)); } inline int32_t get_mrcActivationMode_73() const { return ___mrcActivationMode_73; } inline int32_t* get_address_of_mrcActivationMode_73() { return &___mrcActivationMode_73; } inline void set_mrcActivationMode_73(int32_t value) { ___mrcActivationMode_73 = value; } inline static int32_t get_offset_of_instantiateMixedRealityCameraGameObject_74() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___instantiateMixedRealityCameraGameObject_74)); } inline InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 * get_instantiateMixedRealityCameraGameObject_74() const { return ___instantiateMixedRealityCameraGameObject_74; } inline InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 ** get_address_of_instantiateMixedRealityCameraGameObject_74() { return &___instantiateMixedRealityCameraGameObject_74; } inline void set_instantiateMixedRealityCameraGameObject_74(InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 * value) { ___instantiateMixedRealityCameraGameObject_74 = value; Il2CppCodeGenWriteBarrier((void**)(&___instantiateMixedRealityCameraGameObject_74), (void*)value); } inline static int32_t get_offset_of_isInsightPassthroughEnabled_75() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___isInsightPassthroughEnabled_75)); } inline bool get_isInsightPassthroughEnabled_75() const { return ___isInsightPassthroughEnabled_75; } inline bool* get_address_of_isInsightPassthroughEnabled_75() { return &___isInsightPassthroughEnabled_75; } inline void set_isInsightPassthroughEnabled_75(bool value) { ___isInsightPassthroughEnabled_75 = value; } inline static int32_t get_offset_of__trackingOriginType_86() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ____trackingOriginType_86)); } inline int32_t get__trackingOriginType_86() const { return ____trackingOriginType_86; } inline int32_t* get_address_of__trackingOriginType_86() { return &____trackingOriginType_86; } inline void set__trackingOriginType_86(int32_t value) { ____trackingOriginType_86 = value; } inline static int32_t get_offset_of_usePositionTracking_87() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___usePositionTracking_87)); } inline bool get_usePositionTracking_87() const { return ___usePositionTracking_87; } inline bool* get_address_of_usePositionTracking_87() { return &___usePositionTracking_87; } inline void set_usePositionTracking_87(bool value) { ___usePositionTracking_87 = value; } inline static int32_t get_offset_of_useRotationTracking_88() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___useRotationTracking_88)); } inline bool get_useRotationTracking_88() const { return ___useRotationTracking_88; } inline bool* get_address_of_useRotationTracking_88() { return &___useRotationTracking_88; } inline void set_useRotationTracking_88(bool value) { ___useRotationTracking_88 = value; } inline static int32_t get_offset_of_useIPDInPositionTracking_89() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___useIPDInPositionTracking_89)); } inline bool get_useIPDInPositionTracking_89() const { return ___useIPDInPositionTracking_89; } inline bool* get_address_of_useIPDInPositionTracking_89() { return &___useIPDInPositionTracking_89; } inline void set_useIPDInPositionTracking_89(bool value) { ___useIPDInPositionTracking_89 = value; } inline static int32_t get_offset_of_resetTrackerOnLoad_90() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___resetTrackerOnLoad_90)); } inline bool get_resetTrackerOnLoad_90() const { return ___resetTrackerOnLoad_90; } inline bool* get_address_of_resetTrackerOnLoad_90() { return &___resetTrackerOnLoad_90; } inline void set_resetTrackerOnLoad_90(bool value) { ___resetTrackerOnLoad_90 = value; } inline static int32_t get_offset_of_AllowRecenter_91() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___AllowRecenter_91)); } inline bool get_AllowRecenter_91() const { return ___AllowRecenter_91; } inline bool* get_address_of_AllowRecenter_91() { return &___AllowRecenter_91; } inline void set_AllowRecenter_91(bool value) { ___AllowRecenter_91 = value; } inline static int32_t get_offset_of_LateControllerUpdate_92() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___LateControllerUpdate_92)); } inline bool get_LateControllerUpdate_92() const { return ___LateControllerUpdate_92; } inline bool* get_address_of_LateControllerUpdate_92() { return &___LateControllerUpdate_92; } inline void set_LateControllerUpdate_92(bool value) { ___LateControllerUpdate_92 = value; } inline static int32_t get_offset_of_LateLatching_93() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___LateLatching_93)); } inline bool get_LateLatching_93() const { return ___LateLatching_93; } inline bool* get_address_of_LateLatching_93() { return &___LateLatching_93; } inline void set_LateLatching_93(bool value) { ___LateLatching_93 = value; } inline static int32_t get_offset_of_U3CisSupportedPlatformU3Ek__BackingField_94() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036, ___U3CisSupportedPlatformU3Ek__BackingField_94)); } inline bool get_U3CisSupportedPlatformU3Ek__BackingField_94() const { return ___U3CisSupportedPlatformU3Ek__BackingField_94; } inline bool* get_address_of_U3CisSupportedPlatformU3Ek__BackingField_94() { return &___U3CisSupportedPlatformU3Ek__BackingField_94; } inline void set_U3CisSupportedPlatformU3Ek__BackingField_94(bool value) { ___U3CisSupportedPlatformU3Ek__BackingField_94 = value; } }; // OVROverlay struct OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // OVROverlay/OverlayType OVROverlay::currentOverlayType int32_t ___currentOverlayType_4; // System.Boolean OVROverlay::isDynamic bool ___isDynamic_5; // System.Boolean OVROverlay::isProtectedContent bool ___isProtectedContent_6; // UnityEngine.Rect OVROverlay::srcRectLeft Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___srcRectLeft_7; // UnityEngine.Rect OVROverlay::srcRectRight Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___srcRectRight_8; // UnityEngine.Rect OVROverlay::destRectLeft Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___destRectLeft_9; // UnityEngine.Rect OVROverlay::destRectRight Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___destRectRight_10; // System.Boolean OVROverlay::invertTextureRects bool ___invertTextureRects_11; // OVRPlugin/TextureRectMatrixf OVROverlay::textureRectMatrix TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B ___textureRectMatrix_12; // System.Boolean OVROverlay::overrideTextureRectMatrix bool ___overrideTextureRectMatrix_13; // System.Boolean OVROverlay::overridePerLayerColorScaleAndOffset bool ___overridePerLayerColorScaleAndOffset_14; // UnityEngine.Vector4 OVROverlay::colorScale Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___colorScale_15; // UnityEngine.Vector4 OVROverlay::colorOffset Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___colorOffset_16; // System.Boolean OVROverlay::useExpensiveSuperSample bool ___useExpensiveSuperSample_17; // System.Boolean OVROverlay::hidden bool ___hidden_18; // System.Boolean OVROverlay::isExternalSurface bool ___isExternalSurface_19; // System.Int32 OVROverlay::externalSurfaceWidth int32_t ___externalSurfaceWidth_20; // System.Int32 OVROverlay::externalSurfaceHeight int32_t ___externalSurfaceHeight_21; // System.Int32 OVROverlay::compositionDepth int32_t ___compositionDepth_22; // System.Int32 OVROverlay::layerCompositionDepth int32_t ___layerCompositionDepth_23; // System.Boolean OVROverlay::noDepthBufferTesting bool ___noDepthBufferTesting_24; // OVRPlugin/EyeTextureFormat OVROverlay::layerTextureFormat int32_t ___layerTextureFormat_25; // OVROverlay/OverlayShape OVROverlay::currentOverlayShape int32_t ___currentOverlayShape_26; // OVROverlay/OverlayShape OVROverlay::prevOverlayShape int32_t ___prevOverlayShape_27; // UnityEngine.Texture[] OVROverlay::textures TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* ___textures_28; // System.Boolean OVROverlay::isAlphaPremultiplied bool ___isAlphaPremultiplied_29; // System.Boolean OVROverlay::useBicubicFiltering bool ___useBicubicFiltering_30; // System.Boolean OVROverlay::_previewInEditor bool ____previewInEditor_31; // System.IntPtr[] OVROverlay::texturePtrs IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* ___texturePtrs_32; // System.IntPtr OVROverlay::externalSurfaceObject intptr_t ___externalSurfaceObject_33; // OVROverlay/ExternalSurfaceObjectCreated OVROverlay::externalSurfaceObjectCreated ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * ___externalSurfaceObjectCreated_34; // System.Boolean OVROverlay::isOverridePending bool ___isOverridePending_35; // System.Int32 OVROverlay::k__BackingField int32_t ___U3ClayerIdU3Ek__BackingField_38; // OVROverlay/LayerTexture[] OVROverlay::layerTextures LayerTextureU5BU5D_tD59724CCA852586FDC68CC76E1DE5B180B68B8CE* ___layerTextures_41; // OVRPlugin/LayerDesc OVROverlay::layerDesc LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 ___layerDesc_42; // System.Int32 OVROverlay::stageCount int32_t ___stageCount_43; // System.Int32 OVROverlay::layerIndex int32_t ___layerIndex_44; // System.Runtime.InteropServices.GCHandle OVROverlay::layerIdHandle GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 ___layerIdHandle_45; // System.IntPtr OVROverlay::layerIdPtr intptr_t ___layerIdPtr_46; // System.Int32 OVROverlay::frameIndex int32_t ___frameIndex_47; // System.Int32 OVROverlay::prevFrameIndex int32_t ___prevFrameIndex_48; // UnityEngine.Renderer OVROverlay::rend Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * ___rend_49; // System.UInt64 OVROverlay::OpenVROverlayHandle uint64_t ___OpenVROverlayHandle_50; // UnityEngine.Vector4 OVROverlay::OpenVRUVOffsetAndScale Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___OpenVRUVOffsetAndScale_51; // UnityEngine.Vector2 OVROverlay::OpenVRMouseScale Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___OpenVRMouseScale_52; // OVRManager/XRDevice OVROverlay::constructedOverlayXRDevice int32_t ___constructedOverlayXRDevice_53; // System.Boolean OVROverlay::xrDeviceConstructed bool ___xrDeviceConstructed_54; public: inline static int32_t get_offset_of_currentOverlayType_4() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___currentOverlayType_4)); } inline int32_t get_currentOverlayType_4() const { return ___currentOverlayType_4; } inline int32_t* get_address_of_currentOverlayType_4() { return &___currentOverlayType_4; } inline void set_currentOverlayType_4(int32_t value) { ___currentOverlayType_4 = value; } inline static int32_t get_offset_of_isDynamic_5() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___isDynamic_5)); } inline bool get_isDynamic_5() const { return ___isDynamic_5; } inline bool* get_address_of_isDynamic_5() { return &___isDynamic_5; } inline void set_isDynamic_5(bool value) { ___isDynamic_5 = value; } inline static int32_t get_offset_of_isProtectedContent_6() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___isProtectedContent_6)); } inline bool get_isProtectedContent_6() const { return ___isProtectedContent_6; } inline bool* get_address_of_isProtectedContent_6() { return &___isProtectedContent_6; } inline void set_isProtectedContent_6(bool value) { ___isProtectedContent_6 = value; } inline static int32_t get_offset_of_srcRectLeft_7() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___srcRectLeft_7)); } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_srcRectLeft_7() const { return ___srcRectLeft_7; } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_srcRectLeft_7() { return &___srcRectLeft_7; } inline void set_srcRectLeft_7(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value) { ___srcRectLeft_7 = value; } inline static int32_t get_offset_of_srcRectRight_8() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___srcRectRight_8)); } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_srcRectRight_8() const { return ___srcRectRight_8; } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_srcRectRight_8() { return &___srcRectRight_8; } inline void set_srcRectRight_8(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value) { ___srcRectRight_8 = value; } inline static int32_t get_offset_of_destRectLeft_9() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___destRectLeft_9)); } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_destRectLeft_9() const { return ___destRectLeft_9; } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_destRectLeft_9() { return &___destRectLeft_9; } inline void set_destRectLeft_9(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value) { ___destRectLeft_9 = value; } inline static int32_t get_offset_of_destRectRight_10() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___destRectRight_10)); } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 get_destRectRight_10() const { return ___destRectRight_10; } inline Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * get_address_of_destRectRight_10() { return &___destRectRight_10; } inline void set_destRectRight_10(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 value) { ___destRectRight_10 = value; } inline static int32_t get_offset_of_invertTextureRects_11() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___invertTextureRects_11)); } inline bool get_invertTextureRects_11() const { return ___invertTextureRects_11; } inline bool* get_address_of_invertTextureRects_11() { return &___invertTextureRects_11; } inline void set_invertTextureRects_11(bool value) { ___invertTextureRects_11 = value; } inline static int32_t get_offset_of_textureRectMatrix_12() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___textureRectMatrix_12)); } inline TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B get_textureRectMatrix_12() const { return ___textureRectMatrix_12; } inline TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B * get_address_of_textureRectMatrix_12() { return &___textureRectMatrix_12; } inline void set_textureRectMatrix_12(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B value) { ___textureRectMatrix_12 = value; } inline static int32_t get_offset_of_overrideTextureRectMatrix_13() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___overrideTextureRectMatrix_13)); } inline bool get_overrideTextureRectMatrix_13() const { return ___overrideTextureRectMatrix_13; } inline bool* get_address_of_overrideTextureRectMatrix_13() { return &___overrideTextureRectMatrix_13; } inline void set_overrideTextureRectMatrix_13(bool value) { ___overrideTextureRectMatrix_13 = value; } inline static int32_t get_offset_of_overridePerLayerColorScaleAndOffset_14() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___overridePerLayerColorScaleAndOffset_14)); } inline bool get_overridePerLayerColorScaleAndOffset_14() const { return ___overridePerLayerColorScaleAndOffset_14; } inline bool* get_address_of_overridePerLayerColorScaleAndOffset_14() { return &___overridePerLayerColorScaleAndOffset_14; } inline void set_overridePerLayerColorScaleAndOffset_14(bool value) { ___overridePerLayerColorScaleAndOffset_14 = value; } inline static int32_t get_offset_of_colorScale_15() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___colorScale_15)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_colorScale_15() const { return ___colorScale_15; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_colorScale_15() { return &___colorScale_15; } inline void set_colorScale_15(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___colorScale_15 = value; } inline static int32_t get_offset_of_colorOffset_16() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___colorOffset_16)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_colorOffset_16() const { return ___colorOffset_16; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_colorOffset_16() { return &___colorOffset_16; } inline void set_colorOffset_16(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___colorOffset_16 = value; } inline static int32_t get_offset_of_useExpensiveSuperSample_17() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___useExpensiveSuperSample_17)); } inline bool get_useExpensiveSuperSample_17() const { return ___useExpensiveSuperSample_17; } inline bool* get_address_of_useExpensiveSuperSample_17() { return &___useExpensiveSuperSample_17; } inline void set_useExpensiveSuperSample_17(bool value) { ___useExpensiveSuperSample_17 = value; } inline static int32_t get_offset_of_hidden_18() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___hidden_18)); } inline bool get_hidden_18() const { return ___hidden_18; } inline bool* get_address_of_hidden_18() { return &___hidden_18; } inline void set_hidden_18(bool value) { ___hidden_18 = value; } inline static int32_t get_offset_of_isExternalSurface_19() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___isExternalSurface_19)); } inline bool get_isExternalSurface_19() const { return ___isExternalSurface_19; } inline bool* get_address_of_isExternalSurface_19() { return &___isExternalSurface_19; } inline void set_isExternalSurface_19(bool value) { ___isExternalSurface_19 = value; } inline static int32_t get_offset_of_externalSurfaceWidth_20() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___externalSurfaceWidth_20)); } inline int32_t get_externalSurfaceWidth_20() const { return ___externalSurfaceWidth_20; } inline int32_t* get_address_of_externalSurfaceWidth_20() { return &___externalSurfaceWidth_20; } inline void set_externalSurfaceWidth_20(int32_t value) { ___externalSurfaceWidth_20 = value; } inline static int32_t get_offset_of_externalSurfaceHeight_21() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___externalSurfaceHeight_21)); } inline int32_t get_externalSurfaceHeight_21() const { return ___externalSurfaceHeight_21; } inline int32_t* get_address_of_externalSurfaceHeight_21() { return &___externalSurfaceHeight_21; } inline void set_externalSurfaceHeight_21(int32_t value) { ___externalSurfaceHeight_21 = value; } inline static int32_t get_offset_of_compositionDepth_22() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___compositionDepth_22)); } inline int32_t get_compositionDepth_22() const { return ___compositionDepth_22; } inline int32_t* get_address_of_compositionDepth_22() { return &___compositionDepth_22; } inline void set_compositionDepth_22(int32_t value) { ___compositionDepth_22 = value; } inline static int32_t get_offset_of_layerCompositionDepth_23() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___layerCompositionDepth_23)); } inline int32_t get_layerCompositionDepth_23() const { return ___layerCompositionDepth_23; } inline int32_t* get_address_of_layerCompositionDepth_23() { return &___layerCompositionDepth_23; } inline void set_layerCompositionDepth_23(int32_t value) { ___layerCompositionDepth_23 = value; } inline static int32_t get_offset_of_noDepthBufferTesting_24() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___noDepthBufferTesting_24)); } inline bool get_noDepthBufferTesting_24() const { return ___noDepthBufferTesting_24; } inline bool* get_address_of_noDepthBufferTesting_24() { return &___noDepthBufferTesting_24; } inline void set_noDepthBufferTesting_24(bool value) { ___noDepthBufferTesting_24 = value; } inline static int32_t get_offset_of_layerTextureFormat_25() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___layerTextureFormat_25)); } inline int32_t get_layerTextureFormat_25() const { return ___layerTextureFormat_25; } inline int32_t* get_address_of_layerTextureFormat_25() { return &___layerTextureFormat_25; } inline void set_layerTextureFormat_25(int32_t value) { ___layerTextureFormat_25 = value; } inline static int32_t get_offset_of_currentOverlayShape_26() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___currentOverlayShape_26)); } inline int32_t get_currentOverlayShape_26() const { return ___currentOverlayShape_26; } inline int32_t* get_address_of_currentOverlayShape_26() { return &___currentOverlayShape_26; } inline void set_currentOverlayShape_26(int32_t value) { ___currentOverlayShape_26 = value; } inline static int32_t get_offset_of_prevOverlayShape_27() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___prevOverlayShape_27)); } inline int32_t get_prevOverlayShape_27() const { return ___prevOverlayShape_27; } inline int32_t* get_address_of_prevOverlayShape_27() { return &___prevOverlayShape_27; } inline void set_prevOverlayShape_27(int32_t value) { ___prevOverlayShape_27 = value; } inline static int32_t get_offset_of_textures_28() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___textures_28)); } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* get_textures_28() const { return ___textures_28; } inline TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150** get_address_of_textures_28() { return &___textures_28; } inline void set_textures_28(TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150* value) { ___textures_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___textures_28), (void*)value); } inline static int32_t get_offset_of_isAlphaPremultiplied_29() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___isAlphaPremultiplied_29)); } inline bool get_isAlphaPremultiplied_29() const { return ___isAlphaPremultiplied_29; } inline bool* get_address_of_isAlphaPremultiplied_29() { return &___isAlphaPremultiplied_29; } inline void set_isAlphaPremultiplied_29(bool value) { ___isAlphaPremultiplied_29 = value; } inline static int32_t get_offset_of_useBicubicFiltering_30() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___useBicubicFiltering_30)); } inline bool get_useBicubicFiltering_30() const { return ___useBicubicFiltering_30; } inline bool* get_address_of_useBicubicFiltering_30() { return &___useBicubicFiltering_30; } inline void set_useBicubicFiltering_30(bool value) { ___useBicubicFiltering_30 = value; } inline static int32_t get_offset_of__previewInEditor_31() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ____previewInEditor_31)); } inline bool get__previewInEditor_31() const { return ____previewInEditor_31; } inline bool* get_address_of__previewInEditor_31() { return &____previewInEditor_31; } inline void set__previewInEditor_31(bool value) { ____previewInEditor_31 = value; } inline static int32_t get_offset_of_texturePtrs_32() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___texturePtrs_32)); } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* get_texturePtrs_32() const { return ___texturePtrs_32; } inline IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6** get_address_of_texturePtrs_32() { return &___texturePtrs_32; } inline void set_texturePtrs_32(IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6* value) { ___texturePtrs_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___texturePtrs_32), (void*)value); } inline static int32_t get_offset_of_externalSurfaceObject_33() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___externalSurfaceObject_33)); } inline intptr_t get_externalSurfaceObject_33() const { return ___externalSurfaceObject_33; } inline intptr_t* get_address_of_externalSurfaceObject_33() { return &___externalSurfaceObject_33; } inline void set_externalSurfaceObject_33(intptr_t value) { ___externalSurfaceObject_33 = value; } inline static int32_t get_offset_of_externalSurfaceObjectCreated_34() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___externalSurfaceObjectCreated_34)); } inline ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * get_externalSurfaceObjectCreated_34() const { return ___externalSurfaceObjectCreated_34; } inline ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 ** get_address_of_externalSurfaceObjectCreated_34() { return &___externalSurfaceObjectCreated_34; } inline void set_externalSurfaceObjectCreated_34(ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * value) { ___externalSurfaceObjectCreated_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___externalSurfaceObjectCreated_34), (void*)value); } inline static int32_t get_offset_of_isOverridePending_35() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___isOverridePending_35)); } inline bool get_isOverridePending_35() const { return ___isOverridePending_35; } inline bool* get_address_of_isOverridePending_35() { return &___isOverridePending_35; } inline void set_isOverridePending_35(bool value) { ___isOverridePending_35 = value; } inline static int32_t get_offset_of_U3ClayerIdU3Ek__BackingField_38() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___U3ClayerIdU3Ek__BackingField_38)); } inline int32_t get_U3ClayerIdU3Ek__BackingField_38() const { return ___U3ClayerIdU3Ek__BackingField_38; } inline int32_t* get_address_of_U3ClayerIdU3Ek__BackingField_38() { return &___U3ClayerIdU3Ek__BackingField_38; } inline void set_U3ClayerIdU3Ek__BackingField_38(int32_t value) { ___U3ClayerIdU3Ek__BackingField_38 = value; } inline static int32_t get_offset_of_layerTextures_41() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___layerTextures_41)); } inline LayerTextureU5BU5D_tD59724CCA852586FDC68CC76E1DE5B180B68B8CE* get_layerTextures_41() const { return ___layerTextures_41; } inline LayerTextureU5BU5D_tD59724CCA852586FDC68CC76E1DE5B180B68B8CE** get_address_of_layerTextures_41() { return &___layerTextures_41; } inline void set_layerTextures_41(LayerTextureU5BU5D_tD59724CCA852586FDC68CC76E1DE5B180B68B8CE* value) { ___layerTextures_41 = value; Il2CppCodeGenWriteBarrier((void**)(&___layerTextures_41), (void*)value); } inline static int32_t get_offset_of_layerDesc_42() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___layerDesc_42)); } inline LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 get_layerDesc_42() const { return ___layerDesc_42; } inline LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 * get_address_of_layerDesc_42() { return &___layerDesc_42; } inline void set_layerDesc_42(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 value) { ___layerDesc_42 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___layerDesc_42))->___Fov_7), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&(((&___layerDesc_42))->___VisibleRect_8), (void*)NULL); #endif } inline static int32_t get_offset_of_stageCount_43() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___stageCount_43)); } inline int32_t get_stageCount_43() const { return ___stageCount_43; } inline int32_t* get_address_of_stageCount_43() { return &___stageCount_43; } inline void set_stageCount_43(int32_t value) { ___stageCount_43 = value; } inline static int32_t get_offset_of_layerIndex_44() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___layerIndex_44)); } inline int32_t get_layerIndex_44() const { return ___layerIndex_44; } inline int32_t* get_address_of_layerIndex_44() { return &___layerIndex_44; } inline void set_layerIndex_44(int32_t value) { ___layerIndex_44 = value; } inline static int32_t get_offset_of_layerIdHandle_45() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___layerIdHandle_45)); } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 get_layerIdHandle_45() const { return ___layerIdHandle_45; } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * get_address_of_layerIdHandle_45() { return &___layerIdHandle_45; } inline void set_layerIdHandle_45(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 value) { ___layerIdHandle_45 = value; } inline static int32_t get_offset_of_layerIdPtr_46() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___layerIdPtr_46)); } inline intptr_t get_layerIdPtr_46() const { return ___layerIdPtr_46; } inline intptr_t* get_address_of_layerIdPtr_46() { return &___layerIdPtr_46; } inline void set_layerIdPtr_46(intptr_t value) { ___layerIdPtr_46 = value; } inline static int32_t get_offset_of_frameIndex_47() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___frameIndex_47)); } inline int32_t get_frameIndex_47() const { return ___frameIndex_47; } inline int32_t* get_address_of_frameIndex_47() { return &___frameIndex_47; } inline void set_frameIndex_47(int32_t value) { ___frameIndex_47 = value; } inline static int32_t get_offset_of_prevFrameIndex_48() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___prevFrameIndex_48)); } inline int32_t get_prevFrameIndex_48() const { return ___prevFrameIndex_48; } inline int32_t* get_address_of_prevFrameIndex_48() { return &___prevFrameIndex_48; } inline void set_prevFrameIndex_48(int32_t value) { ___prevFrameIndex_48 = value; } inline static int32_t get_offset_of_rend_49() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___rend_49)); } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * get_rend_49() const { return ___rend_49; } inline Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C ** get_address_of_rend_49() { return &___rend_49; } inline void set_rend_49(Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * value) { ___rend_49 = value; Il2CppCodeGenWriteBarrier((void**)(&___rend_49), (void*)value); } inline static int32_t get_offset_of_OpenVROverlayHandle_50() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___OpenVROverlayHandle_50)); } inline uint64_t get_OpenVROverlayHandle_50() const { return ___OpenVROverlayHandle_50; } inline uint64_t* get_address_of_OpenVROverlayHandle_50() { return &___OpenVROverlayHandle_50; } inline void set_OpenVROverlayHandle_50(uint64_t value) { ___OpenVROverlayHandle_50 = value; } inline static int32_t get_offset_of_OpenVRUVOffsetAndScale_51() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___OpenVRUVOffsetAndScale_51)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_OpenVRUVOffsetAndScale_51() const { return ___OpenVRUVOffsetAndScale_51; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_OpenVRUVOffsetAndScale_51() { return &___OpenVRUVOffsetAndScale_51; } inline void set_OpenVRUVOffsetAndScale_51(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___OpenVRUVOffsetAndScale_51 = value; } inline static int32_t get_offset_of_OpenVRMouseScale_52() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___OpenVRMouseScale_52)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_OpenVRMouseScale_52() const { return ___OpenVRMouseScale_52; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_OpenVRMouseScale_52() { return &___OpenVRMouseScale_52; } inline void set_OpenVRMouseScale_52(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___OpenVRMouseScale_52 = value; } inline static int32_t get_offset_of_constructedOverlayXRDevice_53() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___constructedOverlayXRDevice_53)); } inline int32_t get_constructedOverlayXRDevice_53() const { return ___constructedOverlayXRDevice_53; } inline int32_t* get_address_of_constructedOverlayXRDevice_53() { return &___constructedOverlayXRDevice_53; } inline void set_constructedOverlayXRDevice_53(int32_t value) { ___constructedOverlayXRDevice_53 = value; } inline static int32_t get_offset_of_xrDeviceConstructed_54() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7, ___xrDeviceConstructed_54)); } inline bool get_xrDeviceConstructed_54() const { return ___xrDeviceConstructed_54; } inline bool* get_address_of_xrDeviceConstructed_54() { return &___xrDeviceConstructed_54; } inline void set_xrDeviceConstructed_54(bool value) { ___xrDeviceConstructed_54 = value; } }; // OVRPassthroughLayer struct OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // OVRPassthroughLayer/ProjectionSurfaceType OVRPassthroughLayer::projectionSurfaceType int32_t ___projectionSurfaceType_4; // OVROverlay/OverlayType OVRPassthroughLayer::overlayType int32_t ___overlayType_5; // System.Int32 OVRPassthroughLayer::compositionDepth int32_t ___compositionDepth_6; // System.Boolean OVRPassthroughLayer::hidden bool ___hidden_7; // System.Boolean OVRPassthroughLayer::overridePerLayerColorScaleAndOffset bool ___overridePerLayerColorScaleAndOffset_8; // UnityEngine.Vector4 OVRPassthroughLayer::colorScale Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___colorScale_9; // UnityEngine.Vector4 OVRPassthroughLayer::colorOffset Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___colorOffset_10; // OVRPassthroughLayer/ColorMapEditorType OVRPassthroughLayer::colorMapEditorType_ int32_t ___colorMapEditorType__11; // UnityEngine.Gradient OVRPassthroughLayer::colorMapEditorGradient Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * ___colorMapEditorGradient_12; // UnityEngine.Gradient OVRPassthroughLayer::colorMapEditorGradientOld Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * ___colorMapEditorGradientOld_13; // System.Single OVRPassthroughLayer::colorMapEditorContrast float ___colorMapEditorContrast_14; // System.Single OVRPassthroughLayer::colorMapEditorContrast_ float ___colorMapEditorContrast__15; // System.Single OVRPassthroughLayer::colorMapEditorBrightness float ___colorMapEditorBrightness_16; // System.Single OVRPassthroughLayer::colorMapEditorBrightness_ float ___colorMapEditorBrightness__17; // System.Single OVRPassthroughLayer::colorMapEditorPosterize float ___colorMapEditorPosterize_18; // System.Single OVRPassthroughLayer::colorMapEditorPosterize_ float ___colorMapEditorPosterize__19; // OVRCameraRig OVRPassthroughLayer::cameraRig OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * ___cameraRig_20; // System.Boolean OVRPassthroughLayer::cameraRigInitialized bool ___cameraRigInitialized_21; // UnityEngine.GameObject OVRPassthroughLayer::auxGameObject GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___auxGameObject_22; // OVROverlay OVRPassthroughLayer::passthroughOverlay OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * ___passthroughOverlay_23; // System.Collections.Generic.Dictionary`2 OVRPassthroughLayer::surfaceGameObjects Dictionary_2_t60275C105022D515270F8E8181130D8B1020CB74 * ___surfaceGameObjects_24; // System.Collections.Generic.List`1 OVRPassthroughLayer::deferredSurfaceGameObjects List_1_t3B0820C8464D06CB2C98E3D7C75B224815E79323 * ___deferredSurfaceGameObjects_25; // System.Single OVRPassthroughLayer::textureOpacity_ float ___textureOpacity__26; // System.Boolean OVRPassthroughLayer::edgeRenderingEnabled_ bool ___edgeRenderingEnabled__27; // UnityEngine.Color OVRPassthroughLayer::edgeColor_ Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___edgeColor__28; // OVRPlugin/InsightPassthroughColorMapType OVRPassthroughLayer::colorMapType int32_t ___colorMapType_29; // System.Byte[] OVRPassthroughLayer::colorMapData ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___colorMapData_30; // System.Runtime.InteropServices.GCHandle OVRPassthroughLayer::colorMapDataHandle GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 ___colorMapDataHandle_31; // System.Boolean OVRPassthroughLayer::styleDirty bool ___styleDirty_32; public: inline static int32_t get_offset_of_projectionSurfaceType_4() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___projectionSurfaceType_4)); } inline int32_t get_projectionSurfaceType_4() const { return ___projectionSurfaceType_4; } inline int32_t* get_address_of_projectionSurfaceType_4() { return &___projectionSurfaceType_4; } inline void set_projectionSurfaceType_4(int32_t value) { ___projectionSurfaceType_4 = value; } inline static int32_t get_offset_of_overlayType_5() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___overlayType_5)); } inline int32_t get_overlayType_5() const { return ___overlayType_5; } inline int32_t* get_address_of_overlayType_5() { return &___overlayType_5; } inline void set_overlayType_5(int32_t value) { ___overlayType_5 = value; } inline static int32_t get_offset_of_compositionDepth_6() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___compositionDepth_6)); } inline int32_t get_compositionDepth_6() const { return ___compositionDepth_6; } inline int32_t* get_address_of_compositionDepth_6() { return &___compositionDepth_6; } inline void set_compositionDepth_6(int32_t value) { ___compositionDepth_6 = value; } inline static int32_t get_offset_of_hidden_7() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___hidden_7)); } inline bool get_hidden_7() const { return ___hidden_7; } inline bool* get_address_of_hidden_7() { return &___hidden_7; } inline void set_hidden_7(bool value) { ___hidden_7 = value; } inline static int32_t get_offset_of_overridePerLayerColorScaleAndOffset_8() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___overridePerLayerColorScaleAndOffset_8)); } inline bool get_overridePerLayerColorScaleAndOffset_8() const { return ___overridePerLayerColorScaleAndOffset_8; } inline bool* get_address_of_overridePerLayerColorScaleAndOffset_8() { return &___overridePerLayerColorScaleAndOffset_8; } inline void set_overridePerLayerColorScaleAndOffset_8(bool value) { ___overridePerLayerColorScaleAndOffset_8 = value; } inline static int32_t get_offset_of_colorScale_9() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorScale_9)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_colorScale_9() const { return ___colorScale_9; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_colorScale_9() { return &___colorScale_9; } inline void set_colorScale_9(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___colorScale_9 = value; } inline static int32_t get_offset_of_colorOffset_10() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorOffset_10)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_colorOffset_10() const { return ___colorOffset_10; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_colorOffset_10() { return &___colorOffset_10; } inline void set_colorOffset_10(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___colorOffset_10 = value; } inline static int32_t get_offset_of_colorMapEditorType__11() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorType__11)); } inline int32_t get_colorMapEditorType__11() const { return ___colorMapEditorType__11; } inline int32_t* get_address_of_colorMapEditorType__11() { return &___colorMapEditorType__11; } inline void set_colorMapEditorType__11(int32_t value) { ___colorMapEditorType__11 = value; } inline static int32_t get_offset_of_colorMapEditorGradient_12() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorGradient_12)); } inline Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * get_colorMapEditorGradient_12() const { return ___colorMapEditorGradient_12; } inline Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 ** get_address_of_colorMapEditorGradient_12() { return &___colorMapEditorGradient_12; } inline void set_colorMapEditorGradient_12(Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * value) { ___colorMapEditorGradient_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___colorMapEditorGradient_12), (void*)value); } inline static int32_t get_offset_of_colorMapEditorGradientOld_13() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorGradientOld_13)); } inline Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * get_colorMapEditorGradientOld_13() const { return ___colorMapEditorGradientOld_13; } inline Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 ** get_address_of_colorMapEditorGradientOld_13() { return &___colorMapEditorGradientOld_13; } inline void set_colorMapEditorGradientOld_13(Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * value) { ___colorMapEditorGradientOld_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___colorMapEditorGradientOld_13), (void*)value); } inline static int32_t get_offset_of_colorMapEditorContrast_14() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorContrast_14)); } inline float get_colorMapEditorContrast_14() const { return ___colorMapEditorContrast_14; } inline float* get_address_of_colorMapEditorContrast_14() { return &___colorMapEditorContrast_14; } inline void set_colorMapEditorContrast_14(float value) { ___colorMapEditorContrast_14 = value; } inline static int32_t get_offset_of_colorMapEditorContrast__15() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorContrast__15)); } inline float get_colorMapEditorContrast__15() const { return ___colorMapEditorContrast__15; } inline float* get_address_of_colorMapEditorContrast__15() { return &___colorMapEditorContrast__15; } inline void set_colorMapEditorContrast__15(float value) { ___colorMapEditorContrast__15 = value; } inline static int32_t get_offset_of_colorMapEditorBrightness_16() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorBrightness_16)); } inline float get_colorMapEditorBrightness_16() const { return ___colorMapEditorBrightness_16; } inline float* get_address_of_colorMapEditorBrightness_16() { return &___colorMapEditorBrightness_16; } inline void set_colorMapEditorBrightness_16(float value) { ___colorMapEditorBrightness_16 = value; } inline static int32_t get_offset_of_colorMapEditorBrightness__17() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorBrightness__17)); } inline float get_colorMapEditorBrightness__17() const { return ___colorMapEditorBrightness__17; } inline float* get_address_of_colorMapEditorBrightness__17() { return &___colorMapEditorBrightness__17; } inline void set_colorMapEditorBrightness__17(float value) { ___colorMapEditorBrightness__17 = value; } inline static int32_t get_offset_of_colorMapEditorPosterize_18() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorPosterize_18)); } inline float get_colorMapEditorPosterize_18() const { return ___colorMapEditorPosterize_18; } inline float* get_address_of_colorMapEditorPosterize_18() { return &___colorMapEditorPosterize_18; } inline void set_colorMapEditorPosterize_18(float value) { ___colorMapEditorPosterize_18 = value; } inline static int32_t get_offset_of_colorMapEditorPosterize__19() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapEditorPosterize__19)); } inline float get_colorMapEditorPosterize__19() const { return ___colorMapEditorPosterize__19; } inline float* get_address_of_colorMapEditorPosterize__19() { return &___colorMapEditorPosterize__19; } inline void set_colorMapEditorPosterize__19(float value) { ___colorMapEditorPosterize__19 = value; } inline static int32_t get_offset_of_cameraRig_20() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___cameraRig_20)); } inline OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * get_cameraRig_20() const { return ___cameraRig_20; } inline OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 ** get_address_of_cameraRig_20() { return &___cameraRig_20; } inline void set_cameraRig_20(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * value) { ___cameraRig_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___cameraRig_20), (void*)value); } inline static int32_t get_offset_of_cameraRigInitialized_21() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___cameraRigInitialized_21)); } inline bool get_cameraRigInitialized_21() const { return ___cameraRigInitialized_21; } inline bool* get_address_of_cameraRigInitialized_21() { return &___cameraRigInitialized_21; } inline void set_cameraRigInitialized_21(bool value) { ___cameraRigInitialized_21 = value; } inline static int32_t get_offset_of_auxGameObject_22() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___auxGameObject_22)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_auxGameObject_22() const { return ___auxGameObject_22; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_auxGameObject_22() { return &___auxGameObject_22; } inline void set_auxGameObject_22(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___auxGameObject_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___auxGameObject_22), (void*)value); } inline static int32_t get_offset_of_passthroughOverlay_23() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___passthroughOverlay_23)); } inline OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * get_passthroughOverlay_23() const { return ___passthroughOverlay_23; } inline OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 ** get_address_of_passthroughOverlay_23() { return &___passthroughOverlay_23; } inline void set_passthroughOverlay_23(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * value) { ___passthroughOverlay_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___passthroughOverlay_23), (void*)value); } inline static int32_t get_offset_of_surfaceGameObjects_24() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___surfaceGameObjects_24)); } inline Dictionary_2_t60275C105022D515270F8E8181130D8B1020CB74 * get_surfaceGameObjects_24() const { return ___surfaceGameObjects_24; } inline Dictionary_2_t60275C105022D515270F8E8181130D8B1020CB74 ** get_address_of_surfaceGameObjects_24() { return &___surfaceGameObjects_24; } inline void set_surfaceGameObjects_24(Dictionary_2_t60275C105022D515270F8E8181130D8B1020CB74 * value) { ___surfaceGameObjects_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___surfaceGameObjects_24), (void*)value); } inline static int32_t get_offset_of_deferredSurfaceGameObjects_25() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___deferredSurfaceGameObjects_25)); } inline List_1_t3B0820C8464D06CB2C98E3D7C75B224815E79323 * get_deferredSurfaceGameObjects_25() const { return ___deferredSurfaceGameObjects_25; } inline List_1_t3B0820C8464D06CB2C98E3D7C75B224815E79323 ** get_address_of_deferredSurfaceGameObjects_25() { return &___deferredSurfaceGameObjects_25; } inline void set_deferredSurfaceGameObjects_25(List_1_t3B0820C8464D06CB2C98E3D7C75B224815E79323 * value) { ___deferredSurfaceGameObjects_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___deferredSurfaceGameObjects_25), (void*)value); } inline static int32_t get_offset_of_textureOpacity__26() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___textureOpacity__26)); } inline float get_textureOpacity__26() const { return ___textureOpacity__26; } inline float* get_address_of_textureOpacity__26() { return &___textureOpacity__26; } inline void set_textureOpacity__26(float value) { ___textureOpacity__26 = value; } inline static int32_t get_offset_of_edgeRenderingEnabled__27() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___edgeRenderingEnabled__27)); } inline bool get_edgeRenderingEnabled__27() const { return ___edgeRenderingEnabled__27; } inline bool* get_address_of_edgeRenderingEnabled__27() { return &___edgeRenderingEnabled__27; } inline void set_edgeRenderingEnabled__27(bool value) { ___edgeRenderingEnabled__27 = value; } inline static int32_t get_offset_of_edgeColor__28() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___edgeColor__28)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_edgeColor__28() const { return ___edgeColor__28; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_edgeColor__28() { return &___edgeColor__28; } inline void set_edgeColor__28(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___edgeColor__28 = value; } inline static int32_t get_offset_of_colorMapType_29() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapType_29)); } inline int32_t get_colorMapType_29() const { return ___colorMapType_29; } inline int32_t* get_address_of_colorMapType_29() { return &___colorMapType_29; } inline void set_colorMapType_29(int32_t value) { ___colorMapType_29 = value; } inline static int32_t get_offset_of_colorMapData_30() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapData_30)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_colorMapData_30() const { return ___colorMapData_30; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_colorMapData_30() { return &___colorMapData_30; } inline void set_colorMapData_30(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___colorMapData_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___colorMapData_30), (void*)value); } inline static int32_t get_offset_of_colorMapDataHandle_31() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___colorMapDataHandle_31)); } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 get_colorMapDataHandle_31() const { return ___colorMapDataHandle_31; } inline GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * get_address_of_colorMapDataHandle_31() { return &___colorMapDataHandle_31; } inline void set_colorMapDataHandle_31(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 value) { ___colorMapDataHandle_31 = value; } inline static int32_t get_offset_of_styleDirty_32() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB, ___styleDirty_32)); } inline bool get_styleDirty_32() const { return ___styleDirty_32; } inline bool* get_address_of_styleDirty_32() { return &___styleDirty_32; } inline void set_styleDirty_32(bool value) { ___styleDirty_32 = value; } }; // OVRRuntimeController struct OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // OVRInput/Controller OVRRuntimeController::m_controller int32_t ___m_controller_4; // UnityEngine.Shader OVRRuntimeController::m_controllerModelShader Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___m_controllerModelShader_5; // UnityEngine.GameObject OVRRuntimeController::m_controllerObject GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___m_controllerObject_6; // System.String OVRRuntimeController::m_controllerModelPath String_t* ___m_controllerModelPath_9; // System.Boolean OVRRuntimeController::m_modelSupported bool ___m_modelSupported_10; // System.Boolean OVRRuntimeController::m_hasInputFocus bool ___m_hasInputFocus_11; // System.Boolean OVRRuntimeController::m_hasInputFocusPrev bool ___m_hasInputFocusPrev_12; // System.Boolean OVRRuntimeController::m_controllerConnectedPrev bool ___m_controllerConnectedPrev_13; public: inline static int32_t get_offset_of_m_controller_4() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_controller_4)); } inline int32_t get_m_controller_4() const { return ___m_controller_4; } inline int32_t* get_address_of_m_controller_4() { return &___m_controller_4; } inline void set_m_controller_4(int32_t value) { ___m_controller_4 = value; } inline static int32_t get_offset_of_m_controllerModelShader_5() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_controllerModelShader_5)); } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * get_m_controllerModelShader_5() const { return ___m_controllerModelShader_5; } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 ** get_address_of_m_controllerModelShader_5() { return &___m_controllerModelShader_5; } inline void set_m_controllerModelShader_5(Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * value) { ___m_controllerModelShader_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_controllerModelShader_5), (void*)value); } inline static int32_t get_offset_of_m_controllerObject_6() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_controllerObject_6)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_m_controllerObject_6() const { return ___m_controllerObject_6; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_m_controllerObject_6() { return &___m_controllerObject_6; } inline void set_m_controllerObject_6(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___m_controllerObject_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_controllerObject_6), (void*)value); } inline static int32_t get_offset_of_m_controllerModelPath_9() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_controllerModelPath_9)); } inline String_t* get_m_controllerModelPath_9() const { return ___m_controllerModelPath_9; } inline String_t** get_address_of_m_controllerModelPath_9() { return &___m_controllerModelPath_9; } inline void set_m_controllerModelPath_9(String_t* value) { ___m_controllerModelPath_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_controllerModelPath_9), (void*)value); } inline static int32_t get_offset_of_m_modelSupported_10() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_modelSupported_10)); } inline bool get_m_modelSupported_10() const { return ___m_modelSupported_10; } inline bool* get_address_of_m_modelSupported_10() { return &___m_modelSupported_10; } inline void set_m_modelSupported_10(bool value) { ___m_modelSupported_10 = value; } inline static int32_t get_offset_of_m_hasInputFocus_11() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_hasInputFocus_11)); } inline bool get_m_hasInputFocus_11() const { return ___m_hasInputFocus_11; } inline bool* get_address_of_m_hasInputFocus_11() { return &___m_hasInputFocus_11; } inline void set_m_hasInputFocus_11(bool value) { ___m_hasInputFocus_11 = value; } inline static int32_t get_offset_of_m_hasInputFocusPrev_12() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_hasInputFocusPrev_12)); } inline bool get_m_hasInputFocusPrev_12() const { return ___m_hasInputFocusPrev_12; } inline bool* get_address_of_m_hasInputFocusPrev_12() { return &___m_hasInputFocusPrev_12; } inline void set_m_hasInputFocusPrev_12(bool value) { ___m_hasInputFocusPrev_12 = value; } inline static int32_t get_offset_of_m_controllerConnectedPrev_13() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0, ___m_controllerConnectedPrev_13)); } inline bool get_m_controllerConnectedPrev_13() const { return ___m_controllerConnectedPrev_13; } inline bool* get_address_of_m_controllerConnectedPrev_13() { return &___m_controllerConnectedPrev_13; } inline void set_m_controllerConnectedPrev_13(bool value) { ___m_controllerConnectedPrev_13 = value; } }; // OVRSceneLoader struct OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Single OVRSceneLoader::sceneCheckIntervalSeconds float ___sceneCheckIntervalSeconds_7; // System.Single OVRSceneLoader::logCloseTime float ___logCloseTime_8; // UnityEngine.Canvas OVRSceneLoader::mainCanvas Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___mainCanvas_9; // UnityEngine.UI.Text OVRSceneLoader::logTextBox Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * ___logTextBox_10; // UnityEngine.AsyncOperation OVRSceneLoader::loadSceneOperation AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * ___loadSceneOperation_11; // System.String OVRSceneLoader::formattedLogText String_t* ___formattedLogText_12; // System.Single OVRSceneLoader::closeLogTimer float ___closeLogTimer_13; // System.Boolean OVRSceneLoader::closeLogDialogue bool ___closeLogDialogue_14; // System.Boolean OVRSceneLoader::canvasPosUpdated bool ___canvasPosUpdated_15; // System.String OVRSceneLoader::scenePath String_t* ___scenePath_16; // System.String OVRSceneLoader::sceneLoadDataPath String_t* ___sceneLoadDataPath_17; // System.Collections.Generic.List`1 OVRSceneLoader::loadedAssetBundles List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * ___loadedAssetBundles_18; // OVRSceneLoader/SceneInfo OVRSceneLoader::currentSceneInfo SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 ___currentSceneInfo_19; public: inline static int32_t get_offset_of_sceneCheckIntervalSeconds_7() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___sceneCheckIntervalSeconds_7)); } inline float get_sceneCheckIntervalSeconds_7() const { return ___sceneCheckIntervalSeconds_7; } inline float* get_address_of_sceneCheckIntervalSeconds_7() { return &___sceneCheckIntervalSeconds_7; } inline void set_sceneCheckIntervalSeconds_7(float value) { ___sceneCheckIntervalSeconds_7 = value; } inline static int32_t get_offset_of_logCloseTime_8() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___logCloseTime_8)); } inline float get_logCloseTime_8() const { return ___logCloseTime_8; } inline float* get_address_of_logCloseTime_8() { return &___logCloseTime_8; } inline void set_logCloseTime_8(float value) { ___logCloseTime_8 = value; } inline static int32_t get_offset_of_mainCanvas_9() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___mainCanvas_9)); } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * get_mainCanvas_9() const { return ___mainCanvas_9; } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA ** get_address_of_mainCanvas_9() { return &___mainCanvas_9; } inline void set_mainCanvas_9(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * value) { ___mainCanvas_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___mainCanvas_9), (void*)value); } inline static int32_t get_offset_of_logTextBox_10() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___logTextBox_10)); } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * get_logTextBox_10() const { return ___logTextBox_10; } inline Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 ** get_address_of_logTextBox_10() { return &___logTextBox_10; } inline void set_logTextBox_10(Text_t6A2339DA6C05AE2646FC1A6C8FCC127391BE7FA1 * value) { ___logTextBox_10 = value; Il2CppCodeGenWriteBarrier((void**)(&___logTextBox_10), (void*)value); } inline static int32_t get_offset_of_loadSceneOperation_11() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___loadSceneOperation_11)); } inline AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * get_loadSceneOperation_11() const { return ___loadSceneOperation_11; } inline AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 ** get_address_of_loadSceneOperation_11() { return &___loadSceneOperation_11; } inline void set_loadSceneOperation_11(AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * value) { ___loadSceneOperation_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___loadSceneOperation_11), (void*)value); } inline static int32_t get_offset_of_formattedLogText_12() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___formattedLogText_12)); } inline String_t* get_formattedLogText_12() const { return ___formattedLogText_12; } inline String_t** get_address_of_formattedLogText_12() { return &___formattedLogText_12; } inline void set_formattedLogText_12(String_t* value) { ___formattedLogText_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___formattedLogText_12), (void*)value); } inline static int32_t get_offset_of_closeLogTimer_13() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___closeLogTimer_13)); } inline float get_closeLogTimer_13() const { return ___closeLogTimer_13; } inline float* get_address_of_closeLogTimer_13() { return &___closeLogTimer_13; } inline void set_closeLogTimer_13(float value) { ___closeLogTimer_13 = value; } inline static int32_t get_offset_of_closeLogDialogue_14() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___closeLogDialogue_14)); } inline bool get_closeLogDialogue_14() const { return ___closeLogDialogue_14; } inline bool* get_address_of_closeLogDialogue_14() { return &___closeLogDialogue_14; } inline void set_closeLogDialogue_14(bool value) { ___closeLogDialogue_14 = value; } inline static int32_t get_offset_of_canvasPosUpdated_15() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___canvasPosUpdated_15)); } inline bool get_canvasPosUpdated_15() const { return ___canvasPosUpdated_15; } inline bool* get_address_of_canvasPosUpdated_15() { return &___canvasPosUpdated_15; } inline void set_canvasPosUpdated_15(bool value) { ___canvasPosUpdated_15 = value; } inline static int32_t get_offset_of_scenePath_16() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___scenePath_16)); } inline String_t* get_scenePath_16() const { return ___scenePath_16; } inline String_t** get_address_of_scenePath_16() { return &___scenePath_16; } inline void set_scenePath_16(String_t* value) { ___scenePath_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___scenePath_16), (void*)value); } inline static int32_t get_offset_of_sceneLoadDataPath_17() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___sceneLoadDataPath_17)); } inline String_t* get_sceneLoadDataPath_17() const { return ___sceneLoadDataPath_17; } inline String_t** get_address_of_sceneLoadDataPath_17() { return &___sceneLoadDataPath_17; } inline void set_sceneLoadDataPath_17(String_t* value) { ___sceneLoadDataPath_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___sceneLoadDataPath_17), (void*)value); } inline static int32_t get_offset_of_loadedAssetBundles_18() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___loadedAssetBundles_18)); } inline List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * get_loadedAssetBundles_18() const { return ___loadedAssetBundles_18; } inline List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E ** get_address_of_loadedAssetBundles_18() { return &___loadedAssetBundles_18; } inline void set_loadedAssetBundles_18(List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * value) { ___loadedAssetBundles_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___loadedAssetBundles_18), (void*)value); } inline static int32_t get_offset_of_currentSceneInfo_19() { return static_cast(offsetof(OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3, ___currentSceneInfo_19)); } inline SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 get_currentSceneInfo_19() const { return ___currentSceneInfo_19; } inline SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 * get_address_of_currentSceneInfo_19() { return &___currentSceneInfo_19; } inline void set_currentSceneInfo_19(SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 value) { ___currentSceneInfo_19 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___currentSceneInfo_19))->___scenes_0), (void*)NULL); } }; // OVRScreenFade struct OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Single OVRScreenFade::fadeTime float ___fadeTime_5; // UnityEngine.Color OVRScreenFade::fadeColor Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___fadeColor_6; // System.Boolean OVRScreenFade::fadeOnStart bool ___fadeOnStart_7; // System.Int32 OVRScreenFade::renderQueue int32_t ___renderQueue_8; // System.Single OVRScreenFade::explicitFadeAlpha float ___explicitFadeAlpha_9; // System.Single OVRScreenFade::animatedFadeAlpha float ___animatedFadeAlpha_10; // System.Single OVRScreenFade::uiFadeAlpha float ___uiFadeAlpha_11; // UnityEngine.MeshRenderer OVRScreenFade::fadeRenderer MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * ___fadeRenderer_12; // UnityEngine.MeshFilter OVRScreenFade::fadeMesh MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A * ___fadeMesh_13; // UnityEngine.Material OVRScreenFade::fadeMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___fadeMaterial_14; // System.Boolean OVRScreenFade::isFading bool ___isFading_15; public: inline static int32_t get_offset_of_fadeTime_5() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___fadeTime_5)); } inline float get_fadeTime_5() const { return ___fadeTime_5; } inline float* get_address_of_fadeTime_5() { return &___fadeTime_5; } inline void set_fadeTime_5(float value) { ___fadeTime_5 = value; } inline static int32_t get_offset_of_fadeColor_6() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___fadeColor_6)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_fadeColor_6() const { return ___fadeColor_6; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_fadeColor_6() { return &___fadeColor_6; } inline void set_fadeColor_6(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___fadeColor_6 = value; } inline static int32_t get_offset_of_fadeOnStart_7() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___fadeOnStart_7)); } inline bool get_fadeOnStart_7() const { return ___fadeOnStart_7; } inline bool* get_address_of_fadeOnStart_7() { return &___fadeOnStart_7; } inline void set_fadeOnStart_7(bool value) { ___fadeOnStart_7 = value; } inline static int32_t get_offset_of_renderQueue_8() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___renderQueue_8)); } inline int32_t get_renderQueue_8() const { return ___renderQueue_8; } inline int32_t* get_address_of_renderQueue_8() { return &___renderQueue_8; } inline void set_renderQueue_8(int32_t value) { ___renderQueue_8 = value; } inline static int32_t get_offset_of_explicitFadeAlpha_9() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___explicitFadeAlpha_9)); } inline float get_explicitFadeAlpha_9() const { return ___explicitFadeAlpha_9; } inline float* get_address_of_explicitFadeAlpha_9() { return &___explicitFadeAlpha_9; } inline void set_explicitFadeAlpha_9(float value) { ___explicitFadeAlpha_9 = value; } inline static int32_t get_offset_of_animatedFadeAlpha_10() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___animatedFadeAlpha_10)); } inline float get_animatedFadeAlpha_10() const { return ___animatedFadeAlpha_10; } inline float* get_address_of_animatedFadeAlpha_10() { return &___animatedFadeAlpha_10; } inline void set_animatedFadeAlpha_10(float value) { ___animatedFadeAlpha_10 = value; } inline static int32_t get_offset_of_uiFadeAlpha_11() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___uiFadeAlpha_11)); } inline float get_uiFadeAlpha_11() const { return ___uiFadeAlpha_11; } inline float* get_address_of_uiFadeAlpha_11() { return &___uiFadeAlpha_11; } inline void set_uiFadeAlpha_11(float value) { ___uiFadeAlpha_11 = value; } inline static int32_t get_offset_of_fadeRenderer_12() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___fadeRenderer_12)); } inline MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * get_fadeRenderer_12() const { return ___fadeRenderer_12; } inline MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B ** get_address_of_fadeRenderer_12() { return &___fadeRenderer_12; } inline void set_fadeRenderer_12(MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * value) { ___fadeRenderer_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___fadeRenderer_12), (void*)value); } inline static int32_t get_offset_of_fadeMesh_13() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___fadeMesh_13)); } inline MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A * get_fadeMesh_13() const { return ___fadeMesh_13; } inline MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A ** get_address_of_fadeMesh_13() { return &___fadeMesh_13; } inline void set_fadeMesh_13(MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A * value) { ___fadeMesh_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___fadeMesh_13), (void*)value); } inline static int32_t get_offset_of_fadeMaterial_14() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___fadeMaterial_14)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_fadeMaterial_14() const { return ___fadeMaterial_14; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_fadeMaterial_14() { return &___fadeMaterial_14; } inline void set_fadeMaterial_14(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___fadeMaterial_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___fadeMaterial_14), (void*)value); } inline static int32_t get_offset_of_isFading_15() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308, ___isFading_15)); } inline bool get_isFading_15() const { return ___isFading_15; } inline bool* get_address_of_isFading_15() { return &___isFading_15; } inline void set_isFading_15(bool value) { ___isFading_15 = value; } }; // OVRSkeletonRenderer struct OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // OVRSkeletonRenderer/IOVRSkeletonRendererDataProvider OVRSkeletonRenderer::_dataProvider RuntimeObject* ____dataProvider_4; // OVRSkeletonRenderer/ConfidenceBehavior OVRSkeletonRenderer::_confidenceBehavior int32_t ____confidenceBehavior_5; // OVRSkeletonRenderer/SystemGestureBehavior OVRSkeletonRenderer::_systemGestureBehavior int32_t ____systemGestureBehavior_6; // System.Boolean OVRSkeletonRenderer::_renderPhysicsCapsules bool ____renderPhysicsCapsules_7; // UnityEngine.Material OVRSkeletonRenderer::_skeletonMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____skeletonMaterial_8; // UnityEngine.Material OVRSkeletonRenderer::_skeletonDefaultMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____skeletonDefaultMaterial_9; // UnityEngine.Material OVRSkeletonRenderer::_capsuleMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____capsuleMaterial_10; // UnityEngine.Material OVRSkeletonRenderer::_capsuleDefaultMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____capsuleDefaultMaterial_11; // UnityEngine.Material OVRSkeletonRenderer::_systemGestureMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____systemGestureMaterial_12; // UnityEngine.Material OVRSkeletonRenderer::_systemGestureDefaultMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ____systemGestureDefaultMaterial_13; // System.Collections.Generic.List`1 OVRSkeletonRenderer::_boneVisualizations List_1_t2DE3B74946EBD10D047A5D64DF04DE92A3B067D8 * ____boneVisualizations_15; // System.Collections.Generic.List`1 OVRSkeletonRenderer::_capsuleVisualizations List_1_t89FE3B3C624BEEC726B8850113C0F37A0D0CF8FF * ____capsuleVisualizations_16; // OVRSkeleton OVRSkeletonRenderer::_ovrSkeleton OVRSkeleton_tE727DD0833515B8FCF6E7DE4BD16859BE26404EC * ____ovrSkeleton_17; // UnityEngine.GameObject OVRSkeletonRenderer::_skeletonGO GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ____skeletonGO_18; // System.Single OVRSkeletonRenderer::_scale float ____scale_19; // System.Boolean OVRSkeletonRenderer::k__BackingField bool ___U3CIsInitializedU3Ek__BackingField_21; // System.Boolean OVRSkeletonRenderer::k__BackingField bool ___U3CIsDataValidU3Ek__BackingField_22; // System.Boolean OVRSkeletonRenderer::k__BackingField bool ___U3CIsDataHighConfidenceU3Ek__BackingField_23; // System.Boolean OVRSkeletonRenderer::k__BackingField bool ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24; public: inline static int32_t get_offset_of__dataProvider_4() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____dataProvider_4)); } inline RuntimeObject* get__dataProvider_4() const { return ____dataProvider_4; } inline RuntimeObject** get_address_of__dataProvider_4() { return &____dataProvider_4; } inline void set__dataProvider_4(RuntimeObject* value) { ____dataProvider_4 = value; Il2CppCodeGenWriteBarrier((void**)(&____dataProvider_4), (void*)value); } inline static int32_t get_offset_of__confidenceBehavior_5() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____confidenceBehavior_5)); } inline int32_t get__confidenceBehavior_5() const { return ____confidenceBehavior_5; } inline int32_t* get_address_of__confidenceBehavior_5() { return &____confidenceBehavior_5; } inline void set__confidenceBehavior_5(int32_t value) { ____confidenceBehavior_5 = value; } inline static int32_t get_offset_of__systemGestureBehavior_6() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____systemGestureBehavior_6)); } inline int32_t get__systemGestureBehavior_6() const { return ____systemGestureBehavior_6; } inline int32_t* get_address_of__systemGestureBehavior_6() { return &____systemGestureBehavior_6; } inline void set__systemGestureBehavior_6(int32_t value) { ____systemGestureBehavior_6 = value; } inline static int32_t get_offset_of__renderPhysicsCapsules_7() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____renderPhysicsCapsules_7)); } inline bool get__renderPhysicsCapsules_7() const { return ____renderPhysicsCapsules_7; } inline bool* get_address_of__renderPhysicsCapsules_7() { return &____renderPhysicsCapsules_7; } inline void set__renderPhysicsCapsules_7(bool value) { ____renderPhysicsCapsules_7 = value; } inline static int32_t get_offset_of__skeletonMaterial_8() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____skeletonMaterial_8)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__skeletonMaterial_8() const { return ____skeletonMaterial_8; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__skeletonMaterial_8() { return &____skeletonMaterial_8; } inline void set__skeletonMaterial_8(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ____skeletonMaterial_8 = value; Il2CppCodeGenWriteBarrier((void**)(&____skeletonMaterial_8), (void*)value); } inline static int32_t get_offset_of__skeletonDefaultMaterial_9() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____skeletonDefaultMaterial_9)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__skeletonDefaultMaterial_9() const { return ____skeletonDefaultMaterial_9; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__skeletonDefaultMaterial_9() { return &____skeletonDefaultMaterial_9; } inline void set__skeletonDefaultMaterial_9(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ____skeletonDefaultMaterial_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____skeletonDefaultMaterial_9), (void*)value); } inline static int32_t get_offset_of__capsuleMaterial_10() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____capsuleMaterial_10)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__capsuleMaterial_10() const { return ____capsuleMaterial_10; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__capsuleMaterial_10() { return &____capsuleMaterial_10; } inline void set__capsuleMaterial_10(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ____capsuleMaterial_10 = value; Il2CppCodeGenWriteBarrier((void**)(&____capsuleMaterial_10), (void*)value); } inline static int32_t get_offset_of__capsuleDefaultMaterial_11() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____capsuleDefaultMaterial_11)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__capsuleDefaultMaterial_11() const { return ____capsuleDefaultMaterial_11; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__capsuleDefaultMaterial_11() { return &____capsuleDefaultMaterial_11; } inline void set__capsuleDefaultMaterial_11(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ____capsuleDefaultMaterial_11 = value; Il2CppCodeGenWriteBarrier((void**)(&____capsuleDefaultMaterial_11), (void*)value); } inline static int32_t get_offset_of__systemGestureMaterial_12() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____systemGestureMaterial_12)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__systemGestureMaterial_12() const { return ____systemGestureMaterial_12; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__systemGestureMaterial_12() { return &____systemGestureMaterial_12; } inline void set__systemGestureMaterial_12(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ____systemGestureMaterial_12 = value; Il2CppCodeGenWriteBarrier((void**)(&____systemGestureMaterial_12), (void*)value); } inline static int32_t get_offset_of__systemGestureDefaultMaterial_13() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____systemGestureDefaultMaterial_13)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get__systemGestureDefaultMaterial_13() const { return ____systemGestureDefaultMaterial_13; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of__systemGestureDefaultMaterial_13() { return &____systemGestureDefaultMaterial_13; } inline void set__systemGestureDefaultMaterial_13(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ____systemGestureDefaultMaterial_13 = value; Il2CppCodeGenWriteBarrier((void**)(&____systemGestureDefaultMaterial_13), (void*)value); } inline static int32_t get_offset_of__boneVisualizations_15() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____boneVisualizations_15)); } inline List_1_t2DE3B74946EBD10D047A5D64DF04DE92A3B067D8 * get__boneVisualizations_15() const { return ____boneVisualizations_15; } inline List_1_t2DE3B74946EBD10D047A5D64DF04DE92A3B067D8 ** get_address_of__boneVisualizations_15() { return &____boneVisualizations_15; } inline void set__boneVisualizations_15(List_1_t2DE3B74946EBD10D047A5D64DF04DE92A3B067D8 * value) { ____boneVisualizations_15 = value; Il2CppCodeGenWriteBarrier((void**)(&____boneVisualizations_15), (void*)value); } inline static int32_t get_offset_of__capsuleVisualizations_16() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____capsuleVisualizations_16)); } inline List_1_t89FE3B3C624BEEC726B8850113C0F37A0D0CF8FF * get__capsuleVisualizations_16() const { return ____capsuleVisualizations_16; } inline List_1_t89FE3B3C624BEEC726B8850113C0F37A0D0CF8FF ** get_address_of__capsuleVisualizations_16() { return &____capsuleVisualizations_16; } inline void set__capsuleVisualizations_16(List_1_t89FE3B3C624BEEC726B8850113C0F37A0D0CF8FF * value) { ____capsuleVisualizations_16 = value; Il2CppCodeGenWriteBarrier((void**)(&____capsuleVisualizations_16), (void*)value); } inline static int32_t get_offset_of__ovrSkeleton_17() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____ovrSkeleton_17)); } inline OVRSkeleton_tE727DD0833515B8FCF6E7DE4BD16859BE26404EC * get__ovrSkeleton_17() const { return ____ovrSkeleton_17; } inline OVRSkeleton_tE727DD0833515B8FCF6E7DE4BD16859BE26404EC ** get_address_of__ovrSkeleton_17() { return &____ovrSkeleton_17; } inline void set__ovrSkeleton_17(OVRSkeleton_tE727DD0833515B8FCF6E7DE4BD16859BE26404EC * value) { ____ovrSkeleton_17 = value; Il2CppCodeGenWriteBarrier((void**)(&____ovrSkeleton_17), (void*)value); } inline static int32_t get_offset_of__skeletonGO_18() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____skeletonGO_18)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get__skeletonGO_18() const { return ____skeletonGO_18; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of__skeletonGO_18() { return &____skeletonGO_18; } inline void set__skeletonGO_18(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ____skeletonGO_18 = value; Il2CppCodeGenWriteBarrier((void**)(&____skeletonGO_18), (void*)value); } inline static int32_t get_offset_of__scale_19() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ____scale_19)); } inline float get__scale_19() const { return ____scale_19; } inline float* get_address_of__scale_19() { return &____scale_19; } inline void set__scale_19(float value) { ____scale_19 = value; } inline static int32_t get_offset_of_U3CIsInitializedU3Ek__BackingField_21() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ___U3CIsInitializedU3Ek__BackingField_21)); } inline bool get_U3CIsInitializedU3Ek__BackingField_21() const { return ___U3CIsInitializedU3Ek__BackingField_21; } inline bool* get_address_of_U3CIsInitializedU3Ek__BackingField_21() { return &___U3CIsInitializedU3Ek__BackingField_21; } inline void set_U3CIsInitializedU3Ek__BackingField_21(bool value) { ___U3CIsInitializedU3Ek__BackingField_21 = value; } inline static int32_t get_offset_of_U3CIsDataValidU3Ek__BackingField_22() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ___U3CIsDataValidU3Ek__BackingField_22)); } inline bool get_U3CIsDataValidU3Ek__BackingField_22() const { return ___U3CIsDataValidU3Ek__BackingField_22; } inline bool* get_address_of_U3CIsDataValidU3Ek__BackingField_22() { return &___U3CIsDataValidU3Ek__BackingField_22; } inline void set_U3CIsDataValidU3Ek__BackingField_22(bool value) { ___U3CIsDataValidU3Ek__BackingField_22 = value; } inline static int32_t get_offset_of_U3CIsDataHighConfidenceU3Ek__BackingField_23() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ___U3CIsDataHighConfidenceU3Ek__BackingField_23)); } inline bool get_U3CIsDataHighConfidenceU3Ek__BackingField_23() const { return ___U3CIsDataHighConfidenceU3Ek__BackingField_23; } inline bool* get_address_of_U3CIsDataHighConfidenceU3Ek__BackingField_23() { return &___U3CIsDataHighConfidenceU3Ek__BackingField_23; } inline void set_U3CIsDataHighConfidenceU3Ek__BackingField_23(bool value) { ___U3CIsDataHighConfidenceU3Ek__BackingField_23 = value; } inline static int32_t get_offset_of_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3, ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24)); } inline bool get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24() const { return ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24; } inline bool* get_address_of_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24() { return &___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24; } inline void set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24(bool value) { ___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_24 = value; } }; // OVRTrackedKeyboard struct OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // System.Single OVRTrackedKeyboard::k__BackingField float ___U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9; // OVRTrackedKeyboard/TrackedKeyboardState OVRTrackedKeyboard::k__BackingField int32_t ___U3CTrackingStateU3Ek__BackingField_10; // OVRKeyboard/TrackedKeyboardInfo OVRTrackedKeyboard::k__BackingField TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 ___U3CActiveKeyboardInfoU3Ek__BackingField_11; // OVRKeyboard/TrackedKeyboardInfo OVRTrackedKeyboard::k__BackingField TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 ___U3CSystemKeyboardInfoU3Ek__BackingField_12; // System.Boolean OVRTrackedKeyboard::trackingEnabled bool ___trackingEnabled_13; // System.Boolean OVRTrackedKeyboard::connectionRequired bool ___connectionRequired_14; // OVRPlugin/TrackedKeyboardQueryFlags OVRTrackedKeyboard::keyboardQueryFlags int32_t ___keyboardQueryFlags_15; // OVRTrackedKeyboard/KeyboardPresentation OVRTrackedKeyboard::presentation int32_t ___presentation_16; // System.Single OVRTrackedKeyboard::PassthroughBorderMultiplier float ___PassthroughBorderMultiplier_17; // UnityEngine.Shader OVRTrackedKeyboard::keyboardModelShader Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___keyboardModelShader_18; // OVRPlugin/TrackedKeyboardPresentationStyles OVRTrackedKeyboard::currentKeyboardPresentationStyles int32_t ___currentKeyboardPresentationStyles_19; // OVROverlay OVRTrackedKeyboard::projectedPassthroughOpaque_ OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * ___projectedPassthroughOpaque__20; // UnityEngine.MeshRenderer[] OVRTrackedKeyboard::activeKeyboardRenderers_ MeshRendererU5BU5D_t535468079DEF88AD38546DC5D04E9102C401D228* ___activeKeyboardRenderers__21; // UnityEngine.GameObject OVRTrackedKeyboard::activeKeyboardMesh_ GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___activeKeyboardMesh__22; // UnityEngine.MeshRenderer OVRTrackedKeyboard::activeKeyboardMeshRenderer_ MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * ___activeKeyboardMeshRenderer__23; // UnityEngine.GameObject OVRTrackedKeyboard::passthroughQuad_ GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___passthroughQuad__24; // UnityEngine.Shader OVRTrackedKeyboard::opaqueShader_ Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___opaqueShader__25; // UnityEngine.Shader OVRTrackedKeyboard::KeyLabelModeShader Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___KeyLabelModeShader_26; // UnityEngine.Shader OVRTrackedKeyboard::PassthroughShader Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * ___PassthroughShader_27; // UnityEngine.Transform OVRTrackedKeyboard::projectedPassthroughRoot Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___projectedPassthroughRoot_28; // UnityEngine.MeshFilter OVRTrackedKeyboard::projectedPassthroughMesh MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A * ___projectedPassthroughMesh_29; // OVRPassthroughLayer OVRTrackedKeyboard::ProjectedPassthroughKeyLabel OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB * ___ProjectedPassthroughKeyLabel_30; // System.Action`1 OVRTrackedKeyboard::TrackedKeyboardActiveChanged Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * ___TrackedKeyboardActiveChanged_31; // System.Action`1 OVRTrackedKeyboard::TrackedKeyboardVisibilityChanged Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 * ___TrackedKeyboardVisibilityChanged_32; // UnityEngine.Transform OVRTrackedKeyboard::ActiveKeyboardTransform Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___ActiveKeyboardTransform_33; // System.Boolean OVRTrackedKeyboard::HandsOverKeyboard bool ___HandsOverKeyboard_34; // OVRCameraRig OVRTrackedKeyboard::cameraRig_ OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * ___cameraRig__35; // UnityEngine.Coroutine OVRTrackedKeyboard::updateKeyboardRoutine_ Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * ___updateKeyboardRoutine__36; // UnityEngine.BoxCollider OVRTrackedKeyboard::keyboardBoundingBox_ BoxCollider_tA530691AC1A3C9FE6428F68F98588FCB1BF9AAA5 * ___keyboardBoundingBox__37; // System.Single OVRTrackedKeyboard::staleTimeoutCounter_ float ___staleTimeoutCounter__38; // System.Single OVRTrackedKeyboard::reacquisitionTimer_ float ___reacquisitionTimer__40; // System.Single OVRTrackedKeyboard::sendFilteredPoseEventTimer_ float ___sendFilteredPoseEventTimer__41; // System.Int32 OVRTrackedKeyboard::skippedPoseCount_ int32_t ___skippedPoseCount__42; // System.Nullable`1 OVRTrackedKeyboard::EWAPosition Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 ___EWAPosition_44; // System.Nullable`1 OVRTrackedKeyboard::EWARotation Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 ___EWARotation_45; // System.Single OVRTrackedKeyboard::HAND_HEIGHT_TUNING float ___HAND_HEIGHT_TUNING_46; // System.Boolean OVRTrackedKeyboard::UseHeuristicRollback bool ___UseHeuristicRollback_47; public: inline static int32_t get_offset_of_U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9)); } inline float get_U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9() const { return ___U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9; } inline float* get_address_of_U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9() { return &___U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9; } inline void set_U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9(float value) { ___U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9 = value; } inline static int32_t get_offset_of_U3CTrackingStateU3Ek__BackingField_10() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___U3CTrackingStateU3Ek__BackingField_10)); } inline int32_t get_U3CTrackingStateU3Ek__BackingField_10() const { return ___U3CTrackingStateU3Ek__BackingField_10; } inline int32_t* get_address_of_U3CTrackingStateU3Ek__BackingField_10() { return &___U3CTrackingStateU3Ek__BackingField_10; } inline void set_U3CTrackingStateU3Ek__BackingField_10(int32_t value) { ___U3CTrackingStateU3Ek__BackingField_10 = value; } inline static int32_t get_offset_of_U3CActiveKeyboardInfoU3Ek__BackingField_11() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___U3CActiveKeyboardInfoU3Ek__BackingField_11)); } inline TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 get_U3CActiveKeyboardInfoU3Ek__BackingField_11() const { return ___U3CActiveKeyboardInfoU3Ek__BackingField_11; } inline TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 * get_address_of_U3CActiveKeyboardInfoU3Ek__BackingField_11() { return &___U3CActiveKeyboardInfoU3Ek__BackingField_11; } inline void set_U3CActiveKeyboardInfoU3Ek__BackingField_11(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 value) { ___U3CActiveKeyboardInfoU3Ek__BackingField_11 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CActiveKeyboardInfoU3Ek__BackingField_11))->___Name_0), (void*)NULL); } inline static int32_t get_offset_of_U3CSystemKeyboardInfoU3Ek__BackingField_12() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___U3CSystemKeyboardInfoU3Ek__BackingField_12)); } inline TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 get_U3CSystemKeyboardInfoU3Ek__BackingField_12() const { return ___U3CSystemKeyboardInfoU3Ek__BackingField_12; } inline TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 * get_address_of_U3CSystemKeyboardInfoU3Ek__BackingField_12() { return &___U3CSystemKeyboardInfoU3Ek__BackingField_12; } inline void set_U3CSystemKeyboardInfoU3Ek__BackingField_12(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 value) { ___U3CSystemKeyboardInfoU3Ek__BackingField_12 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___U3CSystemKeyboardInfoU3Ek__BackingField_12))->___Name_0), (void*)NULL); } inline static int32_t get_offset_of_trackingEnabled_13() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___trackingEnabled_13)); } inline bool get_trackingEnabled_13() const { return ___trackingEnabled_13; } inline bool* get_address_of_trackingEnabled_13() { return &___trackingEnabled_13; } inline void set_trackingEnabled_13(bool value) { ___trackingEnabled_13 = value; } inline static int32_t get_offset_of_connectionRequired_14() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___connectionRequired_14)); } inline bool get_connectionRequired_14() const { return ___connectionRequired_14; } inline bool* get_address_of_connectionRequired_14() { return &___connectionRequired_14; } inline void set_connectionRequired_14(bool value) { ___connectionRequired_14 = value; } inline static int32_t get_offset_of_keyboardQueryFlags_15() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___keyboardQueryFlags_15)); } inline int32_t get_keyboardQueryFlags_15() const { return ___keyboardQueryFlags_15; } inline int32_t* get_address_of_keyboardQueryFlags_15() { return &___keyboardQueryFlags_15; } inline void set_keyboardQueryFlags_15(int32_t value) { ___keyboardQueryFlags_15 = value; } inline static int32_t get_offset_of_presentation_16() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___presentation_16)); } inline int32_t get_presentation_16() const { return ___presentation_16; } inline int32_t* get_address_of_presentation_16() { return &___presentation_16; } inline void set_presentation_16(int32_t value) { ___presentation_16 = value; } inline static int32_t get_offset_of_PassthroughBorderMultiplier_17() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___PassthroughBorderMultiplier_17)); } inline float get_PassthroughBorderMultiplier_17() const { return ___PassthroughBorderMultiplier_17; } inline float* get_address_of_PassthroughBorderMultiplier_17() { return &___PassthroughBorderMultiplier_17; } inline void set_PassthroughBorderMultiplier_17(float value) { ___PassthroughBorderMultiplier_17 = value; } inline static int32_t get_offset_of_keyboardModelShader_18() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___keyboardModelShader_18)); } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * get_keyboardModelShader_18() const { return ___keyboardModelShader_18; } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 ** get_address_of_keyboardModelShader_18() { return &___keyboardModelShader_18; } inline void set_keyboardModelShader_18(Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * value) { ___keyboardModelShader_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyboardModelShader_18), (void*)value); } inline static int32_t get_offset_of_currentKeyboardPresentationStyles_19() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___currentKeyboardPresentationStyles_19)); } inline int32_t get_currentKeyboardPresentationStyles_19() const { return ___currentKeyboardPresentationStyles_19; } inline int32_t* get_address_of_currentKeyboardPresentationStyles_19() { return &___currentKeyboardPresentationStyles_19; } inline void set_currentKeyboardPresentationStyles_19(int32_t value) { ___currentKeyboardPresentationStyles_19 = value; } inline static int32_t get_offset_of_projectedPassthroughOpaque__20() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___projectedPassthroughOpaque__20)); } inline OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * get_projectedPassthroughOpaque__20() const { return ___projectedPassthroughOpaque__20; } inline OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 ** get_address_of_projectedPassthroughOpaque__20() { return &___projectedPassthroughOpaque__20; } inline void set_projectedPassthroughOpaque__20(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * value) { ___projectedPassthroughOpaque__20 = value; Il2CppCodeGenWriteBarrier((void**)(&___projectedPassthroughOpaque__20), (void*)value); } inline static int32_t get_offset_of_activeKeyboardRenderers__21() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___activeKeyboardRenderers__21)); } inline MeshRendererU5BU5D_t535468079DEF88AD38546DC5D04E9102C401D228* get_activeKeyboardRenderers__21() const { return ___activeKeyboardRenderers__21; } inline MeshRendererU5BU5D_t535468079DEF88AD38546DC5D04E9102C401D228** get_address_of_activeKeyboardRenderers__21() { return &___activeKeyboardRenderers__21; } inline void set_activeKeyboardRenderers__21(MeshRendererU5BU5D_t535468079DEF88AD38546DC5D04E9102C401D228* value) { ___activeKeyboardRenderers__21 = value; Il2CppCodeGenWriteBarrier((void**)(&___activeKeyboardRenderers__21), (void*)value); } inline static int32_t get_offset_of_activeKeyboardMesh__22() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___activeKeyboardMesh__22)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_activeKeyboardMesh__22() const { return ___activeKeyboardMesh__22; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_activeKeyboardMesh__22() { return &___activeKeyboardMesh__22; } inline void set_activeKeyboardMesh__22(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___activeKeyboardMesh__22 = value; Il2CppCodeGenWriteBarrier((void**)(&___activeKeyboardMesh__22), (void*)value); } inline static int32_t get_offset_of_activeKeyboardMeshRenderer__23() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___activeKeyboardMeshRenderer__23)); } inline MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * get_activeKeyboardMeshRenderer__23() const { return ___activeKeyboardMeshRenderer__23; } inline MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B ** get_address_of_activeKeyboardMeshRenderer__23() { return &___activeKeyboardMeshRenderer__23; } inline void set_activeKeyboardMeshRenderer__23(MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * value) { ___activeKeyboardMeshRenderer__23 = value; Il2CppCodeGenWriteBarrier((void**)(&___activeKeyboardMeshRenderer__23), (void*)value); } inline static int32_t get_offset_of_passthroughQuad__24() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___passthroughQuad__24)); } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * get_passthroughQuad__24() const { return ___passthroughQuad__24; } inline GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 ** get_address_of_passthroughQuad__24() { return &___passthroughQuad__24; } inline void set_passthroughQuad__24(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * value) { ___passthroughQuad__24 = value; Il2CppCodeGenWriteBarrier((void**)(&___passthroughQuad__24), (void*)value); } inline static int32_t get_offset_of_opaqueShader__25() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___opaqueShader__25)); } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * get_opaqueShader__25() const { return ___opaqueShader__25; } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 ** get_address_of_opaqueShader__25() { return &___opaqueShader__25; } inline void set_opaqueShader__25(Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * value) { ___opaqueShader__25 = value; Il2CppCodeGenWriteBarrier((void**)(&___opaqueShader__25), (void*)value); } inline static int32_t get_offset_of_KeyLabelModeShader_26() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___KeyLabelModeShader_26)); } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * get_KeyLabelModeShader_26() const { return ___KeyLabelModeShader_26; } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 ** get_address_of_KeyLabelModeShader_26() { return &___KeyLabelModeShader_26; } inline void set_KeyLabelModeShader_26(Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * value) { ___KeyLabelModeShader_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___KeyLabelModeShader_26), (void*)value); } inline static int32_t get_offset_of_PassthroughShader_27() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___PassthroughShader_27)); } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * get_PassthroughShader_27() const { return ___PassthroughShader_27; } inline Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 ** get_address_of_PassthroughShader_27() { return &___PassthroughShader_27; } inline void set_PassthroughShader_27(Shader_tB2355DC4F3CAF20B2F1AB5AABBF37C3555FFBC39 * value) { ___PassthroughShader_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___PassthroughShader_27), (void*)value); } inline static int32_t get_offset_of_projectedPassthroughRoot_28() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___projectedPassthroughRoot_28)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_projectedPassthroughRoot_28() const { return ___projectedPassthroughRoot_28; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_projectedPassthroughRoot_28() { return &___projectedPassthroughRoot_28; } inline void set_projectedPassthroughRoot_28(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___projectedPassthroughRoot_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___projectedPassthroughRoot_28), (void*)value); } inline static int32_t get_offset_of_projectedPassthroughMesh_29() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___projectedPassthroughMesh_29)); } inline MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A * get_projectedPassthroughMesh_29() const { return ___projectedPassthroughMesh_29; } inline MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A ** get_address_of_projectedPassthroughMesh_29() { return &___projectedPassthroughMesh_29; } inline void set_projectedPassthroughMesh_29(MeshFilter_t763BB2BBF3881176AD25E4570E6DD215BA0AA51A * value) { ___projectedPassthroughMesh_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___projectedPassthroughMesh_29), (void*)value); } inline static int32_t get_offset_of_ProjectedPassthroughKeyLabel_30() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___ProjectedPassthroughKeyLabel_30)); } inline OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB * get_ProjectedPassthroughKeyLabel_30() const { return ___ProjectedPassthroughKeyLabel_30; } inline OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB ** get_address_of_ProjectedPassthroughKeyLabel_30() { return &___ProjectedPassthroughKeyLabel_30; } inline void set_ProjectedPassthroughKeyLabel_30(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB * value) { ___ProjectedPassthroughKeyLabel_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___ProjectedPassthroughKeyLabel_30), (void*)value); } inline static int32_t get_offset_of_TrackedKeyboardActiveChanged_31() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___TrackedKeyboardActiveChanged_31)); } inline Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * get_TrackedKeyboardActiveChanged_31() const { return ___TrackedKeyboardActiveChanged_31; } inline Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 ** get_address_of_TrackedKeyboardActiveChanged_31() { return &___TrackedKeyboardActiveChanged_31; } inline void set_TrackedKeyboardActiveChanged_31(Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * value) { ___TrackedKeyboardActiveChanged_31 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrackedKeyboardActiveChanged_31), (void*)value); } inline static int32_t get_offset_of_TrackedKeyboardVisibilityChanged_32() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___TrackedKeyboardVisibilityChanged_32)); } inline Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 * get_TrackedKeyboardVisibilityChanged_32() const { return ___TrackedKeyboardVisibilityChanged_32; } inline Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 ** get_address_of_TrackedKeyboardVisibilityChanged_32() { return &___TrackedKeyboardVisibilityChanged_32; } inline void set_TrackedKeyboardVisibilityChanged_32(Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 * value) { ___TrackedKeyboardVisibilityChanged_32 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrackedKeyboardVisibilityChanged_32), (void*)value); } inline static int32_t get_offset_of_ActiveKeyboardTransform_33() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___ActiveKeyboardTransform_33)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_ActiveKeyboardTransform_33() const { return ___ActiveKeyboardTransform_33; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_ActiveKeyboardTransform_33() { return &___ActiveKeyboardTransform_33; } inline void set_ActiveKeyboardTransform_33(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___ActiveKeyboardTransform_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___ActiveKeyboardTransform_33), (void*)value); } inline static int32_t get_offset_of_HandsOverKeyboard_34() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___HandsOverKeyboard_34)); } inline bool get_HandsOverKeyboard_34() const { return ___HandsOverKeyboard_34; } inline bool* get_address_of_HandsOverKeyboard_34() { return &___HandsOverKeyboard_34; } inline void set_HandsOverKeyboard_34(bool value) { ___HandsOverKeyboard_34 = value; } inline static int32_t get_offset_of_cameraRig__35() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___cameraRig__35)); } inline OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * get_cameraRig__35() const { return ___cameraRig__35; } inline OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 ** get_address_of_cameraRig__35() { return &___cameraRig__35; } inline void set_cameraRig__35(OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * value) { ___cameraRig__35 = value; Il2CppCodeGenWriteBarrier((void**)(&___cameraRig__35), (void*)value); } inline static int32_t get_offset_of_updateKeyboardRoutine__36() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___updateKeyboardRoutine__36)); } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * get_updateKeyboardRoutine__36() const { return ___updateKeyboardRoutine__36; } inline Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 ** get_address_of_updateKeyboardRoutine__36() { return &___updateKeyboardRoutine__36; } inline void set_updateKeyboardRoutine__36(Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * value) { ___updateKeyboardRoutine__36 = value; Il2CppCodeGenWriteBarrier((void**)(&___updateKeyboardRoutine__36), (void*)value); } inline static int32_t get_offset_of_keyboardBoundingBox__37() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___keyboardBoundingBox__37)); } inline BoxCollider_tA530691AC1A3C9FE6428F68F98588FCB1BF9AAA5 * get_keyboardBoundingBox__37() const { return ___keyboardBoundingBox__37; } inline BoxCollider_tA530691AC1A3C9FE6428F68F98588FCB1BF9AAA5 ** get_address_of_keyboardBoundingBox__37() { return &___keyboardBoundingBox__37; } inline void set_keyboardBoundingBox__37(BoxCollider_tA530691AC1A3C9FE6428F68F98588FCB1BF9AAA5 * value) { ___keyboardBoundingBox__37 = value; Il2CppCodeGenWriteBarrier((void**)(&___keyboardBoundingBox__37), (void*)value); } inline static int32_t get_offset_of_staleTimeoutCounter__38() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___staleTimeoutCounter__38)); } inline float get_staleTimeoutCounter__38() const { return ___staleTimeoutCounter__38; } inline float* get_address_of_staleTimeoutCounter__38() { return &___staleTimeoutCounter__38; } inline void set_staleTimeoutCounter__38(float value) { ___staleTimeoutCounter__38 = value; } inline static int32_t get_offset_of_reacquisitionTimer__40() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___reacquisitionTimer__40)); } inline float get_reacquisitionTimer__40() const { return ___reacquisitionTimer__40; } inline float* get_address_of_reacquisitionTimer__40() { return &___reacquisitionTimer__40; } inline void set_reacquisitionTimer__40(float value) { ___reacquisitionTimer__40 = value; } inline static int32_t get_offset_of_sendFilteredPoseEventTimer__41() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___sendFilteredPoseEventTimer__41)); } inline float get_sendFilteredPoseEventTimer__41() const { return ___sendFilteredPoseEventTimer__41; } inline float* get_address_of_sendFilteredPoseEventTimer__41() { return &___sendFilteredPoseEventTimer__41; } inline void set_sendFilteredPoseEventTimer__41(float value) { ___sendFilteredPoseEventTimer__41 = value; } inline static int32_t get_offset_of_skippedPoseCount__42() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___skippedPoseCount__42)); } inline int32_t get_skippedPoseCount__42() const { return ___skippedPoseCount__42; } inline int32_t* get_address_of_skippedPoseCount__42() { return &___skippedPoseCount__42; } inline void set_skippedPoseCount__42(int32_t value) { ___skippedPoseCount__42 = value; } inline static int32_t get_offset_of_EWAPosition_44() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___EWAPosition_44)); } inline Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 get_EWAPosition_44() const { return ___EWAPosition_44; } inline Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * get_address_of_EWAPosition_44() { return &___EWAPosition_44; } inline void set_EWAPosition_44(Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 value) { ___EWAPosition_44 = value; } inline static int32_t get_offset_of_EWARotation_45() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___EWARotation_45)); } inline Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 get_EWARotation_45() const { return ___EWARotation_45; } inline Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * get_address_of_EWARotation_45() { return &___EWARotation_45; } inline void set_EWARotation_45(Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 value) { ___EWARotation_45 = value; } inline static int32_t get_offset_of_HAND_HEIGHT_TUNING_46() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___HAND_HEIGHT_TUNING_46)); } inline float get_HAND_HEIGHT_TUNING_46() const { return ___HAND_HEIGHT_TUNING_46; } inline float* get_address_of_HAND_HEIGHT_TUNING_46() { return &___HAND_HEIGHT_TUNING_46; } inline void set_HAND_HEIGHT_TUNING_46(float value) { ___HAND_HEIGHT_TUNING_46 = value; } inline static int32_t get_offset_of_UseHeuristicRollback_47() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4, ___UseHeuristicRollback_47)); } inline bool get_UseHeuristicRollback_47() const { return ___UseHeuristicRollback_47; } inline bool* get_address_of_UseHeuristicRollback_47() { return &___UseHeuristicRollback_47; } inline void set_UseHeuristicRollback_47(bool value) { ___UseHeuristicRollback_47 = value; } }; // System.Net.Sockets.SocketException struct SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 : public Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950 { public: // System.Net.EndPoint System.Net.Sockets.SocketException::m_EndPoint EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * ___m_EndPoint_20; public: inline static int32_t get_offset_of_m_EndPoint_20() { return static_cast(offsetof(SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88, ___m_EndPoint_20)); } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * get_m_EndPoint_20() const { return ___m_EndPoint_20; } inline EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA ** get_address_of_m_EndPoint_20() { return &___m_EndPoint_20; } inline void set_m_EndPoint_20(EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * value) { ___m_EndPoint_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_EndPoint_20), (void*)value); } }; // UnityEngine.EventSystems.UIBehaviour struct UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: public: }; // OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer struct OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 : public MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A { public: // OVRNetwork/OVRNetworkTcpServer OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::tcpServer OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * ___tcpServer_5; // System.Int32 OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::listeningPort int32_t ___listeningPort_6; public: inline static int32_t get_offset_of_tcpServer_5() { return static_cast(offsetof(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7, ___tcpServer_5)); } inline OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * get_tcpServer_5() const { return ___tcpServer_5; } inline OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA ** get_address_of_tcpServer_5() { return &___tcpServer_5; } inline void set_tcpServer_5(OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * value) { ___tcpServer_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___tcpServer_5), (void*)value); } inline static int32_t get_offset_of_listeningPort_6() { return static_cast(offsetof(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7, ___listeningPort_6)); } inline int32_t get_listeningPort_6() const { return ___listeningPort_6; } inline int32_t* get_address_of_listeningPort_6() { return &___listeningPort_6; } inline void set_listeningPort_6(int32_t value) { ___listeningPort_6 = value; } }; // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 : public UIBehaviour_tD1C6E2D542222546D68510ECE74036EFBC3C3B0E { public: // UnityEngine.Material UnityEngine.UI.Graphic::m_Material Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___m_Material_6; // UnityEngine.Color UnityEngine.UI.Graphic::m_Color Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 ___m_Color_7; // System.Boolean UnityEngine.UI.Graphic::m_SkipLayoutUpdate bool ___m_SkipLayoutUpdate_8; // System.Boolean UnityEngine.UI.Graphic::m_SkipMaterialUpdate bool ___m_SkipMaterialUpdate_9; // System.Boolean UnityEngine.UI.Graphic::m_RaycastTarget bool ___m_RaycastTarget_10; // System.Boolean UnityEngine.UI.Graphic::m_RaycastTargetCache bool ___m_RaycastTargetCache_11; // UnityEngine.Vector4 UnityEngine.UI.Graphic::m_RaycastPadding Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___m_RaycastPadding_12; // UnityEngine.RectTransform UnityEngine.UI.Graphic::m_RectTransform RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * ___m_RectTransform_13; // UnityEngine.CanvasRenderer UnityEngine.UI.Graphic::m_CanvasRenderer CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * ___m_CanvasRenderer_14; // UnityEngine.Canvas UnityEngine.UI.Graphic::m_Canvas Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * ___m_Canvas_15; // System.Boolean UnityEngine.UI.Graphic::m_VertsDirty bool ___m_VertsDirty_16; // System.Boolean UnityEngine.UI.Graphic::m_MaterialDirty bool ___m_MaterialDirty_17; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyLayoutCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyLayoutCallback_18; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyVertsCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyVertsCallback_19; // UnityEngine.Events.UnityAction UnityEngine.UI.Graphic::m_OnDirtyMaterialCallback UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * ___m_OnDirtyMaterialCallback_20; // UnityEngine.Mesh UnityEngine.UI.Graphic::m_CachedMesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___m_CachedMesh_23; // UnityEngine.Vector2[] UnityEngine.UI.Graphic::m_CachedUvs Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* ___m_CachedUvs_24; // UnityEngine.UI.CoroutineTween.TweenRunner`1 UnityEngine.UI.Graphic::m_ColorTweenRunner TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * ___m_ColorTweenRunner_25; // System.Boolean UnityEngine.UI.Graphic::k__BackingField bool ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26; public: inline static int32_t get_offset_of_m_Material_6() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Material_6)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_m_Material_6() const { return ___m_Material_6; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_m_Material_6() { return &___m_Material_6; } inline void set_m_Material_6(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___m_Material_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Material_6), (void*)value); } inline static int32_t get_offset_of_m_Color_7() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Color_7)); } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 get_m_Color_7() const { return ___m_Color_7; } inline Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 * get_address_of_m_Color_7() { return &___m_Color_7; } inline void set_m_Color_7(Color_tF40DAF76C04FFECF3FE6024F85A294741C9CC659 value) { ___m_Color_7 = value; } inline static int32_t get_offset_of_m_SkipLayoutUpdate_8() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipLayoutUpdate_8)); } inline bool get_m_SkipLayoutUpdate_8() const { return ___m_SkipLayoutUpdate_8; } inline bool* get_address_of_m_SkipLayoutUpdate_8() { return &___m_SkipLayoutUpdate_8; } inline void set_m_SkipLayoutUpdate_8(bool value) { ___m_SkipLayoutUpdate_8 = value; } inline static int32_t get_offset_of_m_SkipMaterialUpdate_9() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_SkipMaterialUpdate_9)); } inline bool get_m_SkipMaterialUpdate_9() const { return ___m_SkipMaterialUpdate_9; } inline bool* get_address_of_m_SkipMaterialUpdate_9() { return &___m_SkipMaterialUpdate_9; } inline void set_m_SkipMaterialUpdate_9(bool value) { ___m_SkipMaterialUpdate_9 = value; } inline static int32_t get_offset_of_m_RaycastTarget_10() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastTarget_10)); } inline bool get_m_RaycastTarget_10() const { return ___m_RaycastTarget_10; } inline bool* get_address_of_m_RaycastTarget_10() { return &___m_RaycastTarget_10; } inline void set_m_RaycastTarget_10(bool value) { ___m_RaycastTarget_10 = value; } inline static int32_t get_offset_of_m_RaycastTargetCache_11() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastTargetCache_11)); } inline bool get_m_RaycastTargetCache_11() const { return ___m_RaycastTargetCache_11; } inline bool* get_address_of_m_RaycastTargetCache_11() { return &___m_RaycastTargetCache_11; } inline void set_m_RaycastTargetCache_11(bool value) { ___m_RaycastTargetCache_11 = value; } inline static int32_t get_offset_of_m_RaycastPadding_12() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RaycastPadding_12)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_m_RaycastPadding_12() const { return ___m_RaycastPadding_12; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_m_RaycastPadding_12() { return &___m_RaycastPadding_12; } inline void set_m_RaycastPadding_12(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___m_RaycastPadding_12 = value; } inline static int32_t get_offset_of_m_RectTransform_13() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_RectTransform_13)); } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * get_m_RectTransform_13() const { return ___m_RectTransform_13; } inline RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 ** get_address_of_m_RectTransform_13() { return &___m_RectTransform_13; } inline void set_m_RectTransform_13(RectTransform_t8A6A306FB29A6C8C22010CF9040E319753571072 * value) { ___m_RectTransform_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_RectTransform_13), (void*)value); } inline static int32_t get_offset_of_m_CanvasRenderer_14() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CanvasRenderer_14)); } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * get_m_CanvasRenderer_14() const { return ___m_CanvasRenderer_14; } inline CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E ** get_address_of_m_CanvasRenderer_14() { return &___m_CanvasRenderer_14; } inline void set_m_CanvasRenderer_14(CanvasRenderer_tCF8ABE659F7C3A6ED0D99A988D0BDFB651310F0E * value) { ___m_CanvasRenderer_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CanvasRenderer_14), (void*)value); } inline static int32_t get_offset_of_m_Canvas_15() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_Canvas_15)); } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * get_m_Canvas_15() const { return ___m_Canvas_15; } inline Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA ** get_address_of_m_Canvas_15() { return &___m_Canvas_15; } inline void set_m_Canvas_15(Canvas_t2B7E56B7BDC287962E092755372E214ACB6393EA * value) { ___m_Canvas_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_Canvas_15), (void*)value); } inline static int32_t get_offset_of_m_VertsDirty_16() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_VertsDirty_16)); } inline bool get_m_VertsDirty_16() const { return ___m_VertsDirty_16; } inline bool* get_address_of_m_VertsDirty_16() { return &___m_VertsDirty_16; } inline void set_m_VertsDirty_16(bool value) { ___m_VertsDirty_16 = value; } inline static int32_t get_offset_of_m_MaterialDirty_17() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_MaterialDirty_17)); } inline bool get_m_MaterialDirty_17() const { return ___m_MaterialDirty_17; } inline bool* get_address_of_m_MaterialDirty_17() { return &___m_MaterialDirty_17; } inline void set_m_MaterialDirty_17(bool value) { ___m_MaterialDirty_17 = value; } inline static int32_t get_offset_of_m_OnDirtyLayoutCallback_18() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyLayoutCallback_18)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyLayoutCallback_18() const { return ___m_OnDirtyLayoutCallback_18; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyLayoutCallback_18() { return &___m_OnDirtyLayoutCallback_18; } inline void set_m_OnDirtyLayoutCallback_18(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyLayoutCallback_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyLayoutCallback_18), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyVertsCallback_19() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyVertsCallback_19)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyVertsCallback_19() const { return ___m_OnDirtyVertsCallback_19; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyVertsCallback_19() { return &___m_OnDirtyVertsCallback_19; } inline void set_m_OnDirtyVertsCallback_19(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyVertsCallback_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyVertsCallback_19), (void*)value); } inline static int32_t get_offset_of_m_OnDirtyMaterialCallback_20() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_OnDirtyMaterialCallback_20)); } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * get_m_OnDirtyMaterialCallback_20() const { return ___m_OnDirtyMaterialCallback_20; } inline UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 ** get_address_of_m_OnDirtyMaterialCallback_20() { return &___m_OnDirtyMaterialCallback_20; } inline void set_m_OnDirtyMaterialCallback_20(UnityAction_t22E545F8BE0A62EE051C6A83E209587A0DB1C099 * value) { ___m_OnDirtyMaterialCallback_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_OnDirtyMaterialCallback_20), (void*)value); } inline static int32_t get_offset_of_m_CachedMesh_23() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedMesh_23)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_m_CachedMesh_23() const { return ___m_CachedMesh_23; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_m_CachedMesh_23() { return &___m_CachedMesh_23; } inline void set_m_CachedMesh_23(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___m_CachedMesh_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedMesh_23), (void*)value); } inline static int32_t get_offset_of_m_CachedUvs_24() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_CachedUvs_24)); } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* get_m_CachedUvs_24() const { return ___m_CachedUvs_24; } inline Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA** get_address_of_m_CachedUvs_24() { return &___m_CachedUvs_24; } inline void set_m_CachedUvs_24(Vector2U5BU5D_tE0F58A2D6D8592B5EC37D9CDEF09103A02E5D7FA* value) { ___m_CachedUvs_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_CachedUvs_24), (void*)value); } inline static int32_t get_offset_of_m_ColorTweenRunner_25() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___m_ColorTweenRunner_25)); } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * get_m_ColorTweenRunner_25() const { return ___m_ColorTweenRunner_25; } inline TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 ** get_address_of_m_ColorTweenRunner_25() { return &___m_ColorTweenRunner_25; } inline void set_m_ColorTweenRunner_25(TweenRunner_1_tD84B9953874682FCC36990AF2C54D748293908F3 * value) { ___m_ColorTweenRunner_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_ColorTweenRunner_25), (void*)value); } inline static int32_t get_offset_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_26() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24, ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26)); } inline bool get_U3CuseLegacyMeshGenerationU3Ek__BackingField_26() const { return ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26; } inline bool* get_address_of_U3CuseLegacyMeshGenerationU3Ek__BackingField_26() { return &___U3CuseLegacyMeshGenerationU3Ek__BackingField_26; } inline void set_U3CuseLegacyMeshGenerationU3Ek__BackingField_26(bool value) { ___U3CuseLegacyMeshGenerationU3Ek__BackingField_26 = value; } }; // System.Object // System.Object // System.Collections.Generic.List`1 struct List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E_StaticFields, ____emptyArray_5)); } inline AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D* get__emptyArray_5() const { return ____emptyArray_5; } inline AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(AssetBundleU5BU5D_t049219716584A9B3A1A6136429402193C7EB3A4D* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5_StaticFields, ____emptyArray_5)); } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* get__emptyArray_5() const { return ____emptyArray_5; } inline ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3_StaticFields, ____emptyArray_5)); } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* get__emptyArray_5() const { return ____emptyArray_5; } inline StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF_StaticFields, ____emptyArray_5)); } inline TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A* get__emptyArray_5() const { return ____emptyArray_5; } inline TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(TcpClientU5BU5D_t6E8C3C00813FAFD447FA41B17777D81369D51D7A* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 // System.Collections.Generic.List`1 struct List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D_StaticFields { public: // T[] System.Collections.Generic.List`1::_emptyArray ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5* ____emptyArray_5; public: inline static int32_t get_offset_of__emptyArray_5() { return static_cast(offsetof(List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D_StaticFields, ____emptyArray_5)); } inline ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5* get__emptyArray_5() const { return ____emptyArray_5; } inline ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5** get_address_of__emptyArray_5() { return &____emptyArray_5; } inline void set__emptyArray_5(ClipPlaybackTrackerU5BU5D_t4986D9E85049FDF965414272E68FED59EA7C3CD5* value) { ____emptyArray_5 = value; Il2CppCodeGenWriteBarrier((void**)(&____emptyArray_5), (void*)value); } }; // System.Collections.Generic.List`1 struct Il2CppArrayBounds; // System.Array struct Il2CppArrayBounds; // System.Array // System.Globalization.CultureInfo struct CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields { public: // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::invariant_culture_info CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___invariant_culture_info_0; // System.Object System.Globalization.CultureInfo::shared_table_lock RuntimeObject * ___shared_table_lock_1; // System.Globalization.CultureInfo System.Globalization.CultureInfo::default_current_culture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___default_current_culture_2; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentUICulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentUICulture_33; // System.Globalization.CultureInfo modreq(System.Runtime.CompilerServices.IsVolatile) System.Globalization.CultureInfo::s_DefaultThreadCurrentCulture CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * ___s_DefaultThreadCurrentCulture_34; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_number Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * ___shared_by_number_35; // System.Collections.Generic.Dictionary`2 System.Globalization.CultureInfo::shared_by_name Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * ___shared_by_name_36; // System.Boolean System.Globalization.CultureInfo::IsTaiwanSku bool ___IsTaiwanSku_37; public: inline static int32_t get_offset_of_invariant_culture_info_0() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___invariant_culture_info_0)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_invariant_culture_info_0() const { return ___invariant_culture_info_0; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_invariant_culture_info_0() { return &___invariant_culture_info_0; } inline void set_invariant_culture_info_0(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___invariant_culture_info_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___invariant_culture_info_0), (void*)value); } inline static int32_t get_offset_of_shared_table_lock_1() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_table_lock_1)); } inline RuntimeObject * get_shared_table_lock_1() const { return ___shared_table_lock_1; } inline RuntimeObject ** get_address_of_shared_table_lock_1() { return &___shared_table_lock_1; } inline void set_shared_table_lock_1(RuntimeObject * value) { ___shared_table_lock_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_table_lock_1), (void*)value); } inline static int32_t get_offset_of_default_current_culture_2() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___default_current_culture_2)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_default_current_culture_2() const { return ___default_current_culture_2; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_default_current_culture_2() { return &___default_current_culture_2; } inline void set_default_current_culture_2(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___default_current_culture_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___default_current_culture_2), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentUICulture_33() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentUICulture_33)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentUICulture_33() const { return ___s_DefaultThreadCurrentUICulture_33; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentUICulture_33() { return &___s_DefaultThreadCurrentUICulture_33; } inline void set_s_DefaultThreadCurrentUICulture_33(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentUICulture_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentUICulture_33), (void*)value); } inline static int32_t get_offset_of_s_DefaultThreadCurrentCulture_34() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___s_DefaultThreadCurrentCulture_34)); } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * get_s_DefaultThreadCurrentCulture_34() const { return ___s_DefaultThreadCurrentCulture_34; } inline CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 ** get_address_of_s_DefaultThreadCurrentCulture_34() { return &___s_DefaultThreadCurrentCulture_34; } inline void set_s_DefaultThreadCurrentCulture_34(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * value) { ___s_DefaultThreadCurrentCulture_34 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultThreadCurrentCulture_34), (void*)value); } inline static int32_t get_offset_of_shared_by_number_35() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_number_35)); } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * get_shared_by_number_35() const { return ___shared_by_number_35; } inline Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 ** get_address_of_shared_by_number_35() { return &___shared_by_number_35; } inline void set_shared_by_number_35(Dictionary_2_t5B8303F2C9869A39ED3E03C0FBB09F817E479402 * value) { ___shared_by_number_35 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_number_35), (void*)value); } inline static int32_t get_offset_of_shared_by_name_36() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___shared_by_name_36)); } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * get_shared_by_name_36() const { return ___shared_by_name_36; } inline Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC ** get_address_of_shared_by_name_36() { return &___shared_by_name_36; } inline void set_shared_by_name_36(Dictionary_2_t0015CBF964B0687CBB5ECFDDE06671A8F3DDE4BC * value) { ___shared_by_name_36 = value; Il2CppCodeGenWriteBarrier((void**)(&___shared_by_name_36), (void*)value); } inline static int32_t get_offset_of_IsTaiwanSku_37() { return static_cast(offsetof(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_StaticFields, ___IsTaiwanSku_37)); } inline bool get_IsTaiwanSku_37() const { return ___IsTaiwanSku_37; } inline bool* get_address_of_IsTaiwanSku_37() { return &___IsTaiwanSku_37; } inline void set_IsTaiwanSku_37(bool value) { ___IsTaiwanSku_37 = value; } }; // System.Globalization.CultureInfo // System.Text.Encoding struct Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields { public: // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::defaultEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___defaultEncoding_0; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::unicodeEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___unicodeEncoding_1; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::bigEndianUnicode Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___bigEndianUnicode_2; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf7Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf7Encoding_3; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf8Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf8Encoding_4; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::utf32Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___utf32Encoding_5; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::asciiEncoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___asciiEncoding_6; // System.Text.Encoding modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::latin1Encoding Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * ___latin1Encoding_7; // System.Collections.Hashtable modreq(System.Runtime.CompilerServices.IsVolatile) System.Text.Encoding::encodings Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * ___encodings_8; // System.Object System.Text.Encoding::s_InternalSyncObject RuntimeObject * ___s_InternalSyncObject_15; public: inline static int32_t get_offset_of_defaultEncoding_0() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___defaultEncoding_0)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_defaultEncoding_0() const { return ___defaultEncoding_0; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_defaultEncoding_0() { return &___defaultEncoding_0; } inline void set_defaultEncoding_0(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___defaultEncoding_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultEncoding_0), (void*)value); } inline static int32_t get_offset_of_unicodeEncoding_1() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___unicodeEncoding_1)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_unicodeEncoding_1() const { return ___unicodeEncoding_1; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_unicodeEncoding_1() { return &___unicodeEncoding_1; } inline void set_unicodeEncoding_1(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___unicodeEncoding_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___unicodeEncoding_1), (void*)value); } inline static int32_t get_offset_of_bigEndianUnicode_2() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___bigEndianUnicode_2)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_bigEndianUnicode_2() const { return ___bigEndianUnicode_2; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_bigEndianUnicode_2() { return &___bigEndianUnicode_2; } inline void set_bigEndianUnicode_2(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___bigEndianUnicode_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___bigEndianUnicode_2), (void*)value); } inline static int32_t get_offset_of_utf7Encoding_3() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf7Encoding_3)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf7Encoding_3() const { return ___utf7Encoding_3; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf7Encoding_3() { return &___utf7Encoding_3; } inline void set_utf7Encoding_3(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf7Encoding_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf7Encoding_3), (void*)value); } inline static int32_t get_offset_of_utf8Encoding_4() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf8Encoding_4)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf8Encoding_4() const { return ___utf8Encoding_4; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf8Encoding_4() { return &___utf8Encoding_4; } inline void set_utf8Encoding_4(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf8Encoding_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf8Encoding_4), (void*)value); } inline static int32_t get_offset_of_utf32Encoding_5() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___utf32Encoding_5)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_utf32Encoding_5() const { return ___utf32Encoding_5; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_utf32Encoding_5() { return &___utf32Encoding_5; } inline void set_utf32Encoding_5(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___utf32Encoding_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___utf32Encoding_5), (void*)value); } inline static int32_t get_offset_of_asciiEncoding_6() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___asciiEncoding_6)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_asciiEncoding_6() const { return ___asciiEncoding_6; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_asciiEncoding_6() { return &___asciiEncoding_6; } inline void set_asciiEncoding_6(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___asciiEncoding_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___asciiEncoding_6), (void*)value); } inline static int32_t get_offset_of_latin1Encoding_7() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___latin1Encoding_7)); } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * get_latin1Encoding_7() const { return ___latin1Encoding_7; } inline Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 ** get_address_of_latin1Encoding_7() { return &___latin1Encoding_7; } inline void set_latin1Encoding_7(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * value) { ___latin1Encoding_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___latin1Encoding_7), (void*)value); } inline static int32_t get_offset_of_encodings_8() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___encodings_8)); } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * get_encodings_8() const { return ___encodings_8; } inline Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC ** get_address_of_encodings_8() { return &___encodings_8; } inline void set_encodings_8(Hashtable_t7565AB92A12227AD5BADD6911F10D87EE52509AC * value) { ___encodings_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___encodings_8), (void*)value); } inline static int32_t get_offset_of_s_InternalSyncObject_15() { return static_cast(offsetof(Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827_StaticFields, ___s_InternalSyncObject_15)); } inline RuntimeObject * get_s_InternalSyncObject_15() const { return ___s_InternalSyncObject_15; } inline RuntimeObject ** get_address_of_s_InternalSyncObject_15() { return &___s_InternalSyncObject_15; } inline void set_s_InternalSyncObject_15(RuntimeObject * value) { ___s_InternalSyncObject_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_InternalSyncObject_15), (void*)value); } }; // System.Text.Encoding // System.Net.EndPoint // System.Net.EndPoint // System.MarshalByRefObject // System.MarshalByRefObject // System.Reflection.MemberInfo // System.Reflection.MemberInfo // OVRBoneCapsule // OVRBoneCapsule // OVRHaptics struct OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_StaticFields { public: // OVRHaptics/OVRHapticsChannel[] OVRHaptics::Channels OVRHapticsChannelU5BU5D_t26BA3E1C8D54352F52B58BEBC5AD9BC08A740059* ___Channels_0; // OVRHaptics/OVRHapticsChannel OVRHaptics::LeftChannel OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * ___LeftChannel_1; // OVRHaptics/OVRHapticsChannel OVRHaptics::RightChannel OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * ___RightChannel_2; // OVRHaptics/OVRHapticsOutput[] OVRHaptics::m_outputs OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D* ___m_outputs_3; public: inline static int32_t get_offset_of_Channels_0() { return static_cast(offsetof(OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_StaticFields, ___Channels_0)); } inline OVRHapticsChannelU5BU5D_t26BA3E1C8D54352F52B58BEBC5AD9BC08A740059* get_Channels_0() const { return ___Channels_0; } inline OVRHapticsChannelU5BU5D_t26BA3E1C8D54352F52B58BEBC5AD9BC08A740059** get_address_of_Channels_0() { return &___Channels_0; } inline void set_Channels_0(OVRHapticsChannelU5BU5D_t26BA3E1C8D54352F52B58BEBC5AD9BC08A740059* value) { ___Channels_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Channels_0), (void*)value); } inline static int32_t get_offset_of_LeftChannel_1() { return static_cast(offsetof(OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_StaticFields, ___LeftChannel_1)); } inline OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * get_LeftChannel_1() const { return ___LeftChannel_1; } inline OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 ** get_address_of_LeftChannel_1() { return &___LeftChannel_1; } inline void set_LeftChannel_1(OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * value) { ___LeftChannel_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___LeftChannel_1), (void*)value); } inline static int32_t get_offset_of_RightChannel_2() { return static_cast(offsetof(OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_StaticFields, ___RightChannel_2)); } inline OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * get_RightChannel_2() const { return ___RightChannel_2; } inline OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 ** get_address_of_RightChannel_2() { return &___RightChannel_2; } inline void set_RightChannel_2(OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * value) { ___RightChannel_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___RightChannel_2), (void*)value); } inline static int32_t get_offset_of_m_outputs_3() { return static_cast(offsetof(OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_StaticFields, ___m_outputs_3)); } inline OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D* get_m_outputs_3() const { return ___m_outputs_3; } inline OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D** get_address_of_m_outputs_3() { return &___m_outputs_3; } inline void set_m_outputs_3(OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D* value) { ___m_outputs_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_outputs_3), (void*)value); } }; // OVRHaptics // OVRHapticsClip // OVRHapticsClip // System.String struct String_t_StaticFields { public: // System.String System.String::Empty String_t* ___Empty_5; public: inline static int32_t get_offset_of_Empty_5() { return static_cast(offsetof(String_t_StaticFields, ___Empty_5)); } inline String_t* get_Empty_5() const { return ___Empty_5; } inline String_t** get_address_of_Empty_5() { return &___Empty_5; } inline void set_Empty_5(String_t* value) { ___Empty_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___Empty_5), (void*)value); } }; // System.String // System.Text.StringBuilder // System.Text.StringBuilder // System.Net.Sockets.TcpListener // System.Net.Sockets.TcpListener // System.ValueType // System.ValueType // System.Version struct Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_StaticFields { public: // System.Char[] System.Version::SeparatorsArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___SeparatorsArray_4; public: inline static int32_t get_offset_of_SeparatorsArray_4() { return static_cast(offsetof(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_StaticFields, ___SeparatorsArray_4)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_SeparatorsArray_4() const { return ___SeparatorsArray_4; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_SeparatorsArray_4() { return &___SeparatorsArray_4; } inline void set_SeparatorsArray_4(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___SeparatorsArray_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___SeparatorsArray_4), (void*)value); } }; // System.Version // UnityEngine.YieldInstruction // UnityEngine.YieldInstruction // OVRControllerTest/BoolMonitor // OVRControllerTest/BoolMonitor // OVRHandTest/<>c struct U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_StaticFields { public: // OVRHandTest/<>c OVRHandTest/<>c::<>9 U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * ___U3CU3E9_0; // OVRHandTest/BoolMonitor/BoolGenerator OVRHandTest/<>c::<>9__14_0 BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * ___U3CU3E9__14_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__14_0_1() { return static_cast(offsetof(U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_StaticFields, ___U3CU3E9__14_0_1)); } inline BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * get_U3CU3E9__14_0_1() const { return ___U3CU3E9__14_0_1; } inline BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A ** get_address_of_U3CU3E9__14_0_1() { return &___U3CU3E9__14_0_1; } inline void set_U3CU3E9__14_0_1(BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * value) { ___U3CU3E9__14_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__14_0_1), (void*)value); } }; // OVRHandTest/<>c // OVRHandTest/BoolMonitor // OVRHandTest/BoolMonitor // OVRHaptics/Config struct Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields { public: // System.Int32 OVRHaptics/Config::k__BackingField int32_t ___U3CSampleRateHzU3Ek__BackingField_0; // System.Int32 OVRHaptics/Config::k__BackingField int32_t ___U3CSampleSizeInBytesU3Ek__BackingField_1; // System.Int32 OVRHaptics/Config::k__BackingField int32_t ___U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2; // System.Int32 OVRHaptics/Config::k__BackingField int32_t ___U3CMinimumBufferSamplesCountU3Ek__BackingField_3; // System.Int32 OVRHaptics/Config::k__BackingField int32_t ___U3COptimalBufferSamplesCountU3Ek__BackingField_4; // System.Int32 OVRHaptics/Config::k__BackingField int32_t ___U3CMaximumBufferSamplesCountU3Ek__BackingField_5; public: inline static int32_t get_offset_of_U3CSampleRateHzU3Ek__BackingField_0() { return static_cast(offsetof(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields, ___U3CSampleRateHzU3Ek__BackingField_0)); } inline int32_t get_U3CSampleRateHzU3Ek__BackingField_0() const { return ___U3CSampleRateHzU3Ek__BackingField_0; } inline int32_t* get_address_of_U3CSampleRateHzU3Ek__BackingField_0() { return &___U3CSampleRateHzU3Ek__BackingField_0; } inline void set_U3CSampleRateHzU3Ek__BackingField_0(int32_t value) { ___U3CSampleRateHzU3Ek__BackingField_0 = value; } inline static int32_t get_offset_of_U3CSampleSizeInBytesU3Ek__BackingField_1() { return static_cast(offsetof(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields, ___U3CSampleSizeInBytesU3Ek__BackingField_1)); } inline int32_t get_U3CSampleSizeInBytesU3Ek__BackingField_1() const { return ___U3CSampleSizeInBytesU3Ek__BackingField_1; } inline int32_t* get_address_of_U3CSampleSizeInBytesU3Ek__BackingField_1() { return &___U3CSampleSizeInBytesU3Ek__BackingField_1; } inline void set_U3CSampleSizeInBytesU3Ek__BackingField_1(int32_t value) { ___U3CSampleSizeInBytesU3Ek__BackingField_1 = value; } inline static int32_t get_offset_of_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2() { return static_cast(offsetof(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields, ___U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2)); } inline int32_t get_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2() const { return ___U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2; } inline int32_t* get_address_of_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2() { return &___U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2; } inline void set_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2(int32_t value) { ___U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2 = value; } inline static int32_t get_offset_of_U3CMinimumBufferSamplesCountU3Ek__BackingField_3() { return static_cast(offsetof(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields, ___U3CMinimumBufferSamplesCountU3Ek__BackingField_3)); } inline int32_t get_U3CMinimumBufferSamplesCountU3Ek__BackingField_3() const { return ___U3CMinimumBufferSamplesCountU3Ek__BackingField_3; } inline int32_t* get_address_of_U3CMinimumBufferSamplesCountU3Ek__BackingField_3() { return &___U3CMinimumBufferSamplesCountU3Ek__BackingField_3; } inline void set_U3CMinimumBufferSamplesCountU3Ek__BackingField_3(int32_t value) { ___U3CMinimumBufferSamplesCountU3Ek__BackingField_3 = value; } inline static int32_t get_offset_of_U3COptimalBufferSamplesCountU3Ek__BackingField_4() { return static_cast(offsetof(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields, ___U3COptimalBufferSamplesCountU3Ek__BackingField_4)); } inline int32_t get_U3COptimalBufferSamplesCountU3Ek__BackingField_4() const { return ___U3COptimalBufferSamplesCountU3Ek__BackingField_4; } inline int32_t* get_address_of_U3COptimalBufferSamplesCountU3Ek__BackingField_4() { return &___U3COptimalBufferSamplesCountU3Ek__BackingField_4; } inline void set_U3COptimalBufferSamplesCountU3Ek__BackingField_4(int32_t value) { ___U3COptimalBufferSamplesCountU3Ek__BackingField_4 = value; } inline static int32_t get_offset_of_U3CMaximumBufferSamplesCountU3Ek__BackingField_5() { return static_cast(offsetof(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields, ___U3CMaximumBufferSamplesCountU3Ek__BackingField_5)); } inline int32_t get_U3CMaximumBufferSamplesCountU3Ek__BackingField_5() const { return ___U3CMaximumBufferSamplesCountU3Ek__BackingField_5; } inline int32_t* get_address_of_U3CMaximumBufferSamplesCountU3Ek__BackingField_5() { return &___U3CMaximumBufferSamplesCountU3Ek__BackingField_5; } inline void set_U3CMaximumBufferSamplesCountU3Ek__BackingField_5(int32_t value) { ___U3CMaximumBufferSamplesCountU3Ek__BackingField_5 = value; } }; // OVRHaptics/Config // OVRHaptics/OVRHapticsChannel // OVRHaptics/OVRHapticsChannel // OVRHaptics/OVRHapticsOutput // OVRHaptics/OVRHapticsOutput // OVRManager/<>c struct U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_StaticFields { public: // OVRManager/<>c OVRManager/<>c::<>9 U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * ___U3CU3E9_0; // System.Func`2 OVRManager/<>c::<>9__361_0 Func_2_t557464437C03A4FBA07635260F8075F8249A7CB8 * ___U3CU3E9__361_0_1; // System.Comparison`1 OVRManager/<>c::<>9__375_0 Comparison_1_t56DA2BF5E200CD0955B14F85C5669DD0B3F17E15 * ___U3CU3E9__375_0_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__361_0_1() { return static_cast(offsetof(U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_StaticFields, ___U3CU3E9__361_0_1)); } inline Func_2_t557464437C03A4FBA07635260F8075F8249A7CB8 * get_U3CU3E9__361_0_1() const { return ___U3CU3E9__361_0_1; } inline Func_2_t557464437C03A4FBA07635260F8075F8249A7CB8 ** get_address_of_U3CU3E9__361_0_1() { return &___U3CU3E9__361_0_1; } inline void set_U3CU3E9__361_0_1(Func_2_t557464437C03A4FBA07635260F8075F8249A7CB8 * value) { ___U3CU3E9__361_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__361_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__375_0_2() { return static_cast(offsetof(U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_StaticFields, ___U3CU3E9__375_0_2)); } inline Comparison_1_t56DA2BF5E200CD0955B14F85C5669DD0B3F17E15 * get_U3CU3E9__375_0_2() const { return ___U3CU3E9__375_0_2; } inline Comparison_1_t56DA2BF5E200CD0955B14F85C5669DD0B3F17E15 ** get_address_of_U3CU3E9__375_0_2() { return &___U3CU3E9__375_0_2; } inline void set_U3CU3E9__375_0_2(Comparison_1_t56DA2BF5E200CD0955B14F85C5669DD0B3F17E15 * value) { ___U3CU3E9__375_0_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__375_0_2), (void*)value); } }; // OVRManager/<>c // OVRNetwork/OVRNetworkTcpClient // OVRNetwork/OVRNetworkTcpClient // OVRNetwork/OVRNetworkTcpServer // OVRNetwork/OVRNetworkTcpServer // OVRPassthroughLayer/<>c__DisplayClass10_0 // OVRPassthroughLayer/<>c__DisplayClass10_0 // OVRPassthroughLayer/<>c__DisplayClass9_0 // OVRPassthroughLayer/<>c__DisplayClass9_0 // UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c struct U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_StaticFields { public: // UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::<>9 U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * ___U3CU3E9_0; // System.Comparison`1 UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::<>9__15_0 Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 * ___U3CU3E9__15_0_1; // System.Comparison`1 UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::<>9__16_0 Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 * ___U3CU3E9__16_0_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__15_0_1() { return static_cast(offsetof(U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_StaticFields, ___U3CU3E9__15_0_1)); } inline Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 * get_U3CU3E9__15_0_1() const { return ___U3CU3E9__15_0_1; } inline Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 ** get_address_of_U3CU3E9__15_0_1() { return &___U3CU3E9__15_0_1; } inline void set_U3CU3E9__15_0_1(Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 * value) { ___U3CU3E9__15_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__15_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__16_0_2() { return static_cast(offsetof(U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_StaticFields, ___U3CU3E9__16_0_2)); } inline Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 * get_U3CU3E9__16_0_2() const { return ___U3CU3E9__16_0_2; } inline Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 ** get_address_of_U3CU3E9__16_0_2() { return &___U3CU3E9__16_0_2; } inline void set_U3CU3E9__16_0_2(Comparison_1_t8B53B4CEDFCAA2901ADED4D0797304CC695D21E0 * value) { ___U3CU3E9__16_0_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__16_0_2), (void*)value); } }; // UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c // OVRPlugin/GUID // OVRPlugin/GUID // OVRPlugin/Ktx // OVRPlugin/Ktx // OVRPlugin/Media struct Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields { public: // UnityEngine.Texture2D OVRPlugin/Media::cachedTexture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___cachedTexture_0; public: inline static int32_t get_offset_of_cachedTexture_0() { return static_cast(offsetof(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields, ___cachedTexture_0)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_cachedTexture_0() const { return ___cachedTexture_0; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_cachedTexture_0() { return &___cachedTexture_0; } inline void set_cachedTexture_0(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___cachedTexture_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___cachedTexture_0), (void*)value); } }; // OVRPlugin/Media // OVRPlugin/OVRP_0_1_0 struct OVRP_0_1_0_tCA0A91720B4965A49CFBDE2BB8B46C45C0506363_StaticFields { public: // System.Version OVRPlugin/OVRP_0_1_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_0_1_0_tCA0A91720B4965A49CFBDE2BB8B46C45C0506363_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_0_1_0 // OVRPlugin/OVRP_0_1_1 struct OVRP_0_1_1_tDBA6AC71AD154F15B030DA727A007698955CAC35_StaticFields { public: // System.Version OVRPlugin/OVRP_0_1_1::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_0_1_1_tDBA6AC71AD154F15B030DA727A007698955CAC35_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_0_1_1 // OVRPlugin/OVRP_0_1_2 struct OVRP_0_1_2_t9F1777A7676D69850A9FCE246B828AF39B37B21F_StaticFields { public: // System.Version OVRPlugin/OVRP_0_1_2::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_0_1_2_t9F1777A7676D69850A9FCE246B828AF39B37B21F_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_0_1_2 // OVRPlugin/OVRP_0_1_3 struct OVRP_0_1_3_t02842C0873561109CAACB9DFB89EA536B03CE6DB_StaticFields { public: // System.Version OVRPlugin/OVRP_0_1_3::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_0_1_3_t02842C0873561109CAACB9DFB89EA536B03CE6DB_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_0_1_3 // OVRPlugin/OVRP_0_5_0 struct OVRP_0_5_0_tC3F2B3F8B4CB16E8BA1CBF6523368CD534A8FC6B_StaticFields { public: // System.Version OVRPlugin/OVRP_0_5_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_0_5_0_tC3F2B3F8B4CB16E8BA1CBF6523368CD534A8FC6B_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_0_5_0 // OVRPlugin/OVRP_1_0_0 struct OVRP_1_0_0_t7A7165DD6675CECD30E91119E2C52E21FE6511EA_StaticFields { public: // System.Version OVRPlugin/OVRP_1_0_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_0_0_t7A7165DD6675CECD30E91119E2C52E21FE6511EA_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_0_0 // OVRPlugin/OVRP_1_10_0 struct OVRP_1_10_0_t0DB86A7DDD12A1BA29B958F15F2D2BEA2B8ACA78_StaticFields { public: // System.Version OVRPlugin/OVRP_1_10_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_10_0_t0DB86A7DDD12A1BA29B958F15F2D2BEA2B8ACA78_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_10_0 // OVRPlugin/OVRP_1_11_0 struct OVRP_1_11_0_t78D9B40FC078D1401B97BAF10425F4FD166FF515_StaticFields { public: // System.Version OVRPlugin/OVRP_1_11_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_11_0_t78D9B40FC078D1401B97BAF10425F4FD166FF515_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_11_0 // OVRPlugin/OVRP_1_12_0 struct OVRP_1_12_0_tED05232B37787981D9EFBC2FF6D9B09B63F179E8_StaticFields { public: // System.Version OVRPlugin/OVRP_1_12_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_12_0_tED05232B37787981D9EFBC2FF6D9B09B63F179E8_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_12_0 // OVRPlugin/OVRP_1_15_0 struct OVRP_1_15_0_t33D48C3749C0197D1B6487D5D5AAF37377115C91_StaticFields { public: // System.Version OVRPlugin/OVRP_1_15_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_15_0_t33D48C3749C0197D1B6487D5D5AAF37377115C91_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_15_0 // OVRPlugin/OVRP_1_16_0 struct OVRP_1_16_0_tA9EB48CC4CAB14D7009355FA1AA70D079D7F924C_StaticFields { public: // System.Version OVRPlugin/OVRP_1_16_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_16_0_tA9EB48CC4CAB14D7009355FA1AA70D079D7F924C_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_16_0 // OVRPlugin/OVRP_1_17_0 struct OVRP_1_17_0_t04D4429D59A774AB70E76FCB013083375ACDA6A5_StaticFields { public: // System.Version OVRPlugin/OVRP_1_17_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_17_0_t04D4429D59A774AB70E76FCB013083375ACDA6A5_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_17_0 // OVRPlugin/OVRP_1_18_0 struct OVRP_1_18_0_t6554FAD6B9EF4306F89E47B14D3D2FFF0759B4D0_StaticFields { public: // System.Version OVRPlugin/OVRP_1_18_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_18_0_t6554FAD6B9EF4306F89E47B14D3D2FFF0759B4D0_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_18_0 // OVRPlugin/OVRP_1_19_0 struct OVRP_1_19_0_tE0652374D565ADA545D322BA86725747DD2C0F18_StaticFields { public: // System.Version OVRPlugin/OVRP_1_19_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_19_0_tE0652374D565ADA545D322BA86725747DD2C0F18_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_19_0 // OVRPlugin/OVRP_1_1_0 struct OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_StaticFields { public: // System.Version OVRPlugin/OVRP_1_1_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_1_0 // OVRPlugin/OVRP_1_21_0 struct OVRP_1_21_0_tB9C80014C524327C3350066E149A543AE1EF619D_StaticFields { public: // System.Version OVRPlugin/OVRP_1_21_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_21_0_tB9C80014C524327C3350066E149A543AE1EF619D_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_21_0 // OVRPlugin/OVRP_1_28_0 struct OVRP_1_28_0_tF0B7D50816EA5B6A633C6C428992573947320565_StaticFields { public: // System.Version OVRPlugin/OVRP_1_28_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_28_0_tF0B7D50816EA5B6A633C6C428992573947320565_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_28_0 // OVRPlugin/OVRP_1_29_0 struct OVRP_1_29_0_t918278FFDFD85AAB45BDD32748CB748326A99CDB_StaticFields { public: // System.Version OVRPlugin/OVRP_1_29_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_29_0_t918278FFDFD85AAB45BDD32748CB748326A99CDB_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_29_0 // OVRPlugin/OVRP_1_2_0 struct OVRP_1_2_0_t86480FE48DC2A17D54962BE5255652B2CAE172FC_StaticFields { public: // System.Version OVRPlugin/OVRP_1_2_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_2_0_t86480FE48DC2A17D54962BE5255652B2CAE172FC_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_2_0 // OVRPlugin/OVRP_1_30_0 struct OVRP_1_30_0_t4D250C144546622A0795A2F91B99E8E77BB5EDC2_StaticFields { public: // System.Version OVRPlugin/OVRP_1_30_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_30_0_t4D250C144546622A0795A2F91B99E8E77BB5EDC2_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_30_0 // OVRPlugin/OVRP_1_31_0 struct OVRP_1_31_0_t8C43CCA8BA64FB271C032EDD8AF604AC7DA07D46_StaticFields { public: // System.Version OVRPlugin/OVRP_1_31_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_31_0_t8C43CCA8BA64FB271C032EDD8AF604AC7DA07D46_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_31_0 // OVRPlugin/OVRP_1_32_0 struct OVRP_1_32_0_t693E99E48FBAB6F9EC9AE0284958D46A10112BC3_StaticFields { public: // System.Version OVRPlugin/OVRP_1_32_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_32_0_t693E99E48FBAB6F9EC9AE0284958D46A10112BC3_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_32_0 // OVRPlugin/OVRP_1_34_0 struct OVRP_1_34_0_t9F3B8A75B7A40F061C00A0F5354B3F7E5DCF6403_StaticFields { public: // System.Version OVRPlugin/OVRP_1_34_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_34_0_t9F3B8A75B7A40F061C00A0F5354B3F7E5DCF6403_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_34_0 // OVRPlugin/OVRP_1_35_0 struct OVRP_1_35_0_t51609337F43CCA6D6D0DF34912B4BF73906C8705_StaticFields { public: // System.Version OVRPlugin/OVRP_1_35_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_35_0_t51609337F43CCA6D6D0DF34912B4BF73906C8705_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_35_0 // OVRPlugin/OVRP_1_36_0 struct OVRP_1_36_0_t1094A26C603F8CD2A54535DCC3E74434C3741ABC_StaticFields { public: // System.Version OVRPlugin/OVRP_1_36_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_36_0_t1094A26C603F8CD2A54535DCC3E74434C3741ABC_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_36_0 // OVRPlugin/OVRP_1_37_0 struct OVRP_1_37_0_t23CF12293B399D5E79375E624C273FEF47F079FC_StaticFields { public: // System.Version OVRPlugin/OVRP_1_37_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_37_0_t23CF12293B399D5E79375E624C273FEF47F079FC_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_37_0 // OVRPlugin/OVRP_1_38_0 struct OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields { public: // System.Version OVRPlugin/OVRP_1_38_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_38_0 // OVRPlugin/OVRP_1_39_0 struct OVRP_1_39_0_t5E5BBE71ADDCAAF2353AA317E9B9456BEF8FE6D0_StaticFields { public: // System.Version OVRPlugin/OVRP_1_39_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_39_0_t5E5BBE71ADDCAAF2353AA317E9B9456BEF8FE6D0_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_39_0 // OVRPlugin/OVRP_1_3_0 struct OVRP_1_3_0_t1670A3C38353D3938DCBD5377D6F9073CFD17637_StaticFields { public: // System.Version OVRPlugin/OVRP_1_3_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_3_0_t1670A3C38353D3938DCBD5377D6F9073CFD17637_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_3_0 // OVRPlugin/OVRP_1_40_0 struct OVRP_1_40_0_tBA066085CDF028B94AE5EF9EAF6FE59B49229DF1_StaticFields { public: // System.Version OVRPlugin/OVRP_1_40_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_40_0_tBA066085CDF028B94AE5EF9EAF6FE59B49229DF1_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_40_0 // OVRPlugin/OVRP_1_41_0 struct OVRP_1_41_0_t865D1E54DF6EAA3DE85B98D21CCFB5EC8DC3BDA0_StaticFields { public: // System.Version OVRPlugin/OVRP_1_41_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_41_0_t865D1E54DF6EAA3DE85B98D21CCFB5EC8DC3BDA0_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_41_0 // OVRPlugin/OVRP_1_42_0 struct OVRP_1_42_0_tFBBAC38B46711688EA744EC2739609E6EF095A49_StaticFields { public: // System.Version OVRPlugin/OVRP_1_42_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_42_0_tFBBAC38B46711688EA744EC2739609E6EF095A49_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_42_0 // OVRPlugin/OVRP_1_43_0 struct OVRP_1_43_0_t35BA9379F2B044991E2E9B5CAD1DA29ABFE07AEC_StaticFields { public: // System.Version OVRPlugin/OVRP_1_43_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_43_0_t35BA9379F2B044991E2E9B5CAD1DA29ABFE07AEC_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_43_0 // OVRPlugin/OVRP_1_44_0 struct OVRP_1_44_0_t0DF156B1270FA4A8B5EA797E36FBCF02543E2533_StaticFields { public: // System.Version OVRPlugin/OVRP_1_44_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_44_0_t0DF156B1270FA4A8B5EA797E36FBCF02543E2533_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_44_0 // OVRPlugin/OVRP_1_45_0 struct OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_StaticFields { public: // System.Version OVRPlugin/OVRP_1_45_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_45_0 // OVRPlugin/OVRP_1_46_0 struct OVRP_1_46_0_tC3400A2C00B6D8EE38FD932CDD1C4F0A1ED21A42_StaticFields { public: // System.Version OVRPlugin/OVRP_1_46_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_46_0_tC3400A2C00B6D8EE38FD932CDD1C4F0A1ED21A42_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_46_0 // OVRPlugin/OVRP_1_47_0 struct OVRP_1_47_0_tA3F6C267E50F56F86ED5EB532817040B8EAE048F_StaticFields { public: // System.Version OVRPlugin/OVRP_1_47_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_47_0_tA3F6C267E50F56F86ED5EB532817040B8EAE048F_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_47_0 // OVRPlugin/OVRP_1_48_0 struct OVRP_1_48_0_tB369070283C048120D89034AA803B4BC3D3B2C34_StaticFields { public: // System.Version OVRPlugin/OVRP_1_48_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_48_0_tB369070283C048120D89034AA803B4BC3D3B2C34_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_48_0 // OVRPlugin/OVRP_1_49_0 struct OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_StaticFields { public: // System.Version OVRPlugin/OVRP_1_49_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_49_0 // OVRPlugin/OVRP_1_50_0 struct OVRP_1_50_0_t9EFA9357FF3FEF8C309DC6EE50F28377385FD921_StaticFields { public: // System.Version OVRPlugin/OVRP_1_50_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_50_0_t9EFA9357FF3FEF8C309DC6EE50F28377385FD921_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_50_0 // OVRPlugin/OVRP_1_51_0 struct OVRP_1_51_0_t7B10C0008BFA569FB4619BB2D28EB3B1137647B9_StaticFields { public: // System.Version OVRPlugin/OVRP_1_51_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_51_0_t7B10C0008BFA569FB4619BB2D28EB3B1137647B9_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_51_0 // OVRPlugin/OVRP_1_52_0 struct OVRP_1_52_0_t30E413ECB7211AE4893F53F474EF6B6D7F61BABC_StaticFields { public: // System.Version OVRPlugin/OVRP_1_52_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_52_0_t30E413ECB7211AE4893F53F474EF6B6D7F61BABC_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_52_0 // OVRPlugin/OVRP_1_53_0 struct OVRP_1_53_0_t9E3767EEB3CA2A0B34A76D5F7FD6767FF7AD4F2F_StaticFields { public: // System.Version OVRPlugin/OVRP_1_53_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_53_0_t9E3767EEB3CA2A0B34A76D5F7FD6767FF7AD4F2F_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_53_0 // OVRPlugin/OVRP_1_54_0 struct OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_StaticFields { public: // System.Version OVRPlugin/OVRP_1_54_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_54_0 // OVRPlugin/OVRP_1_55_0 struct OVRP_1_55_0_tDCA8C7B9D9A46B3E59241FA312C9EF811A9CFE78_StaticFields { public: // System.Version OVRPlugin/OVRP_1_55_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_55_0_tDCA8C7B9D9A46B3E59241FA312C9EF811A9CFE78_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_55_0 // OVRPlugin/OVRP_1_55_1 struct OVRP_1_55_1_tEBBDE7CE8383D1C93474948609762A9723868E97_StaticFields { public: // System.Version OVRPlugin/OVRP_1_55_1::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_55_1_tEBBDE7CE8383D1C93474948609762A9723868E97_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_55_1 // OVRPlugin/OVRP_1_56_0 struct OVRP_1_56_0_t8A33D176366CF62890EE8AD9878986B0980BEA3A_StaticFields { public: // System.Version OVRPlugin/OVRP_1_56_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_56_0_t8A33D176366CF62890EE8AD9878986B0980BEA3A_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_56_0 // OVRPlugin/OVRP_1_57_0 struct OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_StaticFields { public: // System.Version OVRPlugin/OVRP_1_57_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_57_0 // OVRPlugin/OVRP_1_58_0 struct OVRP_1_58_0_tE0F165BCC9707558309BE31DE2A44AA8FA0C0ADD_StaticFields { public: // System.Version OVRPlugin/OVRP_1_58_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_58_0_tE0F165BCC9707558309BE31DE2A44AA8FA0C0ADD_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_58_0 // OVRPlugin/OVRP_1_59_0 struct OVRP_1_59_0_t42CD637E323FB0EA06D160293FE5E247F157FD42_StaticFields { public: // System.Version OVRPlugin/OVRP_1_59_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_59_0_t42CD637E323FB0EA06D160293FE5E247F157FD42_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_59_0 // OVRPlugin/OVRP_1_5_0 struct OVRP_1_5_0_t6A85C8628F00CC1DF9984C6D56E2F7F8A0E8C6CC_StaticFields { public: // System.Version OVRPlugin/OVRP_1_5_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_5_0_t6A85C8628F00CC1DF9984C6D56E2F7F8A0E8C6CC_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_5_0 // OVRPlugin/OVRP_1_60_0 struct OVRP_1_60_0_tFC45B48EA6EFC0E25EC1CC710E9C4A4CBCA95E3A_StaticFields { public: // System.Version OVRPlugin/OVRP_1_60_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_60_0_tFC45B48EA6EFC0E25EC1CC710E9C4A4CBCA95E3A_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_60_0 // OVRPlugin/OVRP_1_61_0 struct OVRP_1_61_0_t37221D9E3C4918BD6E0C7198F29A09BBE1A77DCB_StaticFields { public: // System.Version OVRPlugin/OVRP_1_61_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_61_0_t37221D9E3C4918BD6E0C7198F29A09BBE1A77DCB_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_61_0 // OVRPlugin/OVRP_1_62_0 struct OVRP_1_62_0_t6459C076884CE1ACA2B2AC0DFFB731E00CB18FCA_StaticFields { public: // System.Version OVRPlugin/OVRP_1_62_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_62_0_t6459C076884CE1ACA2B2AC0DFFB731E00CB18FCA_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_62_0 // OVRPlugin/OVRP_1_63_0 struct OVRP_1_63_0_t41C3B110FD473A2D016105D3597E467398423C6B_StaticFields { public: // System.Version OVRPlugin/OVRP_1_63_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_63_0_t41C3B110FD473A2D016105D3597E467398423C6B_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_63_0 // OVRPlugin/OVRP_1_64_0 struct OVRP_1_64_0_t8BADB40670843F14D970DF497770D145D19DF740_StaticFields { public: // System.Version OVRPlugin/OVRP_1_64_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_64_0_t8BADB40670843F14D970DF497770D145D19DF740_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_64_0 // OVRPlugin/OVRP_1_65_0 struct OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields { public: // System.Version OVRPlugin/OVRP_1_65_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_65_0 // OVRPlugin/OVRP_1_66_0 struct OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_StaticFields { public: // System.Version OVRPlugin/OVRP_1_66_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_66_0 // OVRPlugin/OVRP_1_67_0 struct OVRP_1_67_0_t520D6EB5DA725CF803E8C83168059AB3A4A636E3_StaticFields { public: // System.Version OVRPlugin/OVRP_1_67_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_67_0_t520D6EB5DA725CF803E8C83168059AB3A4A636E3_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_67_0 // OVRPlugin/OVRP_1_68_0 struct OVRP_1_68_0_tD68BE9E69A7CCD84E81240104FD4CE0B0ABDDCFB_StaticFields { public: // System.Version OVRPlugin/OVRP_1_68_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_68_0_tD68BE9E69A7CCD84E81240104FD4CE0B0ABDDCFB_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_68_0 // OVRPlugin/OVRP_1_69_0 struct OVRP_1_69_0_t8501AD6F6097431F5C11055E4F7B3155381936E1_StaticFields { public: // System.Version OVRPlugin/OVRP_1_69_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_69_0_t8501AD6F6097431F5C11055E4F7B3155381936E1_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_69_0 // OVRPlugin/OVRP_1_6_0 struct OVRP_1_6_0_t4FD03ADC1458C7CEB4C56C3CA72D59EF7C2BCE86_StaticFields { public: // System.Version OVRPlugin/OVRP_1_6_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_6_0_t4FD03ADC1458C7CEB4C56C3CA72D59EF7C2BCE86_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_6_0 // OVRPlugin/OVRP_1_7_0 struct OVRP_1_7_0_t2AD10FF99244465E1A50F39303B92FFC45C9D450_StaticFields { public: // System.Version OVRPlugin/OVRP_1_7_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_7_0_t2AD10FF99244465E1A50F39303B92FFC45C9D450_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_7_0 // OVRPlugin/OVRP_1_8_0 struct OVRP_1_8_0_tD6FEA7A91F5F105CD8843B0E2D5459C0218252E7_StaticFields { public: // System.Version OVRPlugin/OVRP_1_8_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_8_0_tD6FEA7A91F5F105CD8843B0E2D5459C0218252E7_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_8_0 // OVRPlugin/OVRP_1_9_0 struct OVRP_1_9_0_tC543307A6CB01708A6E9EDEBBB3FA2D80BC65B65_StaticFields { public: // System.Version OVRPlugin/OVRP_1_9_0::version Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___version_0; public: inline static int32_t get_offset_of_version_0() { return static_cast(offsetof(OVRP_1_9_0_tC543307A6CB01708A6E9EDEBBB3FA2D80BC65B65_StaticFields, ___version_0)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get_version_0() const { return ___version_0; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of_version_0() { return &___version_0; } inline void set_version_0(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ___version_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___version_0), (void*)value); } }; // OVRPlugin/OVRP_1_9_0 // OVRRaycaster/<>c struct U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_StaticFields { public: // OVRRaycaster/<>c OVRRaycaster/<>c::<>9 U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD * ___U3CU3E9_0; // System.Comparison`1 OVRRaycaster/<>c::<>9__16_0 Comparison_1_t2A0FDAFB7FAEC9EA981CEC81112645F678674713 * ___U3CU3E9__16_0_1; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__16_0_1() { return static_cast(offsetof(U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_StaticFields, ___U3CU3E9__16_0_1)); } inline Comparison_1_t2A0FDAFB7FAEC9EA981CEC81112645F678674713 * get_U3CU3E9__16_0_1() const { return ___U3CU3E9__16_0_1; } inline Comparison_1_t2A0FDAFB7FAEC9EA981CEC81112645F678674713 ** get_address_of_U3CU3E9__16_0_1() { return &___U3CU3E9__16_0_1; } inline void set_U3CU3E9__16_0_1(Comparison_1_t2A0FDAFB7FAEC9EA981CEC81112645F678674713 * value) { ___U3CU3E9__16_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__16_0_1), (void*)value); } }; // OVRRaycaster/<>c // OVRResources/<>c__DisplayClass2_0 // OVRResources/<>c__DisplayClass2_0 // OVRRuntimeController/d__14 // OVRRuntimeController/d__14 // OVRSceneLoader/d__24 // OVRSceneLoader/d__24 // OVRSceneLoader/d__25 // OVRSceneLoader/d__25 // OVRScreenFade/d__25 // OVRScreenFade/d__25 // OVRSkeletonRenderer/BoneVisualization // OVRSkeletonRenderer/BoneVisualization // OVRSpectatorModeDomeTest/d__11 // OVRSpectatorModeDomeTest/d__11 // OVRSystemPerfMetrics/PerfMetrics // OVRSystemPerfMetrics/PerfMetrics // OVRTrackedKeyboard/<>c struct U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_StaticFields { public: // OVRTrackedKeyboard/<>c OVRTrackedKeyboard/<>c::<>9 U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * ___U3CU3E9_0; // System.Action`1 OVRTrackedKeyboard/<>c::<>9__97_0 Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * ___U3CU3E9__97_0_1; // System.Action`1 OVRTrackedKeyboard/<>c::<>9__97_1 Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 * ___U3CU3E9__97_1_2; public: inline static int32_t get_offset_of_U3CU3E9_0() { return static_cast(offsetof(U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_StaticFields, ___U3CU3E9_0)); } inline U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * get_U3CU3E9_0() const { return ___U3CU3E9_0; } inline U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B ** get_address_of_U3CU3E9_0() { return &___U3CU3E9_0; } inline void set_U3CU3E9_0(U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * value) { ___U3CU3E9_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9_0), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__97_0_1() { return static_cast(offsetof(U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_StaticFields, ___U3CU3E9__97_0_1)); } inline Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * get_U3CU3E9__97_0_1() const { return ___U3CU3E9__97_0_1; } inline Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 ** get_address_of_U3CU3E9__97_0_1() { return &___U3CU3E9__97_0_1; } inline void set_U3CU3E9__97_0_1(Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * value) { ___U3CU3E9__97_0_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__97_0_1), (void*)value); } inline static int32_t get_offset_of_U3CU3E9__97_1_2() { return static_cast(offsetof(U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_StaticFields, ___U3CU3E9__97_1_2)); } inline Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 * get_U3CU3E9__97_1_2() const { return ___U3CU3E9__97_1_2; } inline Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 ** get_address_of_U3CU3E9__97_1_2() { return &___U3CU3E9__97_1_2; } inline void set_U3CU3E9__97_1_2(Action_1_tD9BA0D238C3366BEFF734D47D9E9B0643B9D2A91 * value) { ___U3CU3E9__97_1_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CU3E9__97_1_2), (void*)value); } }; // OVRTrackedKeyboard/<>c // OVRTrackedKeyboard/d__74 // OVRTrackedKeyboard/d__74 // OVRTrackedKeyboard/d__73 // OVRTrackedKeyboard/d__73 // OVRTrackedKeyboard/d__81 // OVRTrackedKeyboard/d__81 // OVRTrackedKeyboard/d__83 // OVRTrackedKeyboard/d__83 // OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker // OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Collections.Generic.List`1/Enumerator // System.Nullable`1 // System.Nullable`1 // System.Nullable`1 // System.Nullable`1 // System.Boolean struct Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields { public: // System.String System.Boolean::TrueString String_t* ___TrueString_5; // System.String System.Boolean::FalseString String_t* ___FalseString_6; public: inline static int32_t get_offset_of_TrueString_5() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___TrueString_5)); } inline String_t* get_TrueString_5() const { return ___TrueString_5; } inline String_t** get_address_of_TrueString_5() { return &___TrueString_5; } inline void set_TrueString_5(String_t* value) { ___TrueString_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrueString_5), (void*)value); } inline static int32_t get_offset_of_FalseString_6() { return static_cast(offsetof(Boolean_t07D1E3F34E4813023D64F584DFF7B34C9D922F37_StaticFields, ___FalseString_6)); } inline String_t* get_FalseString_6() const { return ___FalseString_6; } inline String_t** get_address_of_FalseString_6() { return &___FalseString_6; } inline void set_FalseString_6(String_t* value) { ___FalseString_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___FalseString_6), (void*)value); } }; // System.Boolean // System.Byte // System.Byte // System.Char struct Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields { public: // System.Byte[] System.Char::categoryForLatin1 ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___categoryForLatin1_3; public: inline static int32_t get_offset_of_categoryForLatin1_3() { return static_cast(offsetof(Char_tFF60D8E7E89A20BE2294A003734341BD1DF43E14_StaticFields, ___categoryForLatin1_3)); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* get_categoryForLatin1_3() const { return ___categoryForLatin1_3; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** get_address_of_categoryForLatin1_3() { return &___categoryForLatin1_3; } inline void set_categoryForLatin1_3(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { ___categoryForLatin1_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___categoryForLatin1_3), (void*)value); } }; // System.Char // UnityEngine.Color // UnityEngine.Color // UnityEngine.Color32 // UnityEngine.Color32 // System.Double struct Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields { public: // System.Double System.Double::NegativeZero double ___NegativeZero_7; public: inline static int32_t get_offset_of_NegativeZero_7() { return static_cast(offsetof(Double_t42821932CB52DE2057E685D0E1AF3DE5033D2181_StaticFields, ___NegativeZero_7)); } inline double get_NegativeZero_7() const { return ___NegativeZero_7; } inline double* get_address_of_NegativeZero_7() { return &___NegativeZero_7; } inline void set_NegativeZero_7(double value) { ___NegativeZero_7 = value; } }; // System.Double // System.Enum struct Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields { public: // System.Char[] System.Enum::enumSeperatorCharArray CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___enumSeperatorCharArray_0; public: inline static int32_t get_offset_of_enumSeperatorCharArray_0() { return static_cast(offsetof(Enum_t23B90B40F60E677A8025267341651C94AE079CDA_StaticFields, ___enumSeperatorCharArray_0)); } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* get_enumSeperatorCharArray_0() const { return ___enumSeperatorCharArray_0; } inline CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34** get_address_of_enumSeperatorCharArray_0() { return &___enumSeperatorCharArray_0; } inline void set_enumSeperatorCharArray_0(CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* value) { ___enumSeperatorCharArray_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___enumSeperatorCharArray_0), (void*)value); } }; // System.Enum // System.Runtime.InteropServices.GCHandle // System.Runtime.InteropServices.GCHandle // System.Int16 // System.Int16 // System.Int32 // System.Int32 // System.Int64 // System.Int64 // System.IntPtr struct IntPtr_t_StaticFields { public: // System.IntPtr System.IntPtr::Zero intptr_t ___Zero_1; public: inline static int32_t get_offset_of_Zero_1() { return static_cast(offsetof(IntPtr_t_StaticFields, ___Zero_1)); } inline intptr_t get_Zero_1() const { return ___Zero_1; } inline intptr_t* get_address_of_Zero_1() { return &___Zero_1; } inline void set_Zero_1(intptr_t value) { ___Zero_1 = value; } }; // System.IntPtr // UnityEngine.LayerMask // UnityEngine.LayerMask // UnityEngine.Matrix4x4 struct Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields { public: // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::zeroMatrix Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___zeroMatrix_16; // UnityEngine.Matrix4x4 UnityEngine.Matrix4x4::identityMatrix Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___identityMatrix_17; public: inline static int32_t get_offset_of_zeroMatrix_16() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___zeroMatrix_16)); } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_zeroMatrix_16() const { return ___zeroMatrix_16; } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_zeroMatrix_16() { return &___zeroMatrix_16; } inline void set_zeroMatrix_16(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value) { ___zeroMatrix_16 = value; } inline static int32_t get_offset_of_identityMatrix_17() { return static_cast(offsetof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461_StaticFields, ___identityMatrix_17)); } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 get_identityMatrix_17() const { return ___identityMatrix_17; } inline Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 * get_address_of_identityMatrix_17() { return &___identityMatrix_17; } inline void set_identityMatrix_17(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 value) { ___identityMatrix_17 = value; } }; // UnityEngine.Matrix4x4 // OVRBinaryChunk // OVRBinaryChunk // UnityEngine.Quaternion struct Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields { public: // UnityEngine.Quaternion UnityEngine.Quaternion::identityQuaternion Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___identityQuaternion_4; public: inline static int32_t get_offset_of_identityQuaternion_4() { return static_cast(offsetof(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4_StaticFields, ___identityQuaternion_4)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get_identityQuaternion_4() const { return ___identityQuaternion_4; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of_identityQuaternion_4() { return &___identityQuaternion_4; } inline void set_identityQuaternion_4(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ___identityQuaternion_4 = value; } }; // UnityEngine.Quaternion // UnityEngine.Rect // UnityEngine.Rect // UnityEngine.SceneManagement.Scene // UnityEngine.SceneManagement.Scene // System.Single // System.Single // System.IO.Stream struct Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields { public: // System.IO.Stream System.IO.Stream::Null Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * ___Null_1; public: inline static int32_t get_offset_of_Null_1() { return static_cast(offsetof(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB_StaticFields, ___Null_1)); } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * get_Null_1() const { return ___Null_1; } inline Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB ** get_address_of_Null_1() { return &___Null_1; } inline void set_Null_1(Stream_t5DC87DD578C2C5298D98E7802E92DEABB66E2ECB * value) { ___Null_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Null_1), (void*)value); } }; // System.IO.Stream // System.UInt32 // System.UInt32 // System.UInt64 // System.UInt64 // OVR.OpenVR.VRControllerAxis_t // OVR.OpenVR.VRControllerAxis_t // UnityEngine.Vector2 struct Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields { public: // UnityEngine.Vector2 UnityEngine.Vector2::zeroVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___zeroVector_2; // UnityEngine.Vector2 UnityEngine.Vector2::oneVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___oneVector_3; // UnityEngine.Vector2 UnityEngine.Vector2::upVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___upVector_4; // UnityEngine.Vector2 UnityEngine.Vector2::downVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___downVector_5; // UnityEngine.Vector2 UnityEngine.Vector2::leftVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___leftVector_6; // UnityEngine.Vector2 UnityEngine.Vector2::rightVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___rightVector_7; // UnityEngine.Vector2 UnityEngine.Vector2::positiveInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___positiveInfinityVector_8; // UnityEngine.Vector2 UnityEngine.Vector2::negativeInfinityVector Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 ___negativeInfinityVector_9; public: inline static int32_t get_offset_of_zeroVector_2() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___zeroVector_2)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_zeroVector_2() const { return ___zeroVector_2; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_zeroVector_2() { return &___zeroVector_2; } inline void set_zeroVector_2(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___zeroVector_2 = value; } inline static int32_t get_offset_of_oneVector_3() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___oneVector_3)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_oneVector_3() const { return ___oneVector_3; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_oneVector_3() { return &___oneVector_3; } inline void set_oneVector_3(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___oneVector_3 = value; } inline static int32_t get_offset_of_upVector_4() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___upVector_4)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_upVector_4() const { return ___upVector_4; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_upVector_4() { return &___upVector_4; } inline void set_upVector_4(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___upVector_4 = value; } inline static int32_t get_offset_of_downVector_5() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___downVector_5)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_downVector_5() const { return ___downVector_5; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_downVector_5() { return &___downVector_5; } inline void set_downVector_5(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___downVector_5 = value; } inline static int32_t get_offset_of_leftVector_6() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___leftVector_6)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_leftVector_6() const { return ___leftVector_6; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_leftVector_6() { return &___leftVector_6; } inline void set_leftVector_6(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___leftVector_6 = value; } inline static int32_t get_offset_of_rightVector_7() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___rightVector_7)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_rightVector_7() const { return ___rightVector_7; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_rightVector_7() { return &___rightVector_7; } inline void set_rightVector_7(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___rightVector_7 = value; } inline static int32_t get_offset_of_positiveInfinityVector_8() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___positiveInfinityVector_8)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_positiveInfinityVector_8() const { return ___positiveInfinityVector_8; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_positiveInfinityVector_8() { return &___positiveInfinityVector_8; } inline void set_positiveInfinityVector_8(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___positiveInfinityVector_8 = value; } inline static int32_t get_offset_of_negativeInfinityVector_9() { return static_cast(offsetof(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9_StaticFields, ___negativeInfinityVector_9)); } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 get_negativeInfinityVector_9() const { return ___negativeInfinityVector_9; } inline Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 * get_address_of_negativeInfinityVector_9() { return &___negativeInfinityVector_9; } inline void set_negativeInfinityVector_9(Vector2_tBB32F2736AEC229A7BFBCE18197EC0F6AC7EC2D9 value) { ___negativeInfinityVector_9 = value; } }; // UnityEngine.Vector2 // UnityEngine.Vector3 struct Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields { public: // UnityEngine.Vector3 UnityEngine.Vector3::zeroVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___zeroVector_5; // UnityEngine.Vector3 UnityEngine.Vector3::oneVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___oneVector_6; // UnityEngine.Vector3 UnityEngine.Vector3::upVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___upVector_7; // UnityEngine.Vector3 UnityEngine.Vector3::downVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___downVector_8; // UnityEngine.Vector3 UnityEngine.Vector3::leftVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___leftVector_9; // UnityEngine.Vector3 UnityEngine.Vector3::rightVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___rightVector_10; // UnityEngine.Vector3 UnityEngine.Vector3::forwardVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___forwardVector_11; // UnityEngine.Vector3 UnityEngine.Vector3::backVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___backVector_12; // UnityEngine.Vector3 UnityEngine.Vector3::positiveInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___positiveInfinityVector_13; // UnityEngine.Vector3 UnityEngine.Vector3::negativeInfinityVector Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___negativeInfinityVector_14; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___zeroVector_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_zeroVector_5() const { return ___zeroVector_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___oneVector_6)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_oneVector_6() const { return ___oneVector_6; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_upVector_7() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___upVector_7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_upVector_7() const { return ___upVector_7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_upVector_7() { return &___upVector_7; } inline void set_upVector_7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___upVector_7 = value; } inline static int32_t get_offset_of_downVector_8() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___downVector_8)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_downVector_8() const { return ___downVector_8; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_downVector_8() { return &___downVector_8; } inline void set_downVector_8(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___downVector_8 = value; } inline static int32_t get_offset_of_leftVector_9() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___leftVector_9)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_leftVector_9() const { return ___leftVector_9; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_leftVector_9() { return &___leftVector_9; } inline void set_leftVector_9(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___leftVector_9 = value; } inline static int32_t get_offset_of_rightVector_10() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___rightVector_10)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_rightVector_10() const { return ___rightVector_10; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_rightVector_10() { return &___rightVector_10; } inline void set_rightVector_10(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___rightVector_10 = value; } inline static int32_t get_offset_of_forwardVector_11() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___forwardVector_11)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_forwardVector_11() const { return ___forwardVector_11; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_forwardVector_11() { return &___forwardVector_11; } inline void set_forwardVector_11(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___forwardVector_11 = value; } inline static int32_t get_offset_of_backVector_12() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___backVector_12)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_backVector_12() const { return ___backVector_12; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_backVector_12() { return &___backVector_12; } inline void set_backVector_12(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___backVector_12 = value; } inline static int32_t get_offset_of_positiveInfinityVector_13() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___positiveInfinityVector_13)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_positiveInfinityVector_13() const { return ___positiveInfinityVector_13; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_positiveInfinityVector_13() { return &___positiveInfinityVector_13; } inline void set_positiveInfinityVector_13(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___positiveInfinityVector_13 = value; } inline static int32_t get_offset_of_negativeInfinityVector_14() { return static_cast(offsetof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E_StaticFields, ___negativeInfinityVector_14)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_negativeInfinityVector_14() const { return ___negativeInfinityVector_14; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_negativeInfinityVector_14() { return &___negativeInfinityVector_14; } inline void set_negativeInfinityVector_14(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___negativeInfinityVector_14 = value; } }; // UnityEngine.Vector3 // UnityEngine.Vector4 struct Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields { public: // UnityEngine.Vector4 UnityEngine.Vector4::zeroVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___zeroVector_5; // UnityEngine.Vector4 UnityEngine.Vector4::oneVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___oneVector_6; // UnityEngine.Vector4 UnityEngine.Vector4::positiveInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___positiveInfinityVector_7; // UnityEngine.Vector4 UnityEngine.Vector4::negativeInfinityVector Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___negativeInfinityVector_8; public: inline static int32_t get_offset_of_zeroVector_5() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___zeroVector_5)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_zeroVector_5() const { return ___zeroVector_5; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_zeroVector_5() { return &___zeroVector_5; } inline void set_zeroVector_5(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___zeroVector_5 = value; } inline static int32_t get_offset_of_oneVector_6() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___oneVector_6)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_oneVector_6() const { return ___oneVector_6; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_oneVector_6() { return &___oneVector_6; } inline void set_oneVector_6(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___oneVector_6 = value; } inline static int32_t get_offset_of_positiveInfinityVector_7() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___positiveInfinityVector_7)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_positiveInfinityVector_7() const { return ___positiveInfinityVector_7; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_positiveInfinityVector_7() { return &___positiveInfinityVector_7; } inline void set_positiveInfinityVector_7(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___positiveInfinityVector_7 = value; } inline static int32_t get_offset_of_negativeInfinityVector_8() { return static_cast(offsetof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_StaticFields, ___negativeInfinityVector_8)); } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 get_negativeInfinityVector_8() const { return ___negativeInfinityVector_8; } inline Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * get_address_of_negativeInfinityVector_8() { return &___negativeInfinityVector_8; } inline void set_negativeInfinityVector_8(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 value) { ___negativeInfinityVector_8 = value; } }; // UnityEngine.Vector4 // System.Void // System.Void // UnityEngine.WaitForEndOfFrame // UnityEngine.WaitForEndOfFrame // UnityEngine.WaitForSeconds // UnityEngine.WaitForSeconds // OVRDisplay/EyeFov // OVRDisplay/EyeFov // OVRDisplay/LatencyData // OVRDisplay/LatencyData // OVRMeshRenderer/MeshRendererData // OVRMeshRenderer/MeshRendererData // OVRNetwork/FrameHeader // OVRNetwork/FrameHeader // OVRPassthroughLayer/DeferredPassthroughMeshAddition // OVRPassthroughLayer/DeferredPassthroughMeshAddition // OVRPassthroughLayer/PassthroughMeshInstance // OVRPassthroughLayer/PassthroughMeshInstance // OVRPlugin/AppPerfFrameStats // OVRPlugin/AppPerfFrameStats // OVRPlugin/CameraDeviceIntrinsicsParameters // OVRPlugin/CameraDeviceIntrinsicsParameters // OVRPlugin/Colorf // OVRPlugin/Colorf // OVRPlugin/Fovf // OVRPlugin/Fovf // OVRPlugin/Frustumf // OVRPlugin/Frustumf // OVRPlugin/HapticsDesc // OVRPlugin/HapticsDesc // OVRPlugin/HapticsState // OVRPlugin/HapticsState // OVRPlugin/InsightPassthroughKeyboardHandsIntensity // OVRPlugin/InsightPassthroughKeyboardHandsIntensity // OVRPlugin/Quatf struct Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_StaticFields { public: // OVRPlugin/Quatf OVRPlugin/Quatf::identity Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D ___identity_4; public: inline static int32_t get_offset_of_identity_4() { return static_cast(offsetof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_StaticFields, ___identity_4)); } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D get_identity_4() const { return ___identity_4; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * get_address_of_identity_4() { return &___identity_4; } inline void set_identity_4(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { ___identity_4 = value; } }; // OVRPlugin/Quatf // OVRPlugin/RenderModelProperties // OVRPlugin/RenderModelProperties // OVRPlugin/Size3f struct Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78_StaticFields { public: // OVRPlugin/Size3f OVRPlugin/Size3f::zero Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 ___zero_3; public: inline static int32_t get_offset_of_zero_3() { return static_cast(offsetof(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78_StaticFields, ___zero_3)); } inline Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 get_zero_3() const { return ___zero_3; } inline Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 * get_address_of_zero_3() { return &___zero_3; } inline void set_zero_3(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 value) { ___zero_3 = value; } }; // OVRPlugin/Size3f // OVRPlugin/Sizef struct Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314_StaticFields { public: // OVRPlugin/Sizef OVRPlugin/Sizef::zero Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 ___zero_2; public: inline static int32_t get_offset_of_zero_2() { return static_cast(offsetof(Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314_StaticFields, ___zero_2)); } inline Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 get_zero_2() const { return ___zero_2; } inline Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 * get_address_of_zero_2() { return &___zero_2; } inline void set_zero_2(Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 value) { ___zero_2 = value; } }; // OVRPlugin/Sizef // OVRPlugin/Sizei struct Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_StaticFields { public: // OVRPlugin/Sizei OVRPlugin/Sizei::zero Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___zero_2; public: inline static int32_t get_offset_of_zero_2() { return static_cast(offsetof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_StaticFields, ___zero_2)); } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 get_zero_2() const { return ___zero_2; } inline Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * get_address_of_zero_2() { return &___zero_2; } inline void set_zero_2(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 value) { ___zero_2 = value; } }; // OVRPlugin/Sizei // OVRPlugin/SpatialEntityUuid // OVRPlugin/SpatialEntityUuid // OVRPlugin/Vector2f // OVRPlugin/Vector2f // OVRPlugin/Vector2i // OVRPlugin/Vector2i // OVRPlugin/Vector3f struct Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields { public: // OVRPlugin/Vector3f OVRPlugin/Vector3f::zero Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___zero_3; public: inline static int32_t get_offset_of_zero_3() { return static_cast(offsetof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields, ___zero_3)); } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 get_zero_3() const { return ___zero_3; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * get_address_of_zero_3() { return &___zero_3; } inline void set_zero_3(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { ___zero_3 = value; } }; // OVRPlugin/Vector3f // OVRPlugin/Vector4f struct Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE_StaticFields { public: // OVRPlugin/Vector4f OVRPlugin/Vector4f::zero Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE ___zero_4; public: inline static int32_t get_offset_of_zero_4() { return static_cast(offsetof(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE_StaticFields, ___zero_4)); } inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE get_zero_4() const { return ___zero_4; } inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE * get_address_of_zero_4() { return &___zero_4; } inline void set_zero_4(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE value) { ___zero_4 = value; } }; // OVRPlugin/Vector4f // OVRPlugin/Vector4s struct Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1_StaticFields { public: // OVRPlugin/Vector4s OVRPlugin/Vector4s::zero Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 ___zero_4; public: inline static int32_t get_offset_of_zero_4() { return static_cast(offsetof(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1_StaticFields, ___zero_4)); } inline Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 get_zero_4() const { return ___zero_4; } inline Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 * get_address_of_zero_4() { return &___zero_4; } inline void set_zero_4(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 value) { ___zero_4 = value; } }; // OVRPlugin/Vector4s // OVRSceneLoader/SceneInfo // OVRSceneLoader/SceneInfo // OVRSkeletonRenderer/SkeletonRendererData // OVRSkeletonRenderer/SkeletonRendererData // OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent // OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent // System.Nullable`1 // System.Nullable`1 // System.Nullable`1 // System.Nullable`1 // System.Net.Sockets.AddressFamily // System.Net.Sockets.AddressFamily // UnityEngine.AsyncOperation // UnityEngine.AsyncOperation // System.Reflection.BindingFlags // System.Reflection.BindingFlags // UnityEngine.Coroutine // UnityEngine.Coroutine // System.Delegate // System.Delegate // UnityEngine.DepthTextureMode // UnityEngine.DepthTextureMode // System.Exception struct Exception_t_StaticFields { public: // System.Object System.Exception::s_EDILock RuntimeObject * ___s_EDILock_0; public: inline static int32_t get_offset_of_s_EDILock_0() { return static_cast(offsetof(Exception_t_StaticFields, ___s_EDILock_0)); } inline RuntimeObject * get_s_EDILock_0() const { return ___s_EDILock_0; } inline RuntimeObject ** get_address_of_s_EDILock_0() { return &___s_EDILock_0; } inline void set_s_EDILock_0(RuntimeObject * value) { ___s_EDILock_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_EDILock_0), (void*)value); } }; // System.Exception // System.Runtime.InteropServices.GCHandleType // System.Runtime.InteropServices.GCHandleType // OVRSimpleJSON.JSONContainerType // OVRSimpleJSON.JSONContainerType // System.Net.Sockets.NetworkStream // System.Net.Sockets.NetworkStream // OVRGLTFLoader struct OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01_StaticFields { public: // UnityEngine.Vector3 OVRGLTFLoader::GLTFToUnitySpace Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___GLTFToUnitySpace_4; // UnityEngine.Vector3 OVRGLTFLoader::GLTFToUnityTangent Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___GLTFToUnityTangent_5; public: inline static int32_t get_offset_of_GLTFToUnitySpace_4() { return static_cast(offsetof(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01_StaticFields, ___GLTFToUnitySpace_4)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_GLTFToUnitySpace_4() const { return ___GLTFToUnitySpace_4; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_GLTFToUnitySpace_4() { return &___GLTFToUnitySpace_4; } inline void set_GLTFToUnitySpace_4(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___GLTFToUnitySpace_4 = value; } inline static int32_t get_offset_of_GLTFToUnityTangent_5() { return static_cast(offsetof(OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01_StaticFields, ___GLTFToUnityTangent_5)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_GLTFToUnityTangent_5() const { return ___GLTFToUnityTangent_5; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_GLTFToUnityTangent_5() { return &___GLTFToUnityTangent_5; } inline void set_GLTFToUnityTangent_5(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___GLTFToUnityTangent_5 = value; } }; // OVRGLTFLoader // OVRNativeBuffer // OVRNativeBuffer // OVRTextureFormat // OVRTextureFormat // UnityEngine.Object struct Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields { public: // System.Int32 UnityEngine.Object::OffsetOfInstanceIDInCPlusPlusObject int32_t ___OffsetOfInstanceIDInCPlusPlusObject_1; public: inline static int32_t get_offset_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return static_cast(offsetof(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_StaticFields, ___OffsetOfInstanceIDInCPlusPlusObject_1)); } inline int32_t get_OffsetOfInstanceIDInCPlusPlusObject_1() const { return ___OffsetOfInstanceIDInCPlusPlusObject_1; } inline int32_t* get_address_of_OffsetOfInstanceIDInCPlusPlusObject_1() { return &___OffsetOfInstanceIDInCPlusPlusObject_1; } inline void set_OffsetOfInstanceIDInCPlusPlusObject_1(int32_t value) { ___OffsetOfInstanceIDInCPlusPlusObject_1 = value; } }; // UnityEngine.Object // UnityEngine.PrimitiveType // UnityEngine.PrimitiveType // UnityEngine.RaycastHit // UnityEngine.RaycastHit // System.RuntimeTypeHandle // System.RuntimeTypeHandle // UnityEngine.TextureFormat // UnityEngine.TextureFormat // System.TimeSpan struct TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields { public: // System.TimeSpan System.TimeSpan::Zero TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___Zero_0; // System.TimeSpan System.TimeSpan::MaxValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MaxValue_1; // System.TimeSpan System.TimeSpan::MinValue TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 ___MinValue_2; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyConfigChecked bool ____legacyConfigChecked_4; // System.Boolean modreq(System.Runtime.CompilerServices.IsVolatile) System.TimeSpan::_legacyMode bool ____legacyMode_5; public: inline static int32_t get_offset_of_Zero_0() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___Zero_0)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_Zero_0() const { return ___Zero_0; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_Zero_0() { return &___Zero_0; } inline void set_Zero_0(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___Zero_0 = value; } inline static int32_t get_offset_of_MaxValue_1() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MaxValue_1)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MaxValue_1() const { return ___MaxValue_1; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MaxValue_1() { return &___MaxValue_1; } inline void set_MaxValue_1(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MaxValue_1 = value; } inline static int32_t get_offset_of_MinValue_2() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ___MinValue_2)); } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 get_MinValue_2() const { return ___MinValue_2; } inline TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 * get_address_of_MinValue_2() { return &___MinValue_2; } inline void set_MinValue_2(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 value) { ___MinValue_2 = value; } inline static int32_t get_offset_of__legacyConfigChecked_4() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyConfigChecked_4)); } inline bool get__legacyConfigChecked_4() const { return ____legacyConfigChecked_4; } inline bool* get_address_of__legacyConfigChecked_4() { return &____legacyConfigChecked_4; } inline void set__legacyConfigChecked_4(bool value) { ____legacyConfigChecked_4 = value; } inline static int32_t get_offset_of__legacyMode_5() { return static_cast(offsetof(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields, ____legacyMode_5)); } inline bool get__legacyMode_5() const { return ____legacyMode_5; } inline bool* get_address_of__legacyMode_5() { return &____legacyMode_5; } inline void set__legacyMode_5(bool value) { ____legacyMode_5 = value; } }; // System.TimeSpan // OVR.OpenVR.VRControllerState_t // OVR.OpenVR.VRControllerState_t // System.Threading.WaitHandle struct WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_StaticFields { public: // System.IntPtr System.Threading.WaitHandle::InvalidHandle intptr_t ___InvalidHandle_10; public: inline static int32_t get_offset_of_InvalidHandle_10() { return static_cast(offsetof(WaitHandle_t1D7DD8480FD5DA4E3AF92F569890FB972D9B1842_StaticFields, ___InvalidHandle_10)); } inline intptr_t get_InvalidHandle_10() const { return ___InvalidHandle_10; } inline intptr_t* get_address_of_InvalidHandle_10() { return &___InvalidHandle_10; } inline void set_InvalidHandle_10(intptr_t value) { ___InvalidHandle_10 = value; } }; // System.Threading.WaitHandle // UnityEngine.XR.XRNode // UnityEngine.XR.XRNode // OVRDisplay/EyeRenderDesc // OVRDisplay/EyeRenderDesc // OVRHand/Hand // OVRHand/Hand // OVRHand/HandFinger // OVRHand/HandFinger // OVRHand/TrackingConfidence // OVRHand/TrackingConfidence // OVRHeadsetEmulator/OpMode // OVRHeadsetEmulator/OpMode // OVRInput/Axis1D // OVRInput/Axis1D // OVRInput/Axis2D // OVRInput/Axis2D // OVRInput/Button // OVRInput/Button // OVRInput/Controller // OVRInput/Controller // OVRInput/Handedness // OVRInput/Handedness // OVRInput/NearTouch // OVRInput/NearTouch // OVRInput/OpenVRButton // OVRInput/OpenVRButton // OVRInput/OpenVRController // OVRInput/OpenVRController // OVRInput/RawAxis1D // OVRInput/RawAxis1D // OVRInput/RawAxis2D // OVRInput/RawAxis2D // OVRInput/RawButton // OVRInput/RawButton // OVRInput/RawNearTouch // OVRInput/RawNearTouch // OVRInput/RawTouch // OVRInput/RawTouch // OVRInput/Touch // OVRInput/Touch // UnityEngine.EventSystems.OVRInputModule/InputMode // UnityEngine.EventSystems.OVRInputModule/InputMode // OVRKeyboard/TrackedKeyboardState // OVRKeyboard/TrackedKeyboardState // OVRManager/CameraDevice // OVRManager/CameraDevice // OVRManager/ColorSpace // OVRManager/ColorSpace // OVRManager/CompositionMethod // OVRManager/CompositionMethod // OVRManager/DepthQuality // OVRManager/DepthQuality // OVRManager/EyeTextureFormat // OVRManager/EyeTextureFormat // OVRManager/FixedFoveatedRenderingLevel // OVRManager/FixedFoveatedRenderingLevel // OVRManager/MrcActivationMode // OVRManager/MrcActivationMode // OVRManager/MrcCameraType // OVRManager/MrcCameraType // OVRManager/PassthroughInitializationState // OVRManager/PassthroughInitializationState // OVRManager/SystemHeadsetType // OVRManager/SystemHeadsetType // OVRManager/TiledMultiResLevel // OVRManager/TiledMultiResLevel // OVRManager/TrackingOrigin // OVRManager/TrackingOrigin // OVRManager/VirtualGreenScreenType // OVRManager/VirtualGreenScreenType // OVRManager/XRDevice // OVRManager/XRDevice // OVRManager/XrApi // OVRManager/XrApi // OVRMesh/MeshType // OVRMesh/MeshType // OVRMeshRenderer/ConfidenceBehavior // OVRMeshRenderer/ConfidenceBehavior // OVRMeshRenderer/SystemGestureBehavior // OVRMeshRenderer/SystemGestureBehavior // OVRMixedRealityCaptureTest/CameraMode // OVRMixedRealityCaptureTest/CameraMode // OVROverlay/LayerTexture // OVROverlay/LayerTexture // OVROverlay/OverlayShape // OVROverlay/OverlayShape // OVROverlay/OverlayType // OVROverlay/OverlayType // OVROverlayMeshGenerator/CubeFace // OVROverlayMeshGenerator/CubeFace // OVRPassthroughLayer/ColorMapEditorType // OVRPassthroughLayer/ColorMapEditorType // OVRPassthroughLayer/ProjectionSurfaceType // OVRPassthroughLayer/ProjectionSurfaceType // OVRPlatformMenu/eBackButtonAction // OVRPlatformMenu/eBackButtonAction // OVRPlatformMenu/eHandler // OVRPlatformMenu/eHandler // OVRPlugin/BatteryStatus // OVRPlugin/BatteryStatus // OVRPlugin/BlendFactor // OVRPlugin/BlendFactor // OVRPlugin/BoneCapsule // OVRPlugin/BoneCapsule // OVRPlugin/BoneId // OVRPlugin/BoneId // OVRPlugin/Bool // OVRPlugin/Bool // OVRPlugin/BoundaryType // OVRPlugin/BoundaryType // OVRPlugin/Boundsf // OVRPlugin/Boundsf // OVRPlugin/CameraAnchorType // OVRPlugin/CameraAnchorType // OVRPlugin/CameraDevice // OVRPlugin/CameraDevice // OVRPlugin/CameraDeviceDepthQuality // OVRPlugin/CameraDeviceDepthQuality // OVRPlugin/CameraDeviceDepthSensingMode // OVRPlugin/CameraDeviceDepthSensingMode // OVRPlugin/CameraStatus // OVRPlugin/CameraStatus // OVRPlugin/ColorSpace // OVRPlugin/ColorSpace // OVRPlugin/Controller // OVRPlugin/Controller // OVRPlugin/ControllerState // OVRPlugin/ControllerState // OVRPlugin/ControllerState2 // OVRPlugin/ControllerState2 // OVRPlugin/ControllerState4 // OVRPlugin/ControllerState4 // OVRPlugin/EventType // OVRPlugin/EventType // OVRPlugin/Eye // OVRPlugin/Eye // OVRPlugin/EyeTextureFormat // OVRPlugin/EyeTextureFormat // OVRPlugin/FixedFoveatedRenderingLevel // OVRPlugin/FixedFoveatedRenderingLevel // OVRPlugin/Frustumf2 // OVRPlugin/Frustumf2 // OVRPlugin/Hand // OVRPlugin/Hand // OVRPlugin/HandFinger // OVRPlugin/HandFinger // OVRPlugin/HandFingerPinch // OVRPlugin/HandFingerPinch // OVRPlugin/HandStatus // OVRPlugin/HandStatus // OVRPlugin/Handedness // OVRPlugin/Handedness // OVRPlugin/HapticsBuffer // OVRPlugin/HapticsBuffer // OVRPlugin/InsightPassthroughColorMapType // OVRPlugin/InsightPassthroughColorMapType // OVRPlugin/InsightPassthroughStyleFlags // OVRPlugin/InsightPassthroughStyleFlags // OVRPlugin/KeyboardDescriptionConstants // OVRPlugin/KeyboardDescriptionConstants // OVRPlugin/LayerFlags // OVRPlugin/LayerFlags // OVRPlugin/LayerLayout // OVRPlugin/LayerLayout // OVRPlugin/MeshConstants // OVRPlugin/MeshConstants // OVRPlugin/MeshType // OVRPlugin/MeshType // OVRPlugin/Node // OVRPlugin/Node // OVRPlugin/OverlayFlag // OVRPlugin/OverlayFlag // OVRPlugin/OverlayShape // OVRPlugin/OverlayShape // OVRPlugin/PerfMetrics // OVRPlugin/PerfMetrics // OVRPlugin/PlatformUI // OVRPlugin/PlatformUI // OVRPlugin/Posef struct Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_StaticFields { public: // OVRPlugin/Posef OVRPlugin/Posef::identity Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___identity_2; public: inline static int32_t get_offset_of_identity_2() { return static_cast(offsetof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_StaticFields, ___identity_2)); } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 get_identity_2() const { return ___identity_2; } inline Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * get_address_of_identity_2() { return &___identity_2; } inline void set_identity_2(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 value) { ___identity_2 = value; } }; // OVRPlugin/Posef // OVRPlugin/RecenterFlags // OVRPlugin/RecenterFlags // OVRPlugin/Rectf // OVRPlugin/Rectf // OVRPlugin/Recti // OVRPlugin/Recti // OVRPlugin/RenderModelPropertiesInternal // OVRPlugin/RenderModelPropertiesInternal // OVRPlugin/Result // OVRPlugin/Result // OVRPlugin/SkeletonConstants // OVRPlugin/SkeletonConstants // OVRPlugin/SkeletonType // OVRPlugin/SkeletonType // OVRPlugin/SpatialEntityComponentType // OVRPlugin/SpatialEntityComponentType // OVRPlugin/SpatialEntityFilterInfoIds // OVRPlugin/SpatialEntityFilterInfoIds // OVRPlugin/SpatialEntityQueryActionType // OVRPlugin/SpatialEntityQueryActionType // OVRPlugin/SpatialEntityQueryFilterType // OVRPlugin/SpatialEntityQueryFilterType // OVRPlugin/SpatialEntityQueryResult // OVRPlugin/SpatialEntityQueryResult // OVRPlugin/SpatialEntityQueryType // OVRPlugin/SpatialEntityQueryType // OVRPlugin/SpatialEntityStorageLocation // OVRPlugin/SpatialEntityStorageLocation // OVRPlugin/SpatialEntityStoragePersistenceMode // OVRPlugin/SpatialEntityStoragePersistenceMode // OVRPlugin/Step // OVRPlugin/Step // OVRPlugin/SystemHeadset // OVRPlugin/SystemHeadset // OVRPlugin/SystemRegion // OVRPlugin/SystemRegion // OVRPlugin/TextureRectMatrixf struct TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B_StaticFields { public: // OVRPlugin/TextureRectMatrixf OVRPlugin/TextureRectMatrixf::zero TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B ___zero_4; public: inline static int32_t get_offset_of_zero_4() { return static_cast(offsetof(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B_StaticFields, ___zero_4)); } inline TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B get_zero_4() const { return ___zero_4; } inline TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B * get_address_of_zero_4() { return &___zero_4; } inline void set_zero_4(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B value) { ___zero_4 = value; } }; // OVRPlugin/TextureRectMatrixf // OVRPlugin/TiledMultiResLevel // OVRPlugin/TiledMultiResLevel // OVRPlugin/TrackedKeyboardFlags // OVRPlugin/TrackedKeyboardFlags // OVRPlugin/TrackedKeyboardPresentationStyles // OVRPlugin/TrackedKeyboardPresentationStyles // OVRPlugin/TrackedKeyboardQueryFlags // OVRPlugin/TrackedKeyboardQueryFlags // OVRPlugin/Tracker // OVRPlugin/Tracker // OVRPlugin/TrackingConfidence // OVRPlugin/TrackingConfidence // OVRPlugin/TrackingOrigin // OVRPlugin/TrackingOrigin // OVRPlugin/XrApi // OVRPlugin/XrApi // OVRProfile/State // OVRProfile/State // OVRRaycaster/RaycastHit // OVRRaycaster/RaycastHit // OVRSkeleton/BoneId // OVRSkeleton/BoneId // OVRSkeleton/SkeletonType // OVRSkeleton/SkeletonType // OVRSkeletonRenderer/CapsuleVisualization // OVRSkeletonRenderer/CapsuleVisualization // OVRSkeletonRenderer/ConfidenceBehavior // OVRSkeletonRenderer/ConfidenceBehavior // OVRSkeletonRenderer/SystemGestureBehavior // OVRSkeletonRenderer/SystemGestureBehavior // OVRTrackedKeyboard/KeyboardPresentation // OVRTrackedKeyboard/KeyboardPresentation // OVRTrackedKeyboard/TrackedKeyboardState // OVRTrackedKeyboard/TrackedKeyboardState // OVRNetwork/OVRNetworkTcpClient/ConnectionState // OVRNetwork/OVRNetworkTcpClient/ConnectionState // OVRPlugin/Media/InputVideoBufferType // OVRPlugin/Media/InputVideoBufferType // OVRPlugin/Media/MrcActivationMode // OVRPlugin/Media/MrcActivationMode // OVRPlugin/Media/PlatformCameraMode // OVRPlugin/Media/PlatformCameraMode // UnityEngine.AssetBundle // UnityEngine.AssetBundle // UnityEngine.Component // UnityEngine.Component // System.Threading.EventWaitHandle // System.Threading.EventWaitHandle // UnityEngine.GameObject // UnityEngine.GameObject // System.Net.IPAddress struct IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields { public: // System.Net.IPAddress System.Net.IPAddress::Any IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___Any_0; // System.Net.IPAddress System.Net.IPAddress::Loopback IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___Loopback_1; // System.Net.IPAddress System.Net.IPAddress::Broadcast IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___Broadcast_2; // System.Net.IPAddress System.Net.IPAddress::None IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___None_3; // System.Net.IPAddress System.Net.IPAddress::IPv6Any IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___IPv6Any_7; // System.Net.IPAddress System.Net.IPAddress::IPv6Loopback IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___IPv6Loopback_8; // System.Net.IPAddress System.Net.IPAddress::IPv6None IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___IPv6None_9; public: inline static int32_t get_offset_of_Any_0() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___Any_0)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_Any_0() const { return ___Any_0; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_Any_0() { return &___Any_0; } inline void set_Any_0(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___Any_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___Any_0), (void*)value); } inline static int32_t get_offset_of_Loopback_1() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___Loopback_1)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_Loopback_1() const { return ___Loopback_1; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_Loopback_1() { return &___Loopback_1; } inline void set_Loopback_1(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___Loopback_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___Loopback_1), (void*)value); } inline static int32_t get_offset_of_Broadcast_2() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___Broadcast_2)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_Broadcast_2() const { return ___Broadcast_2; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_Broadcast_2() { return &___Broadcast_2; } inline void set_Broadcast_2(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___Broadcast_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___Broadcast_2), (void*)value); } inline static int32_t get_offset_of_None_3() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___None_3)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_None_3() const { return ___None_3; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_None_3() { return &___None_3; } inline void set_None_3(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___None_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___None_3), (void*)value); } inline static int32_t get_offset_of_IPv6Any_7() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___IPv6Any_7)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_IPv6Any_7() const { return ___IPv6Any_7; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_IPv6Any_7() { return &___IPv6Any_7; } inline void set_IPv6Any_7(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___IPv6Any_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___IPv6Any_7), (void*)value); } inline static int32_t get_offset_of_IPv6Loopback_8() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___IPv6Loopback_8)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_IPv6Loopback_8() const { return ___IPv6Loopback_8; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_IPv6Loopback_8() { return &___IPv6Loopback_8; } inline void set_IPv6Loopback_8(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___IPv6Loopback_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___IPv6Loopback_8), (void*)value); } inline static int32_t get_offset_of_IPv6None_9() { return static_cast(offsetof(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields, ___IPv6None_9)); } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * get_IPv6None_9() const { return ___IPv6None_9; } inline IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE ** get_address_of_IPv6None_9() { return &___IPv6None_9; } inline void set_IPv6None_9(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * value) { ___IPv6None_9 = value; Il2CppCodeGenWriteBarrier((void**)(&___IPv6None_9), (void*)value); } }; // System.Net.IPAddress // OVRSimpleJSON.JSONNode struct JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_StaticFields { public: // System.Boolean OVRSimpleJSON.JSONNode::forceASCII bool ___forceASCII_0; // System.Boolean OVRSimpleJSON.JSONNode::longAsString bool ___longAsString_1; // OVRSimpleJSON.JSONContainerType OVRSimpleJSON.JSONNode::VectorContainerType int32_t ___VectorContainerType_3; // OVRSimpleJSON.JSONContainerType OVRSimpleJSON.JSONNode::QuaternionContainerType int32_t ___QuaternionContainerType_4; // OVRSimpleJSON.JSONContainerType OVRSimpleJSON.JSONNode::RectContainerType int32_t ___RectContainerType_5; public: inline static int32_t get_offset_of_forceASCII_0() { return static_cast(offsetof(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_StaticFields, ___forceASCII_0)); } inline bool get_forceASCII_0() const { return ___forceASCII_0; } inline bool* get_address_of_forceASCII_0() { return &___forceASCII_0; } inline void set_forceASCII_0(bool value) { ___forceASCII_0 = value; } inline static int32_t get_offset_of_longAsString_1() { return static_cast(offsetof(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_StaticFields, ___longAsString_1)); } inline bool get_longAsString_1() const { return ___longAsString_1; } inline bool* get_address_of_longAsString_1() { return &___longAsString_1; } inline void set_longAsString_1(bool value) { ___longAsString_1 = value; } inline static int32_t get_offset_of_VectorContainerType_3() { return static_cast(offsetof(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_StaticFields, ___VectorContainerType_3)); } inline int32_t get_VectorContainerType_3() const { return ___VectorContainerType_3; } inline int32_t* get_address_of_VectorContainerType_3() { return &___VectorContainerType_3; } inline void set_VectorContainerType_3(int32_t value) { ___VectorContainerType_3 = value; } inline static int32_t get_offset_of_QuaternionContainerType_4() { return static_cast(offsetof(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_StaticFields, ___QuaternionContainerType_4)); } inline int32_t get_QuaternionContainerType_4() const { return ___QuaternionContainerType_4; } inline int32_t* get_address_of_QuaternionContainerType_4() { return &___QuaternionContainerType_4; } inline void set_QuaternionContainerType_4(int32_t value) { ___QuaternionContainerType_4 = value; } inline static int32_t get_offset_of_RectContainerType_5() { return static_cast(offsetof(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_StaticFields, ___RectContainerType_5)); } inline int32_t get_RectContainerType_5() const { return ___RectContainerType_5; } inline int32_t* get_address_of_RectContainerType_5() { return &___RectContainerType_5; } inline void set_RectContainerType_5(int32_t value) { ___RectContainerType_5 = value; } }; // OVRSimpleJSON.JSONNode struct JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_ThreadStaticFields { public: // System.Text.StringBuilder OVRSimpleJSON.JSONNode::m_EscapeBuilder StringBuilder_t * ___m_EscapeBuilder_2; public: inline static int32_t get_offset_of_m_EscapeBuilder_2() { return static_cast(offsetof(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_ThreadStaticFields, ___m_EscapeBuilder_2)); } inline StringBuilder_t * get_m_EscapeBuilder_2() const { return ___m_EscapeBuilder_2; } inline StringBuilder_t ** get_address_of_m_EscapeBuilder_2() { return &___m_EscapeBuilder_2; } inline void set_m_EscapeBuilder_2(StringBuilder_t * value) { ___m_EscapeBuilder_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_EscapeBuilder_2), (void*)value); } }; // UnityEngine.Material // UnityEngine.Material // System.MulticastDelegate // System.MulticastDelegate // OVRInput struct OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields { public: // System.Single OVRInput::AXIS_AS_BUTTON_THRESHOLD float ___AXIS_AS_BUTTON_THRESHOLD_0; // System.Single OVRInput::AXIS_DEADZONE_THRESHOLD float ___AXIS_DEADZONE_THRESHOLD_1; // System.Collections.Generic.List`1 OVRInput::controllers List_1_tE7A3E65EF4EFEB8E88A946737890AE19BB382B79 * ___controllers_2; // OVRInput/Controller OVRInput::activeControllerType int32_t ___activeControllerType_3; // OVRInput/Controller OVRInput::connectedControllerTypes int32_t ___connectedControllerTypes_4; // OVRPlugin/Step OVRInput::stepType int32_t ___stepType_5; // System.Int32 OVRInput::fixedUpdateCount int32_t ___fixedUpdateCount_6; // System.Boolean OVRInput::_pluginSupportsActiveController bool ____pluginSupportsActiveController_7; // System.Boolean OVRInput::_pluginSupportsActiveControllerCached bool ____pluginSupportsActiveControllerCached_8; // System.Version OVRInput::_pluginSupportsActiveControllerMinVersion Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ____pluginSupportsActiveControllerMinVersion_9; // System.Int32 OVRInput::NUM_HAPTIC_CHANNELS int32_t ___NUM_HAPTIC_CHANNELS_10; // OVRInput/HapticInfo[] OVRInput::hapticInfos HapticInfoU5BU5D_t211B0C9EE0EA90574B4037CCF26B3B52375D8751* ___hapticInfos_11; // System.Single OVRInput::OPENVR_MAX_HAPTIC_AMPLITUDE float ___OPENVR_MAX_HAPTIC_AMPLITUDE_12; // System.Single OVRInput::HAPTIC_VIBRATION_DURATION_SECONDS float ___HAPTIC_VIBRATION_DURATION_SECONDS_13; // System.String OVRInput::OPENVR_TOUCH_NAME String_t* ___OPENVR_TOUCH_NAME_14; // System.String OVRInput::OPENVR_VIVE_CONTROLLER_NAME String_t* ___OPENVR_VIVE_CONTROLLER_NAME_15; // System.String OVRInput::OPENVR_WINDOWSMR_CONTROLLER_NAME String_t* ___OPENVR_WINDOWSMR_CONTROLLER_NAME_16; // OVRInput/OpenVRControllerDetails[] OVRInput::openVRControllerDetails OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* ___openVRControllerDetails_17; public: inline static int32_t get_offset_of_AXIS_AS_BUTTON_THRESHOLD_0() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___AXIS_AS_BUTTON_THRESHOLD_0)); } inline float get_AXIS_AS_BUTTON_THRESHOLD_0() const { return ___AXIS_AS_BUTTON_THRESHOLD_0; } inline float* get_address_of_AXIS_AS_BUTTON_THRESHOLD_0() { return &___AXIS_AS_BUTTON_THRESHOLD_0; } inline void set_AXIS_AS_BUTTON_THRESHOLD_0(float value) { ___AXIS_AS_BUTTON_THRESHOLD_0 = value; } inline static int32_t get_offset_of_AXIS_DEADZONE_THRESHOLD_1() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___AXIS_DEADZONE_THRESHOLD_1)); } inline float get_AXIS_DEADZONE_THRESHOLD_1() const { return ___AXIS_DEADZONE_THRESHOLD_1; } inline float* get_address_of_AXIS_DEADZONE_THRESHOLD_1() { return &___AXIS_DEADZONE_THRESHOLD_1; } inline void set_AXIS_DEADZONE_THRESHOLD_1(float value) { ___AXIS_DEADZONE_THRESHOLD_1 = value; } inline static int32_t get_offset_of_controllers_2() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___controllers_2)); } inline List_1_tE7A3E65EF4EFEB8E88A946737890AE19BB382B79 * get_controllers_2() const { return ___controllers_2; } inline List_1_tE7A3E65EF4EFEB8E88A946737890AE19BB382B79 ** get_address_of_controllers_2() { return &___controllers_2; } inline void set_controllers_2(List_1_tE7A3E65EF4EFEB8E88A946737890AE19BB382B79 * value) { ___controllers_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___controllers_2), (void*)value); } inline static int32_t get_offset_of_activeControllerType_3() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___activeControllerType_3)); } inline int32_t get_activeControllerType_3() const { return ___activeControllerType_3; } inline int32_t* get_address_of_activeControllerType_3() { return &___activeControllerType_3; } inline void set_activeControllerType_3(int32_t value) { ___activeControllerType_3 = value; } inline static int32_t get_offset_of_connectedControllerTypes_4() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___connectedControllerTypes_4)); } inline int32_t get_connectedControllerTypes_4() const { return ___connectedControllerTypes_4; } inline int32_t* get_address_of_connectedControllerTypes_4() { return &___connectedControllerTypes_4; } inline void set_connectedControllerTypes_4(int32_t value) { ___connectedControllerTypes_4 = value; } inline static int32_t get_offset_of_stepType_5() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___stepType_5)); } inline int32_t get_stepType_5() const { return ___stepType_5; } inline int32_t* get_address_of_stepType_5() { return &___stepType_5; } inline void set_stepType_5(int32_t value) { ___stepType_5 = value; } inline static int32_t get_offset_of_fixedUpdateCount_6() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___fixedUpdateCount_6)); } inline int32_t get_fixedUpdateCount_6() const { return ___fixedUpdateCount_6; } inline int32_t* get_address_of_fixedUpdateCount_6() { return &___fixedUpdateCount_6; } inline void set_fixedUpdateCount_6(int32_t value) { ___fixedUpdateCount_6 = value; } inline static int32_t get_offset_of__pluginSupportsActiveController_7() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ____pluginSupportsActiveController_7)); } inline bool get__pluginSupportsActiveController_7() const { return ____pluginSupportsActiveController_7; } inline bool* get_address_of__pluginSupportsActiveController_7() { return &____pluginSupportsActiveController_7; } inline void set__pluginSupportsActiveController_7(bool value) { ____pluginSupportsActiveController_7 = value; } inline static int32_t get_offset_of__pluginSupportsActiveControllerCached_8() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ____pluginSupportsActiveControllerCached_8)); } inline bool get__pluginSupportsActiveControllerCached_8() const { return ____pluginSupportsActiveControllerCached_8; } inline bool* get_address_of__pluginSupportsActiveControllerCached_8() { return &____pluginSupportsActiveControllerCached_8; } inline void set__pluginSupportsActiveControllerCached_8(bool value) { ____pluginSupportsActiveControllerCached_8 = value; } inline static int32_t get_offset_of__pluginSupportsActiveControllerMinVersion_9() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ____pluginSupportsActiveControllerMinVersion_9)); } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * get__pluginSupportsActiveControllerMinVersion_9() const { return ____pluginSupportsActiveControllerMinVersion_9; } inline Version_tBDAEDED25425A1D09910468B8BD1759115646E3C ** get_address_of__pluginSupportsActiveControllerMinVersion_9() { return &____pluginSupportsActiveControllerMinVersion_9; } inline void set__pluginSupportsActiveControllerMinVersion_9(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * value) { ____pluginSupportsActiveControllerMinVersion_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____pluginSupportsActiveControllerMinVersion_9), (void*)value); } inline static int32_t get_offset_of_NUM_HAPTIC_CHANNELS_10() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___NUM_HAPTIC_CHANNELS_10)); } inline int32_t get_NUM_HAPTIC_CHANNELS_10() const { return ___NUM_HAPTIC_CHANNELS_10; } inline int32_t* get_address_of_NUM_HAPTIC_CHANNELS_10() { return &___NUM_HAPTIC_CHANNELS_10; } inline void set_NUM_HAPTIC_CHANNELS_10(int32_t value) { ___NUM_HAPTIC_CHANNELS_10 = value; } inline static int32_t get_offset_of_hapticInfos_11() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___hapticInfos_11)); } inline HapticInfoU5BU5D_t211B0C9EE0EA90574B4037CCF26B3B52375D8751* get_hapticInfos_11() const { return ___hapticInfos_11; } inline HapticInfoU5BU5D_t211B0C9EE0EA90574B4037CCF26B3B52375D8751** get_address_of_hapticInfos_11() { return &___hapticInfos_11; } inline void set_hapticInfos_11(HapticInfoU5BU5D_t211B0C9EE0EA90574B4037CCF26B3B52375D8751* value) { ___hapticInfos_11 = value; Il2CppCodeGenWriteBarrier((void**)(&___hapticInfos_11), (void*)value); } inline static int32_t get_offset_of_OPENVR_MAX_HAPTIC_AMPLITUDE_12() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___OPENVR_MAX_HAPTIC_AMPLITUDE_12)); } inline float get_OPENVR_MAX_HAPTIC_AMPLITUDE_12() const { return ___OPENVR_MAX_HAPTIC_AMPLITUDE_12; } inline float* get_address_of_OPENVR_MAX_HAPTIC_AMPLITUDE_12() { return &___OPENVR_MAX_HAPTIC_AMPLITUDE_12; } inline void set_OPENVR_MAX_HAPTIC_AMPLITUDE_12(float value) { ___OPENVR_MAX_HAPTIC_AMPLITUDE_12 = value; } inline static int32_t get_offset_of_HAPTIC_VIBRATION_DURATION_SECONDS_13() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___HAPTIC_VIBRATION_DURATION_SECONDS_13)); } inline float get_HAPTIC_VIBRATION_DURATION_SECONDS_13() const { return ___HAPTIC_VIBRATION_DURATION_SECONDS_13; } inline float* get_address_of_HAPTIC_VIBRATION_DURATION_SECONDS_13() { return &___HAPTIC_VIBRATION_DURATION_SECONDS_13; } inline void set_HAPTIC_VIBRATION_DURATION_SECONDS_13(float value) { ___HAPTIC_VIBRATION_DURATION_SECONDS_13 = value; } inline static int32_t get_offset_of_OPENVR_TOUCH_NAME_14() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___OPENVR_TOUCH_NAME_14)); } inline String_t* get_OPENVR_TOUCH_NAME_14() const { return ___OPENVR_TOUCH_NAME_14; } inline String_t** get_address_of_OPENVR_TOUCH_NAME_14() { return &___OPENVR_TOUCH_NAME_14; } inline void set_OPENVR_TOUCH_NAME_14(String_t* value) { ___OPENVR_TOUCH_NAME_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___OPENVR_TOUCH_NAME_14), (void*)value); } inline static int32_t get_offset_of_OPENVR_VIVE_CONTROLLER_NAME_15() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___OPENVR_VIVE_CONTROLLER_NAME_15)); } inline String_t* get_OPENVR_VIVE_CONTROLLER_NAME_15() const { return ___OPENVR_VIVE_CONTROLLER_NAME_15; } inline String_t** get_address_of_OPENVR_VIVE_CONTROLLER_NAME_15() { return &___OPENVR_VIVE_CONTROLLER_NAME_15; } inline void set_OPENVR_VIVE_CONTROLLER_NAME_15(String_t* value) { ___OPENVR_VIVE_CONTROLLER_NAME_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___OPENVR_VIVE_CONTROLLER_NAME_15), (void*)value); } inline static int32_t get_offset_of_OPENVR_WINDOWSMR_CONTROLLER_NAME_16() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___OPENVR_WINDOWSMR_CONTROLLER_NAME_16)); } inline String_t* get_OPENVR_WINDOWSMR_CONTROLLER_NAME_16() const { return ___OPENVR_WINDOWSMR_CONTROLLER_NAME_16; } inline String_t** get_address_of_OPENVR_WINDOWSMR_CONTROLLER_NAME_16() { return &___OPENVR_WINDOWSMR_CONTROLLER_NAME_16; } inline void set_OPENVR_WINDOWSMR_CONTROLLER_NAME_16(String_t* value) { ___OPENVR_WINDOWSMR_CONTROLLER_NAME_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___OPENVR_WINDOWSMR_CONTROLLER_NAME_16), (void*)value); } inline static int32_t get_offset_of_openVRControllerDetails_17() { return static_cast(offsetof(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields, ___openVRControllerDetails_17)); } inline OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* get_openVRControllerDetails_17() const { return ___openVRControllerDetails_17; } inline OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8** get_address_of_openVRControllerDetails_17() { return &___openVRControllerDetails_17; } inline void set_openVRControllerDetails_17(OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* value) { ___openVRControllerDetails_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___openVRControllerDetails_17), (void*)value); } }; // OVRInput // OVRTextureData // OVRTextureData // System.SystemException // System.SystemException // System.Net.Sockets.TcpClient // System.Net.Sockets.TcpClient // UnityEngine.Texture struct Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields { public: // System.Int32 UnityEngine.Texture::GenerateAllMips int32_t ___GenerateAllMips_4; public: inline static int32_t get_offset_of_GenerateAllMips_4() { return static_cast(offsetof(Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE_StaticFields, ___GenerateAllMips_4)); } inline int32_t get_GenerateAllMips_4() const { return ___GenerateAllMips_4; } inline int32_t* get_address_of_GenerateAllMips_4() { return &___GenerateAllMips_4; } inline void set_GenerateAllMips_4(int32_t value) { ___GenerateAllMips_4 = value; } }; // UnityEngine.Texture // System.Type struct Type_t_StaticFields { public: // System.Reflection.MemberFilter System.Type::FilterAttribute MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterAttribute_0; // System.Reflection.MemberFilter System.Type::FilterName MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterName_1; // System.Reflection.MemberFilter System.Type::FilterNameIgnoreCase MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * ___FilterNameIgnoreCase_2; // System.Object System.Type::Missing RuntimeObject * ___Missing_3; // System.Char System.Type::Delimiter Il2CppChar ___Delimiter_4; // System.Type[] System.Type::EmptyTypes TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* ___EmptyTypes_5; // System.Reflection.Binder System.Type::defaultBinder Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * ___defaultBinder_6; public: inline static int32_t get_offset_of_FilterAttribute_0() { return static_cast(offsetof(Type_t_StaticFields, ___FilterAttribute_0)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterAttribute_0() const { return ___FilterAttribute_0; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterAttribute_0() { return &___FilterAttribute_0; } inline void set_FilterAttribute_0(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterAttribute_0 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterAttribute_0), (void*)value); } inline static int32_t get_offset_of_FilterName_1() { return static_cast(offsetof(Type_t_StaticFields, ___FilterName_1)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterName_1() const { return ___FilterName_1; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterName_1() { return &___FilterName_1; } inline void set_FilterName_1(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterName_1 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterName_1), (void*)value); } inline static int32_t get_offset_of_FilterNameIgnoreCase_2() { return static_cast(offsetof(Type_t_StaticFields, ___FilterNameIgnoreCase_2)); } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * get_FilterNameIgnoreCase_2() const { return ___FilterNameIgnoreCase_2; } inline MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 ** get_address_of_FilterNameIgnoreCase_2() { return &___FilterNameIgnoreCase_2; } inline void set_FilterNameIgnoreCase_2(MemberFilter_t48D0AA10105D186AF42428FA532D4B4332CF8B81 * value) { ___FilterNameIgnoreCase_2 = value; Il2CppCodeGenWriteBarrier((void**)(&___FilterNameIgnoreCase_2), (void*)value); } inline static int32_t get_offset_of_Missing_3() { return static_cast(offsetof(Type_t_StaticFields, ___Missing_3)); } inline RuntimeObject * get_Missing_3() const { return ___Missing_3; } inline RuntimeObject ** get_address_of_Missing_3() { return &___Missing_3; } inline void set_Missing_3(RuntimeObject * value) { ___Missing_3 = value; Il2CppCodeGenWriteBarrier((void**)(&___Missing_3), (void*)value); } inline static int32_t get_offset_of_Delimiter_4() { return static_cast(offsetof(Type_t_StaticFields, ___Delimiter_4)); } inline Il2CppChar get_Delimiter_4() const { return ___Delimiter_4; } inline Il2CppChar* get_address_of_Delimiter_4() { return &___Delimiter_4; } inline void set_Delimiter_4(Il2CppChar value) { ___Delimiter_4 = value; } inline static int32_t get_offset_of_EmptyTypes_5() { return static_cast(offsetof(Type_t_StaticFields, ___EmptyTypes_5)); } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* get_EmptyTypes_5() const { return ___EmptyTypes_5; } inline TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755** get_address_of_EmptyTypes_5() { return &___EmptyTypes_5; } inline void set_EmptyTypes_5(TypeU5BU5D_t85B10489E46F06CEC7C4B1CCBD0E01FAB6649755* value) { ___EmptyTypes_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___EmptyTypes_5), (void*)value); } inline static int32_t get_offset_of_defaultBinder_6() { return static_cast(offsetof(Type_t_StaticFields, ___defaultBinder_6)); } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * get_defaultBinder_6() const { return ___defaultBinder_6; } inline Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 ** get_address_of_defaultBinder_6() { return &___defaultBinder_6; } inline void set_defaultBinder_6(Binder_t2BEE27FD84737D1E79BC47FD67F6D3DD2F2DDA30 * value) { ___defaultBinder_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___defaultBinder_6), (void*)value); } }; // System.Type // OVRInput/HapticInfo // OVRInput/HapticInfo // OVRInput/OVRControllerBase // OVRInput/OVRControllerBase // OVRInput/OpenVRControllerDetails // OVRInput/OpenVRControllerDetails // OVRKeyboard/TrackedKeyboardInfo // OVRKeyboard/TrackedKeyboardInfo // OVRPlugin/AppPerfStats // OVRPlugin/AppPerfStats // OVRPlugin/Bone // OVRPlugin/Bone // OVRPlugin/BoundaryGeometry // OVRPlugin/BoundaryGeometry // OVRPlugin/BoundaryTestResult // OVRPlugin/BoundaryTestResult // OVRPlugin/CameraExtrinsics // OVRPlugin/CameraExtrinsics // OVRPlugin/CameraIntrinsics // OVRPlugin/CameraIntrinsics // OVRPlugin/EventDataBuffer // OVRPlugin/EventDataBuffer // OVRPlugin/HandState // OVRPlugin/HandState // OVRPlugin/HandStateInternal // OVRPlugin/HandStateInternal // OVRPlugin/InsightPassthroughStyle // OVRPlugin/InsightPassthroughStyle // OVRPlugin/KeyboardDescription // OVRPlugin/KeyboardDescription // OVRPlugin/LayerDesc // OVRPlugin/LayerDesc // OVRPlugin/LayerSubmit // OVRPlugin/LayerSubmit // OVRPlugin/Mesh // OVRPlugin/Mesh // OVRPlugin/PoseStatef struct PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2_StaticFields { public: // OVRPlugin/PoseStatef OVRPlugin/PoseStatef::identity PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 ___identity_6; public: inline static int32_t get_offset_of_identity_6() { return static_cast(offsetof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2_StaticFields, ___identity_6)); } inline PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 get_identity_6() const { return ___identity_6; } inline PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 * get_address_of_identity_6() { return &___identity_6; } inline void set_identity_6(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 value) { ___identity_6 = value; } }; // OVRPlugin/PoseStatef // OVRPlugin/Skeleton2 // OVRPlugin/Skeleton2 // OVRPlugin/SpatialEntityAnchorCreateInfo // OVRPlugin/SpatialEntityAnchorCreateInfo // OVRPlugin/SpatialEntityQueryInfo // OVRPlugin/SpatialEntityQueryInfo // OVRSkeleton/SkeletonPoseData // OVRSkeleton/SkeletonPoseData // OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent // OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent // OVRInput/OVRControllerBase/VirtualAxis1DMap // OVRInput/OVRControllerBase/VirtualAxis1DMap // OVRInput/OVRControllerBase/VirtualAxis2DMap // OVRInput/OVRControllerBase/VirtualAxis2DMap // OVRInput/OVRControllerBase/VirtualButtonMap // OVRInput/OVRControllerBase/VirtualButtonMap // OVRInput/OVRControllerBase/VirtualNearTouchMap // OVRInput/OVRControllerBase/VirtualNearTouchMap // OVRInput/OVRControllerBase/VirtualTouchMap // OVRInput/OVRControllerBase/VirtualTouchMap // System.Action`1 // System.Action`1 // System.Action`4 // System.Action`4 // System.Action // System.Action // System.AsyncCallback // System.AsyncCallback // UnityEngine.Behaviour // UnityEngine.Behaviour // UnityEngine.Collider // UnityEngine.Collider // System.Runtime.InteropServices.ExternalException // System.Runtime.InteropServices.ExternalException // System.InvalidOperationException // System.InvalidOperationException // OVRSimpleJSON.JSONNumber // OVRSimpleJSON.JSONNumber // OVRSimpleJSON.JSONObject // OVRSimpleJSON.JSONObject // System.Threading.ManualResetEvent // System.Threading.ManualResetEvent // System.NotSupportedException // System.NotSupportedException // OVRMaterialData // OVRMaterialData // UnityEngine.RenderTexture // UnityEngine.RenderTexture // UnityEngine.Renderer // UnityEngine.Renderer // UnityEngine.Texture2D // UnityEngine.Texture2D // UnityEngine.Transform // UnityEngine.Transform // OVRInput/OVRControllerGamepadAndroid // OVRInput/OVRControllerGamepadAndroid // OVRInput/OVRControllerGamepadMac // OVRInput/OVRControllerGamepadMac // OVRInput/OVRControllerGamepadPC // OVRInput/OVRControllerGamepadPC // OVRInput/OVRControllerHands // OVRInput/OVRControllerHands // OVRInput/OVRControllerLHand // OVRInput/OVRControllerLHand // OVRInput/OVRControllerLTouch // OVRInput/OVRControllerLTouch // OVRInput/OVRControllerRHand // OVRInput/OVRControllerRHand // OVRInput/OVRControllerRTouch // OVRInput/OVRControllerRTouch // OVRInput/OVRControllerRemote // OVRInput/OVRControllerRemote // OVRInput/OVRControllerTouch // OVRInput/OVRControllerTouch // OVRManager/InstantiateMrcCameraDelegate // OVRManager/InstantiateMrcCameraDelegate // OVROverlay/ExternalSurfaceObjectCreated // OVROverlay/ExternalSurfaceObjectCreated // OVRPlugin/KeyboardState // OVRPlugin/KeyboardState // OVRPlugin/Skeleton // OVRPlugin/Skeleton // OVRPlugin/Skeleton2Internal // OVRPlugin/Skeleton2Internal // OVRControllerTest/BoolMonitor/BoolGenerator // OVRControllerTest/BoolMonitor/BoolGenerator // OVRHandTest/BoolMonitor/BoolGenerator // OVRHandTest/BoolMonitor/BoolGenerator // UnityEngine.Camera struct Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields { public: // UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreCull CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPreCull_4; // UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPreRender CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPreRender_5; // UnityEngine.Camera/CameraCallback UnityEngine.Camera::onPostRender CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * ___onPostRender_6; public: inline static int32_t get_offset_of_onPreCull_4() { return static_cast(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPreCull_4)); } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPreCull_4() const { return ___onPreCull_4; } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPreCull_4() { return &___onPreCull_4; } inline void set_onPreCull_4(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value) { ___onPreCull_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPreCull_4), (void*)value); } inline static int32_t get_offset_of_onPreRender_5() { return static_cast(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPreRender_5)); } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPreRender_5() const { return ___onPreRender_5; } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPreRender_5() { return &___onPreRender_5; } inline void set_onPreRender_5(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value) { ___onPreRender_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPreRender_5), (void*)value); } inline static int32_t get_offset_of_onPostRender_6() { return static_cast(offsetof(Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C_StaticFields, ___onPostRender_6)); } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * get_onPostRender_6() const { return ___onPostRender_6; } inline CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D ** get_address_of_onPostRender_6() { return &___onPostRender_6; } inline void set_onPostRender_6(CameraCallback_tD9E7B69E561CE2EFDEEDB0E7F1406AC52247160D * value) { ___onPostRender_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___onPostRender_6), (void*)value); } }; // UnityEngine.Camera // UnityEngine.CapsuleCollider // UnityEngine.CapsuleCollider // UnityEngine.LineRenderer // UnityEngine.LineRenderer // UnityEngine.MeshRenderer // UnityEngine.MeshRenderer // UnityEngine.MonoBehaviour // UnityEngine.MonoBehaviour // System.ObjectDisposedException // System.ObjectDisposedException // System.ComponentModel.Win32Exception struct Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields { public: // System.Boolean System.ComponentModel.Win32Exception::s_ErrorMessagesInitialized bool ___s_ErrorMessagesInitialized_18; // System.Collections.Generic.Dictionary`2 System.ComponentModel.Win32Exception::s_ErrorMessage Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * ___s_ErrorMessage_19; public: inline static int32_t get_offset_of_s_ErrorMessagesInitialized_18() { return static_cast(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields, ___s_ErrorMessagesInitialized_18)); } inline bool get_s_ErrorMessagesInitialized_18() const { return ___s_ErrorMessagesInitialized_18; } inline bool* get_address_of_s_ErrorMessagesInitialized_18() { return &___s_ErrorMessagesInitialized_18; } inline void set_s_ErrorMessagesInitialized_18(bool value) { ___s_ErrorMessagesInitialized_18 = value; } inline static int32_t get_offset_of_s_ErrorMessage_19() { return static_cast(offsetof(Win32Exception_t4B7A329153AA0E88CA08533EFB6DB2F2A8E90950_StaticFields, ___s_ErrorMessage_19)); } inline Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * get_s_ErrorMessage_19() const { return ___s_ErrorMessage_19; } inline Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB ** get_address_of_s_ErrorMessage_19() { return &___s_ErrorMessage_19; } inline void set_s_ErrorMessage_19(Dictionary_2_t0ACB62D0885C7AB376463C70665400A39808C5FB * value) { ___s_ErrorMessage_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_ErrorMessage_19), (void*)value); } }; // System.ComponentModel.Win32Exception // OVRGLTFLoader/<>c__DisplayClass16_0 // OVRGLTFLoader/<>c__DisplayClass16_0 // OVRCameraRig // OVRCameraRig // OVRHandTest struct OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_StaticFields { public: // System.String OVRHandTest::prevConnected String_t* ___prevConnected_17; // OVRHandTest/BoolMonitor OVRHandTest::controllers BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 * ___controllers_18; public: inline static int32_t get_offset_of_prevConnected_17() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_StaticFields, ___prevConnected_17)); } inline String_t* get_prevConnected_17() const { return ___prevConnected_17; } inline String_t** get_address_of_prevConnected_17() { return &___prevConnected_17; } inline void set_prevConnected_17(String_t* value) { ___prevConnected_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___prevConnected_17), (void*)value); } inline static int32_t get_offset_of_controllers_18() { return static_cast(offsetof(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_StaticFields, ___controllers_18)); } inline BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 * get_controllers_18() const { return ___controllers_18; } inline BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 ** get_address_of_controllers_18() { return &___controllers_18; } inline void set_controllers_18(BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 * value) { ___controllers_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___controllers_18), (void*)value); } }; // OVRHandTest // OVRManager struct OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields { public: // OVRManager OVRManager::k__BackingField OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036 * ___U3CinstanceU3Ek__BackingField_4; // OVRDisplay OVRManager::k__BackingField OVRDisplay_tF5034EBAB0DA4F06CA0F3CD89B81E383C433032E * ___U3CdisplayU3Ek__BackingField_5; // OVRTracker OVRManager::k__BackingField OVRTracker_tF07580E7AD8A4B9913B767CB1E7246CA0716599A * ___U3CtrackerU3Ek__BackingField_6; // OVRBoundary OVRManager::k__BackingField OVRBoundary_tD61D7BB91BDB049797EFCC542682BCEC658B4EEF * ___U3CboundaryU3Ek__BackingField_7; // OVRRuntimeSettings OVRManager::k__BackingField OVRRuntimeSettings_t3D2B8321092BAC35E39905B41D0690CEFD8AB343 * ___U3CruntimeSettingsU3Ek__BackingField_8; // OVRProfile OVRManager::_profile OVRProfile_t50093ECE56A92AB8622A8E48DD458E8CEFE71C76 * ____profile_9; // System.Action OVRManager::HMDAcquired Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___HMDAcquired_12; // System.Action OVRManager::HMDLost Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___HMDLost_13; // System.Action OVRManager::HMDMounted Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___HMDMounted_14; // System.Action OVRManager::HMDUnmounted Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___HMDUnmounted_15; // System.Action OVRManager::VrFocusAcquired Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___VrFocusAcquired_16; // System.Action OVRManager::VrFocusLost Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___VrFocusLost_17; // System.Action OVRManager::InputFocusAcquired Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___InputFocusAcquired_18; // System.Action OVRManager::InputFocusLost Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___InputFocusLost_19; // System.Action OVRManager::AudioOutChanged Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___AudioOutChanged_20; // System.Action OVRManager::AudioInChanged Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___AudioInChanged_21; // System.Action OVRManager::TrackingAcquired Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___TrackingAcquired_22; // System.Action OVRManager::TrackingLost Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___TrackingLost_23; // System.Action`2 OVRManager::DisplayRefreshRateChanged Action_2_tBA82D2430D3596594262E1ACAD640A8EEB5DB2F2 * ___DisplayRefreshRateChanged_24; // System.Action`4 OVRManager::SpatialEntitySetComponentEnabled Action_4_t0B9EF883AC063A1E200FE9EB95FC8C272CB243D8 * ___SpatialEntitySetComponentEnabled_25; // System.Action`3 OVRManager::SpatialEntityQueryResults Action_3_t3758EBDA081B24412ED63A3941C20EBC3E5CFCB0 * ___SpatialEntityQueryResults_26; // System.Action`3 OVRManager::SpatialEntityQueryComplete Action_3_t1898E42A573C06F569B73238FC1A38625F7D9021 * ___SpatialEntityQueryComplete_27; // System.Action`4 OVRManager::SpatialEntityStorageSave Action_4_tC40012D9691E5DE5C97D2E1EF4FE6A87C8C0FC3E * ___SpatialEntityStorageSave_28; // System.Action`4 OVRManager::SpatialEntityStorageErase Action_4_t9E12995424CAFA0450021E48FF6FE4ABF2A895EE * ___SpatialEntityStorageErase_29; // System.Action OVRManager::HSWDismissed Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * ___HSWDismissed_30; // System.Boolean OVRManager::_isHmdPresentCached bool ____isHmdPresentCached_31; // System.Boolean OVRManager::_isHmdPresent bool ____isHmdPresent_32; // System.Boolean OVRManager::_wasHmdPresent bool ____wasHmdPresent_33; // System.Boolean OVRManager::_hasVrFocusCached bool ____hasVrFocusCached_34; // System.Boolean OVRManager::_hasVrFocus bool ____hasVrFocus_35; // System.Boolean OVRManager::_hadVrFocus bool ____hadVrFocus_36; // System.Boolean OVRManager::_hadInputFocus bool ____hadInputFocus_37; // System.String OVRManager::OCULUS_UNITY_NAME_STR String_t* ___OCULUS_UNITY_NAME_STR_76; // System.String OVRManager::OPENVR_UNITY_NAME_STR String_t* ___OPENVR_UNITY_NAME_STR_77; // OVRManager/XRDevice OVRManager::loadedXRDevice int32_t ___loadedXRDevice_78; // UnityEngine.Vector3 OVRManager::OpenVRTouchRotationOffsetEulerLeft Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___OpenVRTouchRotationOffsetEulerLeft_79; // UnityEngine.Vector3 OVRManager::OpenVRTouchRotationOffsetEulerRight Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___OpenVRTouchRotationOffsetEulerRight_80; // UnityEngine.Vector3 OVRManager::OpenVRTouchPositionOffsetLeft Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___OpenVRTouchPositionOffsetLeft_81; // UnityEngine.Vector3 OVRManager::OpenVRTouchPositionOffsetRight Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___OpenVRTouchPositionOffsetRight_82; // System.Boolean OVRManager::m_SpaceWarpEnabled bool ___m_SpaceWarpEnabled_83; // UnityEngine.Transform OVRManager::m_AppSpaceTransform Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___m_AppSpaceTransform_84; // UnityEngine.DepthTextureMode OVRManager::m_CachedDepthTextureMode int32_t ___m_CachedDepthTextureMode_85; // System.Boolean OVRManager::_isUserPresentCached bool ____isUserPresentCached_95; // System.Boolean OVRManager::_isUserPresent bool ____isUserPresent_96; // System.Boolean OVRManager::_wasUserPresent bool ____wasUserPresent_97; // System.Boolean OVRManager::prevAudioOutIdIsCached bool ___prevAudioOutIdIsCached_98; // System.Boolean OVRManager::prevAudioInIdIsCached bool ___prevAudioInIdIsCached_99; // System.String OVRManager::prevAudioOutId String_t* ___prevAudioOutId_100; // System.String OVRManager::prevAudioInId String_t* ___prevAudioInId_101; // System.Boolean OVRManager::wasPositionTracked bool ___wasPositionTracked_102; // OVRPlugin/EventDataBuffer OVRManager::eventDataBuffer EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9 ___eventDataBuffer_103; // System.String OVRManager::UnityAlphaOrBetaVersionWarningMessage String_t* ___UnityAlphaOrBetaVersionWarningMessage_104; // System.Boolean OVRManager::OVRManagerinitialized bool ___OVRManagerinitialized_105; // System.Collections.Generic.List`1 OVRManager::s_displaySubsystems List_1_t56455D217921470E52E7D33A1794256E31084DD8 * ___s_displaySubsystems_106; // System.Collections.Generic.List`1 OVRManager::s_displaySubsystemDescriptors List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 * ___s_displaySubsystemDescriptors_107; // System.Collections.Generic.List`1 OVRManager::s_inputSubsystems List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * ___s_inputSubsystems_108; // System.Boolean OVRManager::multipleMainCameraWarningPresented bool ___multipleMainCameraWarningPresented_109; // System.WeakReference`1 OVRManager::lastFoundMainCamera WeakReference_1_t31103BF0AB213236F697B644B27B7480DEF79D5E * ___lastFoundMainCamera_110; // System.Boolean OVRManager::staticMixedRealityCaptureInitialized bool ___staticMixedRealityCaptureInitialized_111; // System.Boolean OVRManager::staticPrevEnableMixedRealityCapture bool ___staticPrevEnableMixedRealityCapture_112; // OVRMixedRealityCaptureSettings OVRManager::staticMrcSettings OVRMixedRealityCaptureSettings_t83BE3A431BD6F52C2F2E6EE7A73394AE7DC99F8D * ___staticMrcSettings_113; // System.Boolean OVRManager::suppressDisableMixedRealityBecauseOfNoMainCameraWarning bool ___suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114; // OVRManager/PassthroughInitializationState OVRManager::_passthroughInitializationState int32_t ____passthroughInitializationState_115; public: inline static int32_t get_offset_of_U3CinstanceU3Ek__BackingField_4() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___U3CinstanceU3Ek__BackingField_4)); } inline OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036 * get_U3CinstanceU3Ek__BackingField_4() const { return ___U3CinstanceU3Ek__BackingField_4; } inline OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036 ** get_address_of_U3CinstanceU3Ek__BackingField_4() { return &___U3CinstanceU3Ek__BackingField_4; } inline void set_U3CinstanceU3Ek__BackingField_4(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036 * value) { ___U3CinstanceU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CinstanceU3Ek__BackingField_4), (void*)value); } inline static int32_t get_offset_of_U3CdisplayU3Ek__BackingField_5() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___U3CdisplayU3Ek__BackingField_5)); } inline OVRDisplay_tF5034EBAB0DA4F06CA0F3CD89B81E383C433032E * get_U3CdisplayU3Ek__BackingField_5() const { return ___U3CdisplayU3Ek__BackingField_5; } inline OVRDisplay_tF5034EBAB0DA4F06CA0F3CD89B81E383C433032E ** get_address_of_U3CdisplayU3Ek__BackingField_5() { return &___U3CdisplayU3Ek__BackingField_5; } inline void set_U3CdisplayU3Ek__BackingField_5(OVRDisplay_tF5034EBAB0DA4F06CA0F3CD89B81E383C433032E * value) { ___U3CdisplayU3Ek__BackingField_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CdisplayU3Ek__BackingField_5), (void*)value); } inline static int32_t get_offset_of_U3CtrackerU3Ek__BackingField_6() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___U3CtrackerU3Ek__BackingField_6)); } inline OVRTracker_tF07580E7AD8A4B9913B767CB1E7246CA0716599A * get_U3CtrackerU3Ek__BackingField_6() const { return ___U3CtrackerU3Ek__BackingField_6; } inline OVRTracker_tF07580E7AD8A4B9913B767CB1E7246CA0716599A ** get_address_of_U3CtrackerU3Ek__BackingField_6() { return &___U3CtrackerU3Ek__BackingField_6; } inline void set_U3CtrackerU3Ek__BackingField_6(OVRTracker_tF07580E7AD8A4B9913B767CB1E7246CA0716599A * value) { ___U3CtrackerU3Ek__BackingField_6 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CtrackerU3Ek__BackingField_6), (void*)value); } inline static int32_t get_offset_of_U3CboundaryU3Ek__BackingField_7() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___U3CboundaryU3Ek__BackingField_7)); } inline OVRBoundary_tD61D7BB91BDB049797EFCC542682BCEC658B4EEF * get_U3CboundaryU3Ek__BackingField_7() const { return ___U3CboundaryU3Ek__BackingField_7; } inline OVRBoundary_tD61D7BB91BDB049797EFCC542682BCEC658B4EEF ** get_address_of_U3CboundaryU3Ek__BackingField_7() { return &___U3CboundaryU3Ek__BackingField_7; } inline void set_U3CboundaryU3Ek__BackingField_7(OVRBoundary_tD61D7BB91BDB049797EFCC542682BCEC658B4EEF * value) { ___U3CboundaryU3Ek__BackingField_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CboundaryU3Ek__BackingField_7), (void*)value); } inline static int32_t get_offset_of_U3CruntimeSettingsU3Ek__BackingField_8() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___U3CruntimeSettingsU3Ek__BackingField_8)); } inline OVRRuntimeSettings_t3D2B8321092BAC35E39905B41D0690CEFD8AB343 * get_U3CruntimeSettingsU3Ek__BackingField_8() const { return ___U3CruntimeSettingsU3Ek__BackingField_8; } inline OVRRuntimeSettings_t3D2B8321092BAC35E39905B41D0690CEFD8AB343 ** get_address_of_U3CruntimeSettingsU3Ek__BackingField_8() { return &___U3CruntimeSettingsU3Ek__BackingField_8; } inline void set_U3CruntimeSettingsU3Ek__BackingField_8(OVRRuntimeSettings_t3D2B8321092BAC35E39905B41D0690CEFD8AB343 * value) { ___U3CruntimeSettingsU3Ek__BackingField_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CruntimeSettingsU3Ek__BackingField_8), (void*)value); } inline static int32_t get_offset_of__profile_9() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____profile_9)); } inline OVRProfile_t50093ECE56A92AB8622A8E48DD458E8CEFE71C76 * get__profile_9() const { return ____profile_9; } inline OVRProfile_t50093ECE56A92AB8622A8E48DD458E8CEFE71C76 ** get_address_of__profile_9() { return &____profile_9; } inline void set__profile_9(OVRProfile_t50093ECE56A92AB8622A8E48DD458E8CEFE71C76 * value) { ____profile_9 = value; Il2CppCodeGenWriteBarrier((void**)(&____profile_9), (void*)value); } inline static int32_t get_offset_of_HMDAcquired_12() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___HMDAcquired_12)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_HMDAcquired_12() const { return ___HMDAcquired_12; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_HMDAcquired_12() { return &___HMDAcquired_12; } inline void set_HMDAcquired_12(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___HMDAcquired_12 = value; Il2CppCodeGenWriteBarrier((void**)(&___HMDAcquired_12), (void*)value); } inline static int32_t get_offset_of_HMDLost_13() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___HMDLost_13)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_HMDLost_13() const { return ___HMDLost_13; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_HMDLost_13() { return &___HMDLost_13; } inline void set_HMDLost_13(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___HMDLost_13 = value; Il2CppCodeGenWriteBarrier((void**)(&___HMDLost_13), (void*)value); } inline static int32_t get_offset_of_HMDMounted_14() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___HMDMounted_14)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_HMDMounted_14() const { return ___HMDMounted_14; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_HMDMounted_14() { return &___HMDMounted_14; } inline void set_HMDMounted_14(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___HMDMounted_14 = value; Il2CppCodeGenWriteBarrier((void**)(&___HMDMounted_14), (void*)value); } inline static int32_t get_offset_of_HMDUnmounted_15() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___HMDUnmounted_15)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_HMDUnmounted_15() const { return ___HMDUnmounted_15; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_HMDUnmounted_15() { return &___HMDUnmounted_15; } inline void set_HMDUnmounted_15(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___HMDUnmounted_15 = value; Il2CppCodeGenWriteBarrier((void**)(&___HMDUnmounted_15), (void*)value); } inline static int32_t get_offset_of_VrFocusAcquired_16() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___VrFocusAcquired_16)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_VrFocusAcquired_16() const { return ___VrFocusAcquired_16; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_VrFocusAcquired_16() { return &___VrFocusAcquired_16; } inline void set_VrFocusAcquired_16(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___VrFocusAcquired_16 = value; Il2CppCodeGenWriteBarrier((void**)(&___VrFocusAcquired_16), (void*)value); } inline static int32_t get_offset_of_VrFocusLost_17() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___VrFocusLost_17)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_VrFocusLost_17() const { return ___VrFocusLost_17; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_VrFocusLost_17() { return &___VrFocusLost_17; } inline void set_VrFocusLost_17(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___VrFocusLost_17 = value; Il2CppCodeGenWriteBarrier((void**)(&___VrFocusLost_17), (void*)value); } inline static int32_t get_offset_of_InputFocusAcquired_18() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___InputFocusAcquired_18)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_InputFocusAcquired_18() const { return ___InputFocusAcquired_18; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_InputFocusAcquired_18() { return &___InputFocusAcquired_18; } inline void set_InputFocusAcquired_18(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___InputFocusAcquired_18 = value; Il2CppCodeGenWriteBarrier((void**)(&___InputFocusAcquired_18), (void*)value); } inline static int32_t get_offset_of_InputFocusLost_19() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___InputFocusLost_19)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_InputFocusLost_19() const { return ___InputFocusLost_19; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_InputFocusLost_19() { return &___InputFocusLost_19; } inline void set_InputFocusLost_19(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___InputFocusLost_19 = value; Il2CppCodeGenWriteBarrier((void**)(&___InputFocusLost_19), (void*)value); } inline static int32_t get_offset_of_AudioOutChanged_20() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___AudioOutChanged_20)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_AudioOutChanged_20() const { return ___AudioOutChanged_20; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_AudioOutChanged_20() { return &___AudioOutChanged_20; } inline void set_AudioOutChanged_20(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___AudioOutChanged_20 = value; Il2CppCodeGenWriteBarrier((void**)(&___AudioOutChanged_20), (void*)value); } inline static int32_t get_offset_of_AudioInChanged_21() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___AudioInChanged_21)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_AudioInChanged_21() const { return ___AudioInChanged_21; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_AudioInChanged_21() { return &___AudioInChanged_21; } inline void set_AudioInChanged_21(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___AudioInChanged_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___AudioInChanged_21), (void*)value); } inline static int32_t get_offset_of_TrackingAcquired_22() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___TrackingAcquired_22)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_TrackingAcquired_22() const { return ___TrackingAcquired_22; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_TrackingAcquired_22() { return &___TrackingAcquired_22; } inline void set_TrackingAcquired_22(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___TrackingAcquired_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrackingAcquired_22), (void*)value); } inline static int32_t get_offset_of_TrackingLost_23() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___TrackingLost_23)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_TrackingLost_23() const { return ___TrackingLost_23; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_TrackingLost_23() { return &___TrackingLost_23; } inline void set_TrackingLost_23(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___TrackingLost_23 = value; Il2CppCodeGenWriteBarrier((void**)(&___TrackingLost_23), (void*)value); } inline static int32_t get_offset_of_DisplayRefreshRateChanged_24() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___DisplayRefreshRateChanged_24)); } inline Action_2_tBA82D2430D3596594262E1ACAD640A8EEB5DB2F2 * get_DisplayRefreshRateChanged_24() const { return ___DisplayRefreshRateChanged_24; } inline Action_2_tBA82D2430D3596594262E1ACAD640A8EEB5DB2F2 ** get_address_of_DisplayRefreshRateChanged_24() { return &___DisplayRefreshRateChanged_24; } inline void set_DisplayRefreshRateChanged_24(Action_2_tBA82D2430D3596594262E1ACAD640A8EEB5DB2F2 * value) { ___DisplayRefreshRateChanged_24 = value; Il2CppCodeGenWriteBarrier((void**)(&___DisplayRefreshRateChanged_24), (void*)value); } inline static int32_t get_offset_of_SpatialEntitySetComponentEnabled_25() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___SpatialEntitySetComponentEnabled_25)); } inline Action_4_t0B9EF883AC063A1E200FE9EB95FC8C272CB243D8 * get_SpatialEntitySetComponentEnabled_25() const { return ___SpatialEntitySetComponentEnabled_25; } inline Action_4_t0B9EF883AC063A1E200FE9EB95FC8C272CB243D8 ** get_address_of_SpatialEntitySetComponentEnabled_25() { return &___SpatialEntitySetComponentEnabled_25; } inline void set_SpatialEntitySetComponentEnabled_25(Action_4_t0B9EF883AC063A1E200FE9EB95FC8C272CB243D8 * value) { ___SpatialEntitySetComponentEnabled_25 = value; Il2CppCodeGenWriteBarrier((void**)(&___SpatialEntitySetComponentEnabled_25), (void*)value); } inline static int32_t get_offset_of_SpatialEntityQueryResults_26() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___SpatialEntityQueryResults_26)); } inline Action_3_t3758EBDA081B24412ED63A3941C20EBC3E5CFCB0 * get_SpatialEntityQueryResults_26() const { return ___SpatialEntityQueryResults_26; } inline Action_3_t3758EBDA081B24412ED63A3941C20EBC3E5CFCB0 ** get_address_of_SpatialEntityQueryResults_26() { return &___SpatialEntityQueryResults_26; } inline void set_SpatialEntityQueryResults_26(Action_3_t3758EBDA081B24412ED63A3941C20EBC3E5CFCB0 * value) { ___SpatialEntityQueryResults_26 = value; Il2CppCodeGenWriteBarrier((void**)(&___SpatialEntityQueryResults_26), (void*)value); } inline static int32_t get_offset_of_SpatialEntityQueryComplete_27() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___SpatialEntityQueryComplete_27)); } inline Action_3_t1898E42A573C06F569B73238FC1A38625F7D9021 * get_SpatialEntityQueryComplete_27() const { return ___SpatialEntityQueryComplete_27; } inline Action_3_t1898E42A573C06F569B73238FC1A38625F7D9021 ** get_address_of_SpatialEntityQueryComplete_27() { return &___SpatialEntityQueryComplete_27; } inline void set_SpatialEntityQueryComplete_27(Action_3_t1898E42A573C06F569B73238FC1A38625F7D9021 * value) { ___SpatialEntityQueryComplete_27 = value; Il2CppCodeGenWriteBarrier((void**)(&___SpatialEntityQueryComplete_27), (void*)value); } inline static int32_t get_offset_of_SpatialEntityStorageSave_28() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___SpatialEntityStorageSave_28)); } inline Action_4_tC40012D9691E5DE5C97D2E1EF4FE6A87C8C0FC3E * get_SpatialEntityStorageSave_28() const { return ___SpatialEntityStorageSave_28; } inline Action_4_tC40012D9691E5DE5C97D2E1EF4FE6A87C8C0FC3E ** get_address_of_SpatialEntityStorageSave_28() { return &___SpatialEntityStorageSave_28; } inline void set_SpatialEntityStorageSave_28(Action_4_tC40012D9691E5DE5C97D2E1EF4FE6A87C8C0FC3E * value) { ___SpatialEntityStorageSave_28 = value; Il2CppCodeGenWriteBarrier((void**)(&___SpatialEntityStorageSave_28), (void*)value); } inline static int32_t get_offset_of_SpatialEntityStorageErase_29() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___SpatialEntityStorageErase_29)); } inline Action_4_t9E12995424CAFA0450021E48FF6FE4ABF2A895EE * get_SpatialEntityStorageErase_29() const { return ___SpatialEntityStorageErase_29; } inline Action_4_t9E12995424CAFA0450021E48FF6FE4ABF2A895EE ** get_address_of_SpatialEntityStorageErase_29() { return &___SpatialEntityStorageErase_29; } inline void set_SpatialEntityStorageErase_29(Action_4_t9E12995424CAFA0450021E48FF6FE4ABF2A895EE * value) { ___SpatialEntityStorageErase_29 = value; Il2CppCodeGenWriteBarrier((void**)(&___SpatialEntityStorageErase_29), (void*)value); } inline static int32_t get_offset_of_HSWDismissed_30() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___HSWDismissed_30)); } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * get_HSWDismissed_30() const { return ___HSWDismissed_30; } inline Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 ** get_address_of_HSWDismissed_30() { return &___HSWDismissed_30; } inline void set_HSWDismissed_30(Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * value) { ___HSWDismissed_30 = value; Il2CppCodeGenWriteBarrier((void**)(&___HSWDismissed_30), (void*)value); } inline static int32_t get_offset_of__isHmdPresentCached_31() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____isHmdPresentCached_31)); } inline bool get__isHmdPresentCached_31() const { return ____isHmdPresentCached_31; } inline bool* get_address_of__isHmdPresentCached_31() { return &____isHmdPresentCached_31; } inline void set__isHmdPresentCached_31(bool value) { ____isHmdPresentCached_31 = value; } inline static int32_t get_offset_of__isHmdPresent_32() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____isHmdPresent_32)); } inline bool get__isHmdPresent_32() const { return ____isHmdPresent_32; } inline bool* get_address_of__isHmdPresent_32() { return &____isHmdPresent_32; } inline void set__isHmdPresent_32(bool value) { ____isHmdPresent_32 = value; } inline static int32_t get_offset_of__wasHmdPresent_33() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____wasHmdPresent_33)); } inline bool get__wasHmdPresent_33() const { return ____wasHmdPresent_33; } inline bool* get_address_of__wasHmdPresent_33() { return &____wasHmdPresent_33; } inline void set__wasHmdPresent_33(bool value) { ____wasHmdPresent_33 = value; } inline static int32_t get_offset_of__hasVrFocusCached_34() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____hasVrFocusCached_34)); } inline bool get__hasVrFocusCached_34() const { return ____hasVrFocusCached_34; } inline bool* get_address_of__hasVrFocusCached_34() { return &____hasVrFocusCached_34; } inline void set__hasVrFocusCached_34(bool value) { ____hasVrFocusCached_34 = value; } inline static int32_t get_offset_of__hasVrFocus_35() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____hasVrFocus_35)); } inline bool get__hasVrFocus_35() const { return ____hasVrFocus_35; } inline bool* get_address_of__hasVrFocus_35() { return &____hasVrFocus_35; } inline void set__hasVrFocus_35(bool value) { ____hasVrFocus_35 = value; } inline static int32_t get_offset_of__hadVrFocus_36() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____hadVrFocus_36)); } inline bool get__hadVrFocus_36() const { return ____hadVrFocus_36; } inline bool* get_address_of__hadVrFocus_36() { return &____hadVrFocus_36; } inline void set__hadVrFocus_36(bool value) { ____hadVrFocus_36 = value; } inline static int32_t get_offset_of__hadInputFocus_37() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____hadInputFocus_37)); } inline bool get__hadInputFocus_37() const { return ____hadInputFocus_37; } inline bool* get_address_of__hadInputFocus_37() { return &____hadInputFocus_37; } inline void set__hadInputFocus_37(bool value) { ____hadInputFocus_37 = value; } inline static int32_t get_offset_of_OCULUS_UNITY_NAME_STR_76() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___OCULUS_UNITY_NAME_STR_76)); } inline String_t* get_OCULUS_UNITY_NAME_STR_76() const { return ___OCULUS_UNITY_NAME_STR_76; } inline String_t** get_address_of_OCULUS_UNITY_NAME_STR_76() { return &___OCULUS_UNITY_NAME_STR_76; } inline void set_OCULUS_UNITY_NAME_STR_76(String_t* value) { ___OCULUS_UNITY_NAME_STR_76 = value; Il2CppCodeGenWriteBarrier((void**)(&___OCULUS_UNITY_NAME_STR_76), (void*)value); } inline static int32_t get_offset_of_OPENVR_UNITY_NAME_STR_77() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___OPENVR_UNITY_NAME_STR_77)); } inline String_t* get_OPENVR_UNITY_NAME_STR_77() const { return ___OPENVR_UNITY_NAME_STR_77; } inline String_t** get_address_of_OPENVR_UNITY_NAME_STR_77() { return &___OPENVR_UNITY_NAME_STR_77; } inline void set_OPENVR_UNITY_NAME_STR_77(String_t* value) { ___OPENVR_UNITY_NAME_STR_77 = value; Il2CppCodeGenWriteBarrier((void**)(&___OPENVR_UNITY_NAME_STR_77), (void*)value); } inline static int32_t get_offset_of_loadedXRDevice_78() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___loadedXRDevice_78)); } inline int32_t get_loadedXRDevice_78() const { return ___loadedXRDevice_78; } inline int32_t* get_address_of_loadedXRDevice_78() { return &___loadedXRDevice_78; } inline void set_loadedXRDevice_78(int32_t value) { ___loadedXRDevice_78 = value; } inline static int32_t get_offset_of_OpenVRTouchRotationOffsetEulerLeft_79() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___OpenVRTouchRotationOffsetEulerLeft_79)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_OpenVRTouchRotationOffsetEulerLeft_79() const { return ___OpenVRTouchRotationOffsetEulerLeft_79; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_OpenVRTouchRotationOffsetEulerLeft_79() { return &___OpenVRTouchRotationOffsetEulerLeft_79; } inline void set_OpenVRTouchRotationOffsetEulerLeft_79(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___OpenVRTouchRotationOffsetEulerLeft_79 = value; } inline static int32_t get_offset_of_OpenVRTouchRotationOffsetEulerRight_80() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___OpenVRTouchRotationOffsetEulerRight_80)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_OpenVRTouchRotationOffsetEulerRight_80() const { return ___OpenVRTouchRotationOffsetEulerRight_80; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_OpenVRTouchRotationOffsetEulerRight_80() { return &___OpenVRTouchRotationOffsetEulerRight_80; } inline void set_OpenVRTouchRotationOffsetEulerRight_80(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___OpenVRTouchRotationOffsetEulerRight_80 = value; } inline static int32_t get_offset_of_OpenVRTouchPositionOffsetLeft_81() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___OpenVRTouchPositionOffsetLeft_81)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_OpenVRTouchPositionOffsetLeft_81() const { return ___OpenVRTouchPositionOffsetLeft_81; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_OpenVRTouchPositionOffsetLeft_81() { return &___OpenVRTouchPositionOffsetLeft_81; } inline void set_OpenVRTouchPositionOffsetLeft_81(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___OpenVRTouchPositionOffsetLeft_81 = value; } inline static int32_t get_offset_of_OpenVRTouchPositionOffsetRight_82() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___OpenVRTouchPositionOffsetRight_82)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_OpenVRTouchPositionOffsetRight_82() const { return ___OpenVRTouchPositionOffsetRight_82; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_OpenVRTouchPositionOffsetRight_82() { return &___OpenVRTouchPositionOffsetRight_82; } inline void set_OpenVRTouchPositionOffsetRight_82(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___OpenVRTouchPositionOffsetRight_82 = value; } inline static int32_t get_offset_of_m_SpaceWarpEnabled_83() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___m_SpaceWarpEnabled_83)); } inline bool get_m_SpaceWarpEnabled_83() const { return ___m_SpaceWarpEnabled_83; } inline bool* get_address_of_m_SpaceWarpEnabled_83() { return &___m_SpaceWarpEnabled_83; } inline void set_m_SpaceWarpEnabled_83(bool value) { ___m_SpaceWarpEnabled_83 = value; } inline static int32_t get_offset_of_m_AppSpaceTransform_84() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___m_AppSpaceTransform_84)); } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * get_m_AppSpaceTransform_84() const { return ___m_AppSpaceTransform_84; } inline Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 ** get_address_of_m_AppSpaceTransform_84() { return &___m_AppSpaceTransform_84; } inline void set_m_AppSpaceTransform_84(Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * value) { ___m_AppSpaceTransform_84 = value; Il2CppCodeGenWriteBarrier((void**)(&___m_AppSpaceTransform_84), (void*)value); } inline static int32_t get_offset_of_m_CachedDepthTextureMode_85() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___m_CachedDepthTextureMode_85)); } inline int32_t get_m_CachedDepthTextureMode_85() const { return ___m_CachedDepthTextureMode_85; } inline int32_t* get_address_of_m_CachedDepthTextureMode_85() { return &___m_CachedDepthTextureMode_85; } inline void set_m_CachedDepthTextureMode_85(int32_t value) { ___m_CachedDepthTextureMode_85 = value; } inline static int32_t get_offset_of__isUserPresentCached_95() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____isUserPresentCached_95)); } inline bool get__isUserPresentCached_95() const { return ____isUserPresentCached_95; } inline bool* get_address_of__isUserPresentCached_95() { return &____isUserPresentCached_95; } inline void set__isUserPresentCached_95(bool value) { ____isUserPresentCached_95 = value; } inline static int32_t get_offset_of__isUserPresent_96() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____isUserPresent_96)); } inline bool get__isUserPresent_96() const { return ____isUserPresent_96; } inline bool* get_address_of__isUserPresent_96() { return &____isUserPresent_96; } inline void set__isUserPresent_96(bool value) { ____isUserPresent_96 = value; } inline static int32_t get_offset_of__wasUserPresent_97() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____wasUserPresent_97)); } inline bool get__wasUserPresent_97() const { return ____wasUserPresent_97; } inline bool* get_address_of__wasUserPresent_97() { return &____wasUserPresent_97; } inline void set__wasUserPresent_97(bool value) { ____wasUserPresent_97 = value; } inline static int32_t get_offset_of_prevAudioOutIdIsCached_98() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___prevAudioOutIdIsCached_98)); } inline bool get_prevAudioOutIdIsCached_98() const { return ___prevAudioOutIdIsCached_98; } inline bool* get_address_of_prevAudioOutIdIsCached_98() { return &___prevAudioOutIdIsCached_98; } inline void set_prevAudioOutIdIsCached_98(bool value) { ___prevAudioOutIdIsCached_98 = value; } inline static int32_t get_offset_of_prevAudioInIdIsCached_99() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___prevAudioInIdIsCached_99)); } inline bool get_prevAudioInIdIsCached_99() const { return ___prevAudioInIdIsCached_99; } inline bool* get_address_of_prevAudioInIdIsCached_99() { return &___prevAudioInIdIsCached_99; } inline void set_prevAudioInIdIsCached_99(bool value) { ___prevAudioInIdIsCached_99 = value; } inline static int32_t get_offset_of_prevAudioOutId_100() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___prevAudioOutId_100)); } inline String_t* get_prevAudioOutId_100() const { return ___prevAudioOutId_100; } inline String_t** get_address_of_prevAudioOutId_100() { return &___prevAudioOutId_100; } inline void set_prevAudioOutId_100(String_t* value) { ___prevAudioOutId_100 = value; Il2CppCodeGenWriteBarrier((void**)(&___prevAudioOutId_100), (void*)value); } inline static int32_t get_offset_of_prevAudioInId_101() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___prevAudioInId_101)); } inline String_t* get_prevAudioInId_101() const { return ___prevAudioInId_101; } inline String_t** get_address_of_prevAudioInId_101() { return &___prevAudioInId_101; } inline void set_prevAudioInId_101(String_t* value) { ___prevAudioInId_101 = value; Il2CppCodeGenWriteBarrier((void**)(&___prevAudioInId_101), (void*)value); } inline static int32_t get_offset_of_wasPositionTracked_102() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___wasPositionTracked_102)); } inline bool get_wasPositionTracked_102() const { return ___wasPositionTracked_102; } inline bool* get_address_of_wasPositionTracked_102() { return &___wasPositionTracked_102; } inline void set_wasPositionTracked_102(bool value) { ___wasPositionTracked_102 = value; } inline static int32_t get_offset_of_eventDataBuffer_103() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___eventDataBuffer_103)); } inline EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9 get_eventDataBuffer_103() const { return ___eventDataBuffer_103; } inline EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9 * get_address_of_eventDataBuffer_103() { return &___eventDataBuffer_103; } inline void set_eventDataBuffer_103(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9 value) { ___eventDataBuffer_103 = value; Il2CppCodeGenWriteBarrier((void**)&(((&___eventDataBuffer_103))->___EventData_1), (void*)NULL); } inline static int32_t get_offset_of_UnityAlphaOrBetaVersionWarningMessage_104() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___UnityAlphaOrBetaVersionWarningMessage_104)); } inline String_t* get_UnityAlphaOrBetaVersionWarningMessage_104() const { return ___UnityAlphaOrBetaVersionWarningMessage_104; } inline String_t** get_address_of_UnityAlphaOrBetaVersionWarningMessage_104() { return &___UnityAlphaOrBetaVersionWarningMessage_104; } inline void set_UnityAlphaOrBetaVersionWarningMessage_104(String_t* value) { ___UnityAlphaOrBetaVersionWarningMessage_104 = value; Il2CppCodeGenWriteBarrier((void**)(&___UnityAlphaOrBetaVersionWarningMessage_104), (void*)value); } inline static int32_t get_offset_of_OVRManagerinitialized_105() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___OVRManagerinitialized_105)); } inline bool get_OVRManagerinitialized_105() const { return ___OVRManagerinitialized_105; } inline bool* get_address_of_OVRManagerinitialized_105() { return &___OVRManagerinitialized_105; } inline void set_OVRManagerinitialized_105(bool value) { ___OVRManagerinitialized_105 = value; } inline static int32_t get_offset_of_s_displaySubsystems_106() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___s_displaySubsystems_106)); } inline List_1_t56455D217921470E52E7D33A1794256E31084DD8 * get_s_displaySubsystems_106() const { return ___s_displaySubsystems_106; } inline List_1_t56455D217921470E52E7D33A1794256E31084DD8 ** get_address_of_s_displaySubsystems_106() { return &___s_displaySubsystems_106; } inline void set_s_displaySubsystems_106(List_1_t56455D217921470E52E7D33A1794256E31084DD8 * value) { ___s_displaySubsystems_106 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_displaySubsystems_106), (void*)value); } inline static int32_t get_offset_of_s_displaySubsystemDescriptors_107() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___s_displaySubsystemDescriptors_107)); } inline List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 * get_s_displaySubsystemDescriptors_107() const { return ___s_displaySubsystemDescriptors_107; } inline List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 ** get_address_of_s_displaySubsystemDescriptors_107() { return &___s_displaySubsystemDescriptors_107; } inline void set_s_displaySubsystemDescriptors_107(List_1_t1BC024192EE6F54EADD3239A60DB2A4A0B4B5048 * value) { ___s_displaySubsystemDescriptors_107 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_displaySubsystemDescriptors_107), (void*)value); } inline static int32_t get_offset_of_s_inputSubsystems_108() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___s_inputSubsystems_108)); } inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * get_s_inputSubsystems_108() const { return ___s_inputSubsystems_108; } inline List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 ** get_address_of_s_inputSubsystems_108() { return &___s_inputSubsystems_108; } inline void set_s_inputSubsystems_108(List_1_t39579540B4BF5D674E4CAA282D3CEA957BCB90D4 * value) { ___s_inputSubsystems_108 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_inputSubsystems_108), (void*)value); } inline static int32_t get_offset_of_multipleMainCameraWarningPresented_109() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___multipleMainCameraWarningPresented_109)); } inline bool get_multipleMainCameraWarningPresented_109() const { return ___multipleMainCameraWarningPresented_109; } inline bool* get_address_of_multipleMainCameraWarningPresented_109() { return &___multipleMainCameraWarningPresented_109; } inline void set_multipleMainCameraWarningPresented_109(bool value) { ___multipleMainCameraWarningPresented_109 = value; } inline static int32_t get_offset_of_lastFoundMainCamera_110() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___lastFoundMainCamera_110)); } inline WeakReference_1_t31103BF0AB213236F697B644B27B7480DEF79D5E * get_lastFoundMainCamera_110() const { return ___lastFoundMainCamera_110; } inline WeakReference_1_t31103BF0AB213236F697B644B27B7480DEF79D5E ** get_address_of_lastFoundMainCamera_110() { return &___lastFoundMainCamera_110; } inline void set_lastFoundMainCamera_110(WeakReference_1_t31103BF0AB213236F697B644B27B7480DEF79D5E * value) { ___lastFoundMainCamera_110 = value; Il2CppCodeGenWriteBarrier((void**)(&___lastFoundMainCamera_110), (void*)value); } inline static int32_t get_offset_of_staticMixedRealityCaptureInitialized_111() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___staticMixedRealityCaptureInitialized_111)); } inline bool get_staticMixedRealityCaptureInitialized_111() const { return ___staticMixedRealityCaptureInitialized_111; } inline bool* get_address_of_staticMixedRealityCaptureInitialized_111() { return &___staticMixedRealityCaptureInitialized_111; } inline void set_staticMixedRealityCaptureInitialized_111(bool value) { ___staticMixedRealityCaptureInitialized_111 = value; } inline static int32_t get_offset_of_staticPrevEnableMixedRealityCapture_112() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___staticPrevEnableMixedRealityCapture_112)); } inline bool get_staticPrevEnableMixedRealityCapture_112() const { return ___staticPrevEnableMixedRealityCapture_112; } inline bool* get_address_of_staticPrevEnableMixedRealityCapture_112() { return &___staticPrevEnableMixedRealityCapture_112; } inline void set_staticPrevEnableMixedRealityCapture_112(bool value) { ___staticPrevEnableMixedRealityCapture_112 = value; } inline static int32_t get_offset_of_staticMrcSettings_113() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___staticMrcSettings_113)); } inline OVRMixedRealityCaptureSettings_t83BE3A431BD6F52C2F2E6EE7A73394AE7DC99F8D * get_staticMrcSettings_113() const { return ___staticMrcSettings_113; } inline OVRMixedRealityCaptureSettings_t83BE3A431BD6F52C2F2E6EE7A73394AE7DC99F8D ** get_address_of_staticMrcSettings_113() { return &___staticMrcSettings_113; } inline void set_staticMrcSettings_113(OVRMixedRealityCaptureSettings_t83BE3A431BD6F52C2F2E6EE7A73394AE7DC99F8D * value) { ___staticMrcSettings_113 = value; Il2CppCodeGenWriteBarrier((void**)(&___staticMrcSettings_113), (void*)value); } inline static int32_t get_offset_of_suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ___suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114)); } inline bool get_suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114() const { return ___suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114; } inline bool* get_address_of_suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114() { return &___suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114; } inline void set_suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114(bool value) { ___suppressDisableMixedRealityBecauseOfNoMainCameraWarning_114 = value; } inline static int32_t get_offset_of__passthroughInitializationState_115() { return static_cast(offsetof(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields, ____passthroughInitializationState_115)); } inline int32_t get__passthroughInitializationState_115() const { return ____passthroughInitializationState_115; } inline int32_t* get_address_of__passthroughInitializationState_115() { return &____passthroughInitializationState_115; } inline void set__passthroughInitializationState_115(int32_t value) { ____passthroughInitializationState_115 = value; } }; // OVRManager // OVROverlay struct OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_StaticFields { public: // OVROverlay[] OVROverlay::instances OVROverlayU5BU5D_t47CED282C83A22FEF097666B7182AB0538A6B2D0* ___instances_37; // UnityEngine.Material OVROverlay::tex2DMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___tex2DMaterial_39; // UnityEngine.Material OVROverlay::cubeMaterial Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___cubeMaterial_40; public: inline static int32_t get_offset_of_instances_37() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_StaticFields, ___instances_37)); } inline OVROverlayU5BU5D_t47CED282C83A22FEF097666B7182AB0538A6B2D0* get_instances_37() const { return ___instances_37; } inline OVROverlayU5BU5D_t47CED282C83A22FEF097666B7182AB0538A6B2D0** get_address_of_instances_37() { return &___instances_37; } inline void set_instances_37(OVROverlayU5BU5D_t47CED282C83A22FEF097666B7182AB0538A6B2D0* value) { ___instances_37 = value; Il2CppCodeGenWriteBarrier((void**)(&___instances_37), (void*)value); } inline static int32_t get_offset_of_tex2DMaterial_39() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_StaticFields, ___tex2DMaterial_39)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_tex2DMaterial_39() const { return ___tex2DMaterial_39; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_tex2DMaterial_39() { return &___tex2DMaterial_39; } inline void set_tex2DMaterial_39(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___tex2DMaterial_39 = value; Il2CppCodeGenWriteBarrier((void**)(&___tex2DMaterial_39), (void*)value); } inline static int32_t get_offset_of_cubeMaterial_40() { return static_cast(offsetof(OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_StaticFields, ___cubeMaterial_40)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_cubeMaterial_40() const { return ___cubeMaterial_40; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_cubeMaterial_40() { return &___cubeMaterial_40; } inline void set_cubeMaterial_40(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___cubeMaterial_40 = value; Il2CppCodeGenWriteBarrier((void**)(&___cubeMaterial_40), (void*)value); } }; // OVROverlay // OVRPassthroughLayer struct OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB_StaticFields { public: // UnityEngine.Gradient OVRPassthroughLayer::colorMapNeutralGradient Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * ___colorMapNeutralGradient_33; public: inline static int32_t get_offset_of_colorMapNeutralGradient_33() { return static_cast(offsetof(OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB_StaticFields, ___colorMapNeutralGradient_33)); } inline Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * get_colorMapNeutralGradient_33() const { return ___colorMapNeutralGradient_33; } inline Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 ** get_address_of_colorMapNeutralGradient_33() { return &___colorMapNeutralGradient_33; } inline void set_colorMapNeutralGradient_33(Gradient_t297BAC6722F67728862AE2FBE760A400DA8902F2 * value) { ___colorMapNeutralGradient_33 = value; Il2CppCodeGenWriteBarrier((void**)(&___colorMapNeutralGradient_33), (void*)value); } }; // OVRPassthroughLayer // OVRRuntimeController struct OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0_StaticFields { public: // System.String OVRRuntimeController::leftControllerModelPath String_t* ___leftControllerModelPath_7; // System.String OVRRuntimeController::rightControllerModelPath String_t* ___rightControllerModelPath_8; public: inline static int32_t get_offset_of_leftControllerModelPath_7() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0_StaticFields, ___leftControllerModelPath_7)); } inline String_t* get_leftControllerModelPath_7() const { return ___leftControllerModelPath_7; } inline String_t** get_address_of_leftControllerModelPath_7() { return &___leftControllerModelPath_7; } inline void set_leftControllerModelPath_7(String_t* value) { ___leftControllerModelPath_7 = value; Il2CppCodeGenWriteBarrier((void**)(&___leftControllerModelPath_7), (void*)value); } inline static int32_t get_offset_of_rightControllerModelPath_8() { return static_cast(offsetof(OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0_StaticFields, ___rightControllerModelPath_8)); } inline String_t* get_rightControllerModelPath_8() const { return ___rightControllerModelPath_8; } inline String_t** get_address_of_rightControllerModelPath_8() { return &___rightControllerModelPath_8; } inline void set_rightControllerModelPath_8(String_t* value) { ___rightControllerModelPath_8 = value; Il2CppCodeGenWriteBarrier((void**)(&___rightControllerModelPath_8), (void*)value); } }; // OVRRuntimeController // OVRSceneLoader // OVRSceneLoader // OVRScreenFade struct OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308_StaticFields { public: // OVRScreenFade OVRScreenFade::k__BackingField OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * ___U3CinstanceU3Ek__BackingField_4; public: inline static int32_t get_offset_of_U3CinstanceU3Ek__BackingField_4() { return static_cast(offsetof(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308_StaticFields, ___U3CinstanceU3Ek__BackingField_4)); } inline OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * get_U3CinstanceU3Ek__BackingField_4() const { return ___U3CinstanceU3Ek__BackingField_4; } inline OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 ** get_address_of_U3CinstanceU3Ek__BackingField_4() { return &___U3CinstanceU3Ek__BackingField_4; } inline void set_U3CinstanceU3Ek__BackingField_4(OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * value) { ___U3CinstanceU3Ek__BackingField_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___U3CinstanceU3Ek__BackingField_4), (void*)value); } }; // OVRScreenFade // OVRSkeletonRenderer struct OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3_StaticFields { public: // UnityEngine.Quaternion OVRSkeletonRenderer::_capsuleRotationOffset Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ____capsuleRotationOffset_20; public: inline static int32_t get_offset_of__capsuleRotationOffset_20() { return static_cast(offsetof(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3_StaticFields, ____capsuleRotationOffset_20)); } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 get__capsuleRotationOffset_20() const { return ____capsuleRotationOffset_20; } inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 * get_address_of__capsuleRotationOffset_20() { return &____capsuleRotationOffset_20; } inline void set__capsuleRotationOffset_20(Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 value) { ____capsuleRotationOffset_20 = value; } }; // OVRSkeletonRenderer // OVRTrackedKeyboard struct OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields { public: // System.Single OVRTrackedKeyboard::underlayScaleMultX_ float ___underlayScaleMultX__4; // System.Single OVRTrackedKeyboard::underlayScaleConstY_ float ___underlayScaleConstY__5; // System.Single OVRTrackedKeyboard::underlayScaleMultZ_ float ___underlayScaleMultZ__6; // UnityEngine.Vector3 OVRTrackedKeyboard::underlayOffset_ Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___underlayOffset__7; // System.Single OVRTrackedKeyboard::boundingBoxAboveKeyboardY_ float ___boundingBoxAboveKeyboardY__8; public: inline static int32_t get_offset_of_underlayScaleMultX__4() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields, ___underlayScaleMultX__4)); } inline float get_underlayScaleMultX__4() const { return ___underlayScaleMultX__4; } inline float* get_address_of_underlayScaleMultX__4() { return &___underlayScaleMultX__4; } inline void set_underlayScaleMultX__4(float value) { ___underlayScaleMultX__4 = value; } inline static int32_t get_offset_of_underlayScaleConstY__5() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields, ___underlayScaleConstY__5)); } inline float get_underlayScaleConstY__5() const { return ___underlayScaleConstY__5; } inline float* get_address_of_underlayScaleConstY__5() { return &___underlayScaleConstY__5; } inline void set_underlayScaleConstY__5(float value) { ___underlayScaleConstY__5 = value; } inline static int32_t get_offset_of_underlayScaleMultZ__6() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields, ___underlayScaleMultZ__6)); } inline float get_underlayScaleMultZ__6() const { return ___underlayScaleMultZ__6; } inline float* get_address_of_underlayScaleMultZ__6() { return &___underlayScaleMultZ__6; } inline void set_underlayScaleMultZ__6(float value) { ___underlayScaleMultZ__6 = value; } inline static int32_t get_offset_of_underlayOffset__7() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields, ___underlayOffset__7)); } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E get_underlayOffset__7() const { return ___underlayOffset__7; } inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * get_address_of_underlayOffset__7() { return &___underlayOffset__7; } inline void set_underlayOffset__7(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E value) { ___underlayOffset__7 = value; } inline static int32_t get_offset_of_boundingBoxAboveKeyboardY__8() { return static_cast(offsetof(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields, ___boundingBoxAboveKeyboardY__8)); } inline float get_boundingBoxAboveKeyboardY__8() const { return ___boundingBoxAboveKeyboardY__8; } inline float* get_address_of_boundingBoxAboveKeyboardY__8() { return &___boundingBoxAboveKeyboardY__8; } inline void set_boundingBoxAboveKeyboardY__8(float value) { ___boundingBoxAboveKeyboardY__8 = value; } }; // OVRTrackedKeyboard // System.Net.Sockets.SocketException // System.Net.Sockets.SocketException // UnityEngine.EventSystems.UIBehaviour // UnityEngine.EventSystems.UIBehaviour // OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer struct OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_StaticFields { public: // OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::singleton OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * ___singleton_4; public: inline static int32_t get_offset_of_singleton_4() { return static_cast(offsetof(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_StaticFields, ___singleton_4)); } inline OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * get_singleton_4() const { return ___singleton_4; } inline OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 ** get_address_of_singleton_4() { return &___singleton_4; } inline void set_singleton_4(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * value) { ___singleton_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___singleton_4), (void*)value); } }; // OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer // UnityEngine.UI.Graphic struct Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields { public: // UnityEngine.Material UnityEngine.UI.Graphic::s_DefaultUI Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___s_DefaultUI_4; // UnityEngine.Texture2D UnityEngine.UI.Graphic::s_WhiteTexture Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * ___s_WhiteTexture_5; // UnityEngine.Mesh UnityEngine.UI.Graphic::s_Mesh Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * ___s_Mesh_21; // UnityEngine.UI.VertexHelper UnityEngine.UI.Graphic::s_VertexHelper VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * ___s_VertexHelper_22; public: inline static int32_t get_offset_of_s_DefaultUI_4() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_DefaultUI_4)); } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE * get_s_DefaultUI_4() const { return ___s_DefaultUI_4; } inline Material_t8927C00353A72755313F046D0CE85178AE8218EE ** get_address_of_s_DefaultUI_4() { return &___s_DefaultUI_4; } inline void set_s_DefaultUI_4(Material_t8927C00353A72755313F046D0CE85178AE8218EE * value) { ___s_DefaultUI_4 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_DefaultUI_4), (void*)value); } inline static int32_t get_offset_of_s_WhiteTexture_5() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_WhiteTexture_5)); } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * get_s_WhiteTexture_5() const { return ___s_WhiteTexture_5; } inline Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF ** get_address_of_s_WhiteTexture_5() { return &___s_WhiteTexture_5; } inline void set_s_WhiteTexture_5(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * value) { ___s_WhiteTexture_5 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_WhiteTexture_5), (void*)value); } inline static int32_t get_offset_of_s_Mesh_21() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_Mesh_21)); } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * get_s_Mesh_21() const { return ___s_Mesh_21; } inline Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 ** get_address_of_s_Mesh_21() { return &___s_Mesh_21; } inline void set_s_Mesh_21(Mesh_t2F5992DBA650D5862B43D3823ACD997132A57DA6 * value) { ___s_Mesh_21 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_Mesh_21), (void*)value); } inline static int32_t get_offset_of_s_VertexHelper_22() { return static_cast(offsetof(Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24_StaticFields, ___s_VertexHelper_22)); } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * get_s_VertexHelper_22() const { return ___s_VertexHelper_22; } inline VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 ** get_address_of_s_VertexHelper_22() { return &___s_VertexHelper_22; } inline void set_s_VertexHelper_22(VertexHelper_tDE8B67D3B076061C4F8DF325B0D63ED2E5367E55 * value) { ___s_VertexHelper_22 = value; Il2CppCodeGenWriteBarrier((void**)(&___s_VertexHelper_22), (void*)value); } }; // UnityEngine.UI.Graphic #ifdef __clang__ #pragma clang diagnostic pop #endif // OVRHaptics/OVRHapticsOutput[] struct OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D : public RuntimeArray { public: ALIGN_FIELD (8) OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * m_Items[1]; public: inline OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D ** 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, OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Byte[] struct ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726 : public RuntimeArray { public: ALIGN_FIELD (8) uint8_t m_Items[1]; public: inline uint8_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline uint8_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, uint8_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline uint8_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline uint8_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, uint8_t value) { m_Items[index] = value; } }; // OVRInput/OpenVRControllerDetails[] struct OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8 : public RuntimeArray { public: ALIGN_FIELD (8) OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 m_Items[1]; public: inline OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 * 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, OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, OpenVRControllerDetails_t9774FA7129BBA566B6C6859F47D4C1253D9268C5 value) { m_Items[index] = value; } }; // System.Delegate[] struct DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8 : public RuntimeArray { public: ALIGN_FIELD (8) Delegate_t * m_Items[1]; public: inline Delegate_t * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Delegate_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, Delegate_t * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Delegate_t * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Delegate_t ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Delegate_t * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.Object[] struct ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE : public RuntimeArray { public: ALIGN_FIELD (8) RuntimeObject * m_Items[1]; public: 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.Byte[][] struct ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D : public RuntimeArray { public: ALIGN_FIELD (8) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* m_Items[1]; public: inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** 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, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // UnityEngine.Texture[] struct TextureU5BU5D_t9DBF348F22539052ACB9387E8BB14A3AF2701150 : public RuntimeArray { public: ALIGN_FIELD (8) Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * m_Items[1]; public: inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** 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, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE ** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Texture_t9FE0218A1EEDF266E8C85879FE123265CACC95AE * value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // System.IntPtr[] struct IntPtrU5BU5D_t27FC72B0409D75AAF33EC42498E8094E95FEE9A6 : public RuntimeArray { public: ALIGN_FIELD (8) intptr_t m_Items[1]; public: inline intptr_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline intptr_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, intptr_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline intptr_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline intptr_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, intptr_t value) { m_Items[index] = value; } }; // OVRPlugin/AppPerfFrameStats[] struct AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A : public RuntimeArray { public: ALIGN_FIELD (8) AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 m_Items[1]; public: inline AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 * 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, AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, AppPerfFrameStats_t33D029BA9852F5CD168A9F102939289421234D88 value) { m_Items[index] = value; } }; // OVRPlugin/Vector3f[] struct Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1 : public RuntimeArray { public: ALIGN_FIELD (8) Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 m_Items[1]; public: inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * 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, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 value) { m_Items[index] = value; } }; // OVRPlugin/Quatf[] struct QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5 : public RuntimeArray { public: ALIGN_FIELD (8) Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D m_Items[1]; public: inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * 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, Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D value) { m_Items[index] = value; } }; // System.Single[] struct SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA : public RuntimeArray { public: ALIGN_FIELD (8) float m_Items[1]; public: inline float GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline float* GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, float value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline float GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline float* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, float value) { m_Items[index] = value; } }; // OVRPlugin/TrackingConfidence[] struct TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: 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; } }; // OVRPlugin/Fovf[] struct FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D : public RuntimeArray { public: ALIGN_FIELD (8) Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF m_Items[1]; public: inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF * 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, Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF value) { m_Items[index] = value; } }; // OVRPlugin/Rectf[] struct RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F : public RuntimeArray { public: ALIGN_FIELD (8) Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 m_Items[1]; public: inline Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 * 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, Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Rectf_t2A1D0CD8A28CA6615FCCE4770967597CB38B30A3 value) { m_Items[index] = value; } }; // System.String[] struct StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A : public RuntimeArray { public: ALIGN_FIELD (8) String_t* m_Items[1]; public: inline String_t* GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline String_t** GetAddressAt(il2cpp_array_size_t index) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items + index; } inline void SetAt(il2cpp_array_size_t index, String_t* value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } inline String_t* GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline String_t** GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, String_t* value) { m_Items[index] = value; Il2CppCodeGenWriteBarrier((void**)m_Items + index, (void*)value); } }; // OVRPlugin/Recti[] struct RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00 : public RuntimeArray { public: ALIGN_FIELD (8) Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B m_Items[1]; public: inline Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B * 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, Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Recti_tD2C1BEA713181405D159AB1EA59B80178F7F3F9B value) { m_Items[index] = value; } }; // UnityEngine.Color32[] struct Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2 : public RuntimeArray { public: ALIGN_FIELD (8) Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D m_Items[1]; public: inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * 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, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Color32_tDB54A78627878A7D2DE42BB028D64306A18E858D value) { m_Items[index] = value; } }; // System.Int16[] struct Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD : public RuntimeArray { public: ALIGN_FIELD (8) int16_t m_Items[1]; public: inline int16_t GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline int16_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, int16_t value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline int16_t GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline int16_t* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, int16_t value) { m_Items[index] = value; } }; // OVRPlugin/Vector2f[] struct Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81 : public RuntimeArray { public: ALIGN_FIELD (8) Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 m_Items[1]; public: inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * 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, Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 value) { m_Items[index] = value; } }; // OVRPlugin/Vector4s[] struct Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4 : public RuntimeArray { public: ALIGN_FIELD (8) Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 m_Items[1]; public: inline Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 * 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, Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 value) { m_Items[index] = value; } }; // OVRPlugin/Vector4f[] struct Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4 : public RuntimeArray { public: ALIGN_FIELD (8) Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE m_Items[1]; public: inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE * 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, Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE value) { m_Items[index] = value; } }; // System.Char[] struct CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34 : public RuntimeArray { public: ALIGN_FIELD (8) Il2CppChar m_Items[1]; public: inline Il2CppChar GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Il2CppChar* 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, Il2CppChar value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Il2CppChar GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Il2CppChar* GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Il2CppChar value) { m_Items[index] = value; } }; // OVRPlugin/SpatialEntityComponentType[] struct SpatialEntityComponentTypeU5BU5D_t36EC2C947308D99EFA43208D6523D0E43A270BA8 : public RuntimeArray { public: ALIGN_FIELD (8) int32_t m_Items[1]; public: 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; } }; // OVRPlugin/Bone[] struct BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981 : public RuntimeArray { public: ALIGN_FIELD (8) Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 m_Items[1]; public: inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * 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, Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, Bone_tFB367C47EBF89DA78C7AA2A09C8D24427723B500 value) { m_Items[index] = value; } }; // OVRPlugin/BoneCapsule[] struct BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295 : public RuntimeArray { public: ALIGN_FIELD (8) BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 m_Items[1]; public: inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * 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, BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, BoneCapsule_t482B1E40C3A6FD1C90BAF5B3A24719B196071B07 value) { m_Items[index] = value; } }; // OVRPlugin/SpatialEntityUuid[] struct SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093 : public RuntimeArray { public: ALIGN_FIELD (8) SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 m_Items[1]; public: inline SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 GetAt(il2cpp_array_size_t index) const { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); return m_Items[index]; } inline SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 * 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, SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 value) { IL2CPP_ARRAY_BOUNDS_CHECK(index, (uint32_t)(this)->max_length); m_Items[index] = value; } inline SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 GetAtUnchecked(il2cpp_array_size_t index) const { return m_Items[index]; } inline SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 * GetAddressAtUnchecked(il2cpp_array_size_t index) { return m_Items + index; } inline void SetAtUnchecked(il2cpp_array_size_t index, SpatialEntityUuid_tA19AAB8C1F10B9E48669D6191686B30F350BD8B1 value) { m_Items[index] = value; } }; IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke(const LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780& unmarshaled, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_back(const LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke& marshaled, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780& unmarshaled); IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_cleanup(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke(const Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099& unmarshaled, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke_back(const Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke& marshaled, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099& unmarshaled); IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke_cleanup(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke(const EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9& unmarshaled, EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke_back(const EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke& marshaled, EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9& unmarshaled); IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke_cleanup(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke(const SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722& unmarshaled, SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke_back(const SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke& marshaled, SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722& unmarshaled); IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke_cleanup(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke(const RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43& unmarshaled, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke_back(const RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke& marshaled, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43& unmarshaled); IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke_cleanup(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke(const KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E& unmarshaled, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke_back(const KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke& marshaled, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E& unmarshaled); IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke_cleanup(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke(const BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470& unmarshaled, BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke_back(const BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke& marshaled, BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470& unmarshaled); IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke_cleanup(BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke(const AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5& unmarshaled, AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke_back(const AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke& marshaled, AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5& unmarshaled); IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke_cleanup(AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke_back(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke& marshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled); IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke_cleanup(SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke& marshaled); IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com& marshaled); IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com_back(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com& marshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled); IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com_cleanup(SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com& marshaled); // System.Void System.Collections.Generic.List`1::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_RemoveAt_m66148860899ECCAE9B323372032BFC1C255393D2_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, RuntimeObject * ___item0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::set_Item(System.Int32,!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void List_1_set_Item_m73674D291C1D6030C21A39003E4743D110ACC6A2_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, RuntimeObject * ___value1, const RuntimeMethod* method); // System.Int32 System.Runtime.InteropServices.Marshal::SizeOf(!!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395_gshared (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB ___structure0, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.Marshal::StructureToPtr(!!0,System.IntPtr,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_StructureToPtr_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mF11EB121DE2E6AC7E77A32E4FC71DDF87F3FB15A_gshared (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB ___structure0, intptr_t ___ptr1, bool ___fDeleteOld2, const RuntimeMethod* method); // System.Void System.Action`4::Invoke(!0,!1,!2,!3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_4_Invoke_mC9BEA5DB6CE342489B6EB3EF160E293E206449B0_gshared (Action_4_t7BBA57B6362983DFBF3E6DDFD0FCB65D9D4E511A * __this, int32_t ___arg10, RuntimeObject * ___arg21, int32_t ___arg32, int32_t ___arg43, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method); // !0 System.Collections.Generic.List`1/Enumerator::get_Current() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::AddComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_AddComponent_TisRuntimeObject_mBDBD6EC58A4409E35E4C5D08757C36E4938256B1_gshared (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_gshared_inline (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * __this, const RuntimeMethod* method); // !0 System.Nullable`1::GetValueOrDefault() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_gshared_inline (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method); // !0 System.Nullable`1::GetValueOrDefault() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Object::FindObjectOfType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Object_FindObjectOfType_TisRuntimeObject_m7137356547ADC5089A381F0EC5E9280576983E2E_gshared (const RuntimeMethod* method); // System.Void System.Action`1::Invoke(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_1_Invoke_mDE80C4E19F1DA60EC4FB7F2A5FDDE660C50C4D0B_gshared (Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * __this, TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A ___obj0, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_gshared_inline (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method); // System.Void System.Nullable`1::.ctor(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830_gshared (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // !0 System.Nullable`1::GetValueOrDefault() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_gshared_inline (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_gshared_inline (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * __this, const RuntimeMethod* method); // System.Void System.Nullable`1::.ctor(!0) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D_gshared (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method); // !0 System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8_gshared (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * __this, const RuntimeMethod* method); // !0 System.Nullable`1::get_Value() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B_gshared (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method); // System.Void System.Object::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405 (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean OVRControllerTest/BoolMonitor/BoolGenerator::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BoolGenerator_Invoke_m67D99381DC0F336EE27A19EBAD957A9612B1C0D1 (BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 * __this, const RuntimeMethod* method); // System.Single UnityEngine.Time::get_deltaTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_deltaTime_mF558623BBB4EE65C8810243B05ED204A9E8D6FD1 (const RuntimeMethod* method); // System.Text.StringBuilder System.Text.StringBuilder::Append(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR StringBuilder_t * StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1 (StringBuilder_t * __this, String_t* ___value0, const RuntimeMethod* method); // System.Void OVRGLTFLoader::TranscodeTexture(OVRTextureData&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRGLTFLoader_TranscodeTexture_m2B4162943662DC3A6214F74EC4C82D2896475B96 (OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01 * __this, OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 * ___textureData0, const RuntimeMethod* method); // System.Void OVRHandTest/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF834BC38CCEABB6F77EFF191E0DC719E7FAFDDB8 (U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * __this, const RuntimeMethod* method); // System.Boolean OVRInput::Get(OVRInput/Button,OVRInput/Controller) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRInput_Get_m0C7655F5F5118ADD5F3B5BDE2E9741E654329E91 (int32_t ___virtualMask0, int32_t ___controllerMask1, const RuntimeMethod* method); // OVRInput/Controller OVRInput::GetConnectedControllers() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OVRInput_GetConnectedControllers_mE69D0392FF67E9784E5116130E895E57E8C81FD1_inline (const RuntimeMethod* method); // System.Boolean System.String::op_Inequality(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE (String_t* ___a0, String_t* ___b1, const RuntimeMethod* method); // System.Boolean OVRHandTest/BoolMonitor/BoolGenerator::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool BoolGenerator_Invoke_m718F1A0DF19B4A491CD4A5B837D1796BB10AA2E1 (BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * __this, const RuntimeMethod* method); // System.Void OVRHaptics/Config::Load() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_Load_mA326CFD0A599CBBAB58D50CDFC38BB08DCD8A903 (const RuntimeMethod* method); // OVRPlugin/HapticsDesc OVRPlugin::GetControllerHapticsDesc(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 OVRPlugin_GetControllerHapticsDesc_mA533D6189012DF98C9BAC0168AEE6829308BC9ED (uint32_t ___controllerMask0, const RuntimeMethod* method); // System.Void OVRHaptics/Config::set_SampleRateHz(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_SampleRateHz_m48E7FC722F2D42F5D46AD48199E7D773317250B4_inline (int32_t ___value0, const RuntimeMethod* method); // System.Void OVRHaptics/Config::set_SampleSizeInBytes(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_SampleSizeInBytes_mCCC67F96D962BF8D0E61CAEC128C784A53D3E907_inline (int32_t ___value0, const RuntimeMethod* method); // System.Void OVRHaptics/Config::set_MinimumSafeSamplesQueued(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_MinimumSafeSamplesQueued_m2EADCEE20E46F8C2B355824A12AD22507A38EF4E_inline (int32_t ___value0, const RuntimeMethod* method); // System.Void OVRHaptics/Config::set_MinimumBufferSamplesCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_MinimumBufferSamplesCount_m44166FE4957A9B042D3AD3BEB89AFF0EFD852BAD_inline (int32_t ___value0, const RuntimeMethod* method); // System.Void OVRHaptics/Config::set_OptimalBufferSamplesCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_OptimalBufferSamplesCount_m149557E874B4853790BE300488395114EC1E77F9_inline (int32_t ___value0, const RuntimeMethod* method); // System.Void OVRHaptics/Config::set_MaximumBufferSamplesCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_MaximumBufferSamplesCount_mC7FFDDE148F49BE1B1AA6DC5647799EAE485D16D_inline (int32_t ___value0, const RuntimeMethod* method); // System.Void OVRHaptics/OVRHapticsOutput::Preempt(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Preempt_m2F790F50FBAB2B2F852E3E410927F75F02086702 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method); // System.Void OVRHaptics/OVRHapticsOutput::Queue(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Queue_m202AFDA6E8CA0B6B469B4ED95713D9558C73E948 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method); // System.Void OVRHaptics/OVRHapticsOutput::Mix(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Mix_mA21886B0DFDA23241E9678573FC654F436541748 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method); // System.Void OVRHaptics/OVRHapticsOutput::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Clear_mF162BD80B90B60DCF9057953F423526190D9AF41 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_m6C3621F4A8BFF62170632AEEA2475A91D4F43E9F (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * __this, const RuntimeMethod* method) { (( void (*) (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Int32 OVRHaptics/Config::get_MaximumBufferSamplesCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_MaximumBufferSamplesCount_mCF860AA8971C6A238861BB6BC29C4F7B75E106D7_inline (const RuntimeMethod* method); // System.Int32 OVRHaptics/Config::get_SampleSizeInBytes() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline (const RuntimeMethod* method); // System.Void OVRNativeBuffer::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNativeBuffer__ctor_m304817998F6259A4ADDFEB1C9EC47549380E9360 (OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * __this, int32_t ___numBytes0, const RuntimeMethod* method); // System.Void OVRHapticsClip::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsClip__ctor_m8A2E322192FE9E73FA3B59331729BA49C920F964 (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * __this, const RuntimeMethod* method); // OVRPlugin/HapticsState OVRPlugin::GetControllerHapticsState(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 OVRPlugin_GetControllerHapticsState_m4DB3B633B168BC802675F2468FBE3CF250BB417B (uint32_t ___controllerMask0, const RuntimeMethod* method); // System.Single UnityEngine.Time::get_realtimeSinceStartup() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_realtimeSinceStartup_mA52B7B2C92FF893E5EAB8264B017E7464792BB36 (const RuntimeMethod* method); // System.Int32 OVRHaptics/Config::get_SampleRateHz() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_SampleRateHz_m45E819F80B37F4AC7C331CD39034A8D7D4C5EAD7_inline (const RuntimeMethod* method); // System.Int32 OVRHaptics/Config::get_OptimalBufferSamplesCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_OptimalBufferSamplesCount_m51A44D4296DCE12443B1681CC4D957B36D7601DB_inline (const RuntimeMethod* method); // System.Int32 OVRHaptics/Config::get_MinimumSafeSamplesQueued() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_MinimumSafeSamplesQueued_mCEBAF0B38B5AD27F8DD0DB8C3AA530548387C8C1_inline (const RuntimeMethod* method); // !0 System.Collections.Generic.List`1::get_Item(System.Int32) inline ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * __this, int32_t ___index0, const RuntimeMethod* method) { return (( ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * (*) (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *, int32_t, const RuntimeMethod*))List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline)(__this, ___index0, method); } // OVRHapticsClip OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker::get_Clip() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ClipPlaybackTracker_get_Clip_m406D857D7C0335FF2F7A3A08B48B5A113E20B274_inline (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * __this, const RuntimeMethod* method); // System.Int32 OVRHapticsClip::get_Count() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * __this, const RuntimeMethod* method); // System.Int32 OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker::get_ReadCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * __this, const RuntimeMethod* method); // System.Byte[] OVRHapticsClip::get_Samples() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * __this, const RuntimeMethod* method); // System.IntPtr OVRNativeBuffer::GetPointer(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRNativeBuffer_GetPointer_m61A123341F7B0B70D30E66E6E94EEE7C8142603E (OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * __this, int32_t ___byteOffset0, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.Marshal::Copy(System.Byte[],System.Int32,System.IntPtr,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_Copy_mBDE4BE8D48B38EEB9AC3CFFD818A3E6B08E55731 (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___source0, int32_t ___startIndex1, intptr_t ___destination2, int32_t ___length3, const RuntimeMethod* method); // System.Void OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker::set_ReadCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ClipPlaybackTracker_set_ReadCount_mE3F84455BAF5189B02E436401E30EAF6CD65364B_inline (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * __this, int32_t ___value0, const RuntimeMethod* method); // System.Int32 System.Collections.Generic.List`1::get_Count() inline int32_t List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_inline (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * __this, const RuntimeMethod* method) { return (( int32_t (*) (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *, const RuntimeMethod*))List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline)(__this, method); } // System.Void System.Collections.Generic.List`1::RemoveAt(System.Int32) inline void List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * __this, int32_t ___index0, const RuntimeMethod* method) { (( void (*) (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *, int32_t, const RuntimeMethod*))List_1_RemoveAt_m66148860899ECCAE9B323372032BFC1C255393D2_gshared)(__this, ___index0, method); } // System.Int32 OVRHaptics/Config::get_MinimumBufferSamplesCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_MinimumBufferSamplesCount_mE72E1FD6B3B23880513288DD0CB5F0A448AF351A_inline (const RuntimeMethod* method); // System.Boolean OVRPlugin::SetControllerHaptics(System.UInt32,OVRPlugin/HapticsBuffer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRPlugin_SetControllerHaptics_m3191D4466EE0D5159EDAF702F013999F48FDBF67 (uint32_t ___controllerMask0, HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E ___hapticsBuffer1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26 (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * __this, const RuntimeMethod* method) { (( void (*) (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Void OVRHaptics/OVRHapticsOutput/ClipPlaybackTracker::.ctor(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ClipPlaybackTracker__ctor_mE57DE22074C766069FA6C1195D7EBCDE155929CE (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * __this, ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *, ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Void OVRHapticsClip::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsClip__ctor_m112EF39CD867BEBED5A3822A1C4B0EADCB513F93 (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * __this, int32_t ___capacity0, const RuntimeMethod* method); // System.Int32 UnityEngine.Mathf::Clamp(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Mathf_Clamp_m3899EEB9D73D22E0C4524189E89D36A647581CBF (int32_t ___value0, int32_t ___min1, int32_t ___max2, const RuntimeMethod* method); // System.Void OVRHapticsClip::WriteSample(System.Byte) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsClip_WriteSample_m300FC0B99105F3C5523D70CA034EFB113EFBCC5C (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * __this, uint8_t ___sample0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::set_Item(System.Int32,!0) inline void List_1_set_Item_mACD06DBFD3A91D4C8DE94D7A7313CC6E6C8C08B0 (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * __this, int32_t ___index0, ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * ___value1, const RuntimeMethod* method) { (( void (*) (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *, int32_t, ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D *, const RuntimeMethod*))List_1_set_Item_m73674D291C1D6030C21A39003E4743D110ACC6A2_gshared)(__this, ___index0, ___value1, method); } // System.Void OVRInput/OVRControllerBase/VirtualButtonMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VirtualButtonMap__ctor_mD2FD033ED69F27398D12C01C47317241B48E0006 (VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * __this, const RuntimeMethod* method); // System.Void OVRInput/OVRControllerBase/VirtualTouchMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VirtualTouchMap__ctor_m288C62F96DD0B6F590A27AD83E7C4A6CEC388D0E (VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * __this, const RuntimeMethod* method); // System.Void OVRInput/OVRControllerBase/VirtualNearTouchMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VirtualNearTouchMap__ctor_mF951560C3DF593A5FA466C71A7FD77995BC02340 (VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * __this, const RuntimeMethod* method); // System.Void OVRInput/OVRControllerBase/VirtualAxis1DMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VirtualAxis1DMap__ctor_mEA1355C317D9E2FF4E7A54049A814BB30AAC9167 (VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * __this, const RuntimeMethod* method); // System.Void OVRInput/OVRControllerBase/VirtualAxis2DMap::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void VirtualAxis2DMap__ctor_m74DC8FC6F437ACF1552D0E39FFC8E878EB6C076E (VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * __this, const RuntimeMethod* method); // OVRPlugin/ControllerState4 OVRInput/OVRControllerBase::GetOpenVRControllerState(OVRInput/Controller) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE OVRControllerBase_GetOpenVRControllerState_mEE32CED95BCFBEC3D6C4A5F8FE009302ECFDC186 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, int32_t ___controllerType0, const RuntimeMethod* method); // OVRPlugin/ControllerState4 OVRPlugin::GetControllerState4(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE OVRPlugin_GetControllerState4_m9D3C99832FE4B36E667A344C63C42207C31337E3 (uint32_t ___controllerMask0, const RuntimeMethod* method); // System.Boolean OVRInput::IsValidOpenVRDevice(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRInput_IsValidOpenVRDevice_m241D1B7CD98C3980B1941C99179F7429955EFE01 (uint32_t ___deviceId0, const RuntimeMethod* method); // System.Boolean OVRPlugin::SetControllerVibration(System.UInt32,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRPlugin_SetControllerVibration_m1B589BBAF237D5D6E4908E412AFFFF0D8996FFB3 (uint32_t ___controllerMask0, float ___frequency1, float ___amplitude2, const RuntimeMethod* method); // OVRInput/RawButton OVRInput/OVRControllerBase/VirtualButtonMap::ToRawMask(OVRInput/Button) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VirtualButtonMap_ToRawMask_mDEF2E797F7D47483D31697FEE3B43E6D205EE2D0 (VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * __this, int32_t ___virtualMask0, const RuntimeMethod* method); // OVRInput/RawTouch OVRInput/OVRControllerBase/VirtualTouchMap::ToRawMask(OVRInput/Touch) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VirtualTouchMap_ToRawMask_mF6F830B6BEC4CD53E8AA8B84D1830A6B6EC9F549 (VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * __this, int32_t ___virtualMask0, const RuntimeMethod* method); // OVRInput/RawNearTouch OVRInput/OVRControllerBase/VirtualNearTouchMap::ToRawMask(OVRInput/NearTouch) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VirtualNearTouchMap_ToRawMask_m168F054C599B6990144CF9598741D1F34873FCE8 (VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * __this, int32_t ___virtualMask0, const RuntimeMethod* method); // OVRInput/RawAxis1D OVRInput/OVRControllerBase/VirtualAxis1DMap::ToRawMask(OVRInput/Axis1D) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VirtualAxis1DMap_ToRawMask_m202A46824FA96CF074B9EA8D052D1953FC967DD2 (VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * __this, int32_t ___virtualMask0, const RuntimeMethod* method); // OVRInput/RawAxis2D OVRInput/OVRControllerBase/VirtualAxis2DMap::ToRawMask(OVRInput/Axis2D) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t VirtualAxis2DMap_ToRawMask_m7D2C3FA3DE3856777FFCE288A676C40B0CECAB2B (VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * __this, int32_t ___virtualMask0, const RuntimeMethod* method); // System.Void OVRInput/OVRControllerBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, const RuntimeMethod* method); // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_Initialize_m972F89BE1BF50BD7A9612F67E65B837DA1EF9707 (const RuntimeMethod* method); // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_Destroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_Destroy_mA46B2E3FC624E3CF00689EBA4F8A097327BAAF3B (const RuntimeMethod* method); // System.Void System.Object::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A (RuntimeObject * __this, const RuntimeMethod* method); // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_Update_m67EB7DDC892432009D12537499AA2EDDB6ABD6FE (const RuntimeMethod* method); // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_GetButton(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5 (int32_t ___button0, const RuntimeMethod* method); // System.Single OVRInput/OVRControllerGamepadMac::OVR_GamepadController_GetAxis(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1 (int32_t ___axis0, const RuntimeMethod* method); // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_SetVibration(System.Int32,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_SetVibration_m418CAC0E50220C5294BD48BB75AE115A56F89C9A (int32_t ___node0, float ___strength1, float ___frequency2, const RuntimeMethod* method); // System.Void OVRManager/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8517242A7C7DB4EB40084D3534A2185EF229EAAC (U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * __this, const RuntimeMethod* method); // System.String System.Single::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Single_ToString_m80E7ABED4F4D73F2BE19DDB80D3D92FCD8DFA010 (float* __this, const RuntimeMethod* method); // System.Single UnityEngine.Camera::get_depth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Camera_get_depth_m063B48665DB9226949AC3A615362EA20193B823D (Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * __this, const RuntimeMethod* method); // System.Boolean OVRMeshRenderer/MeshRendererData::get_IsDataValid() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MeshRendererData_get_IsDataValid_mB974CD2712654A42CB8CD495A72AAEDBF72C91FF_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method); // System.Void OVRMeshRenderer/MeshRendererData::set_IsDataValid(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MeshRendererData_set_IsDataValid_m6D88886E007DBD80C8C6CF14AAF49E7B78443F3B_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean OVRMeshRenderer/MeshRendererData::get_IsDataHighConfidence() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MeshRendererData_get_IsDataHighConfidence_m20ED7F4AFF6DA9839F2ED2719AAA9C5C6B26C5DE_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method); // System.Void OVRMeshRenderer/MeshRendererData::set_IsDataHighConfidence(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MeshRendererData_set_IsDataHighConfidence_m9A91DF4184CEBD074F03BECD3363998803393F8B_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean OVRMeshRenderer/MeshRendererData::get_ShouldUseSystemGestureMaterial() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MeshRendererData_get_ShouldUseSystemGestureMaterial_mC1E86564FC2CBF332C788CBE83222ABC1F6C70B7_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method); // System.Void OVRMeshRenderer/MeshRendererData::set_ShouldUseSystemGestureMaterial(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MeshRendererData_set_ShouldUseSystemGestureMaterial_m339E2B712F05A1503A8CBB40A63232D74019B4B2_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method); // System.Int32 System.Runtime.InteropServices.Marshal::SizeOf(!!0) inline int32_t Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395 (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB ___structure0, const RuntimeMethod* method) { return (( int32_t (*) (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB , const RuntimeMethod*))Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395_gshared)(___structure0, method); } // System.IntPtr System.Runtime.InteropServices.Marshal::AllocHGlobal(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Marshal_AllocHGlobal_mB339DD0B9D5778400B8CA9BA45169C9C1C14835D (int32_t ___cb0, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.Marshal::StructureToPtr(!!0,System.IntPtr,System.Boolean) inline void Marshal_StructureToPtr_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mF11EB121DE2E6AC7E77A32E4FC71DDF87F3FB15A (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB ___structure0, intptr_t ___ptr1, bool ___fDeleteOld2, const RuntimeMethod* method) { (( void (*) (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB , intptr_t, bool, const RuntimeMethod*))Marshal_StructureToPtr_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mF11EB121DE2E6AC7E77A32E4FC71DDF87F3FB15A_gshared)(___structure0, ___ptr1, ___fDeleteOld2, method); } // System.Void System.Runtime.InteropServices.Marshal::Copy(System.IntPtr,System.Byte[],System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_Copy_m5B5711DAE25F766427A60AA33208E669EACD0716 (intptr_t ___source0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___destination1, int32_t ___startIndex2, int32_t ___length3, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.Marshal::FreeHGlobal(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Marshal_FreeHGlobal_mC556D1077E92ACD2AC3FDEF3040B88FAC0F7F390 (intptr_t ___hglobal0, const RuntimeMethod* method); // System.Byte[] OVRNetwork/FrameHeader::ToBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* FrameHeader_ToBytes_m187B917D768BE8B47D94E45A2A565271217DB618 (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB * __this, const RuntimeMethod* method); // System.Type System.Object::GetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Type_t * Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B (RuntimeObject * __this, const RuntimeMethod* method); // System.Object System.Runtime.InteropServices.Marshal::PtrToStructure(System.IntPtr,System.Type) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * Marshal_PtrToStructure_mBB4D12265C6D3720CC85C120DB2E2E9351674AD4 (intptr_t ___ptr0, Type_t * ___structureType1, const RuntimeMethod* method); // System.Boolean System.Net.Sockets.TcpClient::get_Connected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool TcpClient_get_Connected_m6F6E0D5E8CDF2D56756C34960B53D505640F481A (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, const RuntimeMethod* method); // OVRNetwork/OVRNetworkTcpClient/ConnectionState OVRNetwork/OVRNetworkTcpClient::get_connectionState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRNetworkTcpClient_get_connectionState_m366757372009B4344852ACC63B9E7D3736C5ADB5 (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.EventWaitHandle::Set() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38 (EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C * __this, const RuntimeMethod* method); // System.Void System.Net.Sockets.TcpClient::.ctor(System.Net.Sockets.AddressFamily) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient__ctor_m67703F980AF859B47D938D2739C0E3D244659339 (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, int32_t ___family0, const RuntimeMethod* method); // System.Void System.AsyncCallback::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05 (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method); // System.IAsyncResult System.Net.Sockets.TcpClient::BeginConnect(System.String,System.Int32,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TcpClient_BeginConnect_mAF5D929DCA6FFD78BC0DE6E0F448B5F911CD8303 (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, String_t* ___host0, int32_t ___port1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___requestCallback2, RuntimeObject * ___state3, const RuntimeMethod* method); // System.Void System.Action::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Action_Invoke_m3FFA5BE3D64F0FF8E1E1CB6F953913FADB5EB89E (Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarning(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0 (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Void System.Net.Sockets.TcpClient::EndConnect(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_EndConnect_m8A878839804034D19DA751A6FC9C11736017782D (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogFormat(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogFormat_m72BF100F3CFE21832B462EDDA71CF0FE28C0D093 (String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogWarningFormat(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7 (String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void UnityEngine.Debug::Log(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A (RuntimeObject * ___message0, const RuntimeMethod* method); // System.Net.Sockets.NetworkStream System.Net.Sockets.TcpClient::GetStream() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, const RuntimeMethod* method); // System.Void System.Net.Sockets.TcpClient::Close() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpClient_Close_mCF4B20FF3721D82A8C9F8136E5CB1F4C68AFD5B3 (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A (String_t* ___str00, String_t* ___str11, const RuntimeMethod* method); // System.Void OVRNetwork/OVRNetworkTcpClient::Disconnect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpClient_Disconnect_m00B3B6A7FAF7405BAC4CBC295D3B1E4A3D9E3A62 (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, const RuntimeMethod* method); // System.Boolean System.Threading.EventWaitHandle::Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool EventWaitHandle_Reset_m535429D7CC172C0B95EB8B7B9126B3F3761E2D30 (EventWaitHandle_t80CDEB33529EF7549E7D3E3B689D8272B9F37F3C * __this, const RuntimeMethod* method); // OVRNetwork/FrameHeader OVRNetwork/FrameHeader::FromBytes(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB FrameHeader_FromBytes_m4CF2BE66DA84EF6A222625016FC95FE1B81A226F (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___arr0, const RuntimeMethod* method); // System.Void System.Action`4::Invoke(!0,!1,!2,!3) inline void Action_4_Invoke_m5C5575295FC53B71D731787F105081E0A41546F6 (Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A * __this, int32_t ___arg10, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___arg21, int32_t ___arg32, int32_t ___arg43, const RuntimeMethod* method) { (( void (*) (Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A *, int32_t, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, const RuntimeMethod*))Action_4_Invoke_mC9BEA5DB6CE342489B6EB3EF160E293E206449B0_gshared)(__this, ___arg10, ___arg21, ___arg32, ___arg43, method); } // System.Void System.Array::Copy(System.Array,System.Int32,System.Array,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_Copy_m7EF35EEE2A8E2DC040222146974ADA2C3DACC229 (RuntimeArray * ___sourceArray0, int32_t ___sourceIndex1, RuntimeArray * ___destinationArray2, int32_t ___destinationIndex3, int32_t ___length4, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogErrorFormat(System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogErrorFormat_m92BE92B1C1EDD4B66E5D3CF9ED6480D7D3FFA0E9 (String_t* ___format0, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args1, const RuntimeMethod* method); // System.Void System.Threading.ManualResetEvent::.ctor(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ManualResetEvent__ctor_mF80BD5B0955BDA8CD514F48EBFF48698E5D03850 (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * __this, bool ___initialState0, const RuntimeMethod* method); // System.Void System.Net.Sockets.TcpListener::.ctor(System.Net.IPAddress,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpListener__ctor_mD4633F7821C1F6412EFE88DB42F8A6C7E1A914F0 (TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * __this, IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * ___localaddr0, int32_t ___port1, const RuntimeMethod* method); // System.Void System.Net.Sockets.TcpListener::Start() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpListener_Start_m95F4F504E8BF63D90E857AF6C794AC25EF971C68 (TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * __this, const RuntimeMethod* method); // System.Net.EndPoint System.Net.Sockets.TcpListener::get_LocalEndpoint() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * TcpListener_get_LocalEndpoint_m570747366FE29F08F5764B88245C0239634A74A3 (TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * __this, const RuntimeMethod* method); // System.IAsyncResult System.Net.Sockets.TcpListener::BeginAcceptTcpClient(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* TcpListener_BeginAcceptTcpClient_mD026EBFD9527C042FAA26B9E6F04518B9763DE5F (TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___state1, const RuntimeMethod* method); // System.Void System.Threading.Monitor::Enter(System.Object,System.Boolean&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD (RuntimeObject * ___obj0, bool* ___lockTaken1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m80B8BBE459F9190E7AD8CD8E79E9713784B6664D (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * __this, const RuntimeMethod* method) { (( void (*) (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Void System.Threading.Monitor::Exit(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1 (RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Void System.Net.Sockets.TcpListener::Stop() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TcpListener_Stop_m113CEAB447C6BCDBCF91CEF94DCA602E4530C033 (TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * __this, const RuntimeMethod* method); // System.Net.Sockets.TcpClient System.Net.Sockets.TcpListener::EndAcceptTcpClient(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * TcpListener_EndAcceptTcpClient_m8CC22D3ACD902963F3F754628567A4EB8CF68785 (TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * __this, RuntimeObject* ___asyncResult0, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::Add(!0) inline void List_1_Add_mF1161F60869367A62BE942BA993283E5CC883D74 (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * __this, TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * ___item0, const RuntimeMethod* method) { (( void (*) (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF *, TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE *, const RuntimeMethod*))List_1_Add_mE5B3CBB3A625606D9BC4337FEAAF1D66BCB6F96E_gshared)(__this, ___item0, method); } // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756 (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * __this, const RuntimeMethod* method) { return (( Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A (*) (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_inline (Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A * __this, const RuntimeMethod* method) { return (( TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * (*) (Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83 (Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294 (Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void System.Array::CopyTo(System.Array,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Array_CopyTo_m6AF950973942E09BAB1F21B055BBD2CD58C980B2 (RuntimeArray * __this, RuntimeArray * ___array0, int32_t ___index1, const RuntimeMethod* method); // System.Void System.Collections.Generic.List`1::.ctor() inline void List_1__ctor_mA4C146613E9FC96772F1A41CE5AB7BE3C95DFED9 (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * __this, const RuntimeMethod* method) { (( void (*) (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF *, const RuntimeMethod*))List_1__ctor_m0F0E00088CF56FEACC9E32D8B7D91B93D91DAA3B_gshared)(__this, method); } // System.Boolean UnityEngine.Object::op_Equality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // System.Void UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4D54D236D5618565FCA068F63B2ED56EEDD1D5D5 (U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * __this, const RuntimeMethod* method); // System.Single UnityEngine.RaycastHit::get_distance() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float RaycastHit_get_distance_m85FCA98D7957C3BF1D449CA1B48C116CCD6226FA (RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 * __this, const RuntimeMethod* method); // System.Int32 System.Single::CompareTo(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Single_CompareTo_m80B5B5A70A2343C3A8673F35635EBED4458109B4 (float* __this, float ___value0, const RuntimeMethod* method); // System.Void OVRPlugin/ControllerState2::.ctor(OVRPlugin/ControllerState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ControllerState2__ctor_m5655787B8789EC447DB216CA3CA406CAF899574A (ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C * __this, ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 ___cs0, const RuntimeMethod* method); // System.Void OVRPlugin/ControllerState4::.ctor(OVRPlugin/ControllerState2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ControllerState4__ctor_m99FE133E3BF2C62B323B0153F0D325941FD1CAC2 (ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * __this, ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C ___cs0, const RuntimeMethod* method); // OVRPlugin/XrApi OVRPlugin::get_nativeXrApi() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218 (const RuntimeMethod* method); // System.Version OVRPlugin::get_version() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC (const RuntimeMethod* method); // System.Boolean System.Version::op_GreaterThanOrEqual(System.Version,System.Version) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v10, Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * ___v21, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxLoadFromMemory(System.IntPtr&,System.UInt32,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxLoadFromMemory_mB1CB3239B3490B29B49F5DFBCAE3B6EDAF046020 (intptr_t* ___data0, uint32_t ___length1, intptr_t* ___texture2, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTextureWidth(System.IntPtr,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTextureWidth_m13EF0309AEB0EBFE244E91885BE28FF1B5E9223A (intptr_t ___texture0, uint32_t* ___width1, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTextureHeight(System.IntPtr,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTextureHeight_m55A19AB9F85E5735DF54E78A93CDAF02D662D095 (intptr_t ___texture0, uint32_t* ___height1, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTranscode(System.IntPtr,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTranscode_m299E6DA0BD38D2CA76BCEFCDC721518679364569 (intptr_t ___texture0, uint32_t ___format1, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTextureSize(System.IntPtr,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTextureSize_mD7DAE763F450AA4CC9A790FF5C9B739B1E1D3F3D (intptr_t ___texture0, uint32_t* ___size1, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxGetTextureData(System.IntPtr,System.IntPtr,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxGetTextureData_mEA0666E8325E83A27AA7C92BAE58F7C5C264F24F (intptr_t ___texture0, intptr_t ___data1, uint32_t ___bufferSize2, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxDestroy(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxDestroy_m33AF3613A45A5D5812E76B3ADD0A14B7FB6C1941 (intptr_t ___texture0, const RuntimeMethod* method); // System.String System.Int32::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411 (int32_t* __this, const RuntimeMethod* method); // System.String System.String::Concat(System.String[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Concat_m27B9C3007C7DABFABCC3726B37A3BE08CB40C417 (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* ___values0, const RuntimeMethod* method); // System.String OVRPlugin/LayerDesc::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LayerDesc_ToString_m1966675D96EB5347D2A7418084B4309E19BBDE3D (LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 * __this, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_Initialize_mE698EEFC181B58047DD812670561F129213C0FD9 (const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_Shutdown() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_Shutdown_m62FBC7AB749BFC4DEBA3C09A894C585F03554B6F (const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetInitialized(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetInitialized_mB6DAF092F0AF72A62BBF04CFF18B86852E3FAE07 (int32_t* ___initialized0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_Update_m09BA36449E0FC2EA89C238DE58713267CD798CB1 (const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcActivationMode(OVRPlugin/Media/MrcActivationMode&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcActivationMode_mFD871CE1B42BE02A5B0CF5FD68681153BA21CEEC (int32_t* ___activationMode0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcActivationMode(OVRPlugin/Media/MrcActivationMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcActivationMode_m90E3BA9787F7BCD9C68F5DBFF084FD8107F90DDA (int32_t ___activationMode0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_54_0::ovrp_Media_SetPlatformInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_54_0_ovrp_Media_SetPlatformInitialized_m9DAC8E67E6B4FA340939BE5B23B7456EB02291D8 (const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_57_0::ovrp_Media_GetPlatformCameraMode(OVRPlugin/Media/PlatformCameraMode&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_57_0_ovrp_Media_GetPlatformCameraMode_m3E8CB0D24C644B03986E440794FEE8B63E494D16 (int32_t* ___platformCameraMode0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_57_0::ovrp_Media_SetPlatformCameraMode(OVRPlugin/Media/PlatformCameraMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_57_0_ovrp_Media_SetPlatformCameraMode_m9799203D81E94E953ED4858154E419969C08580C (int32_t ___platformCameraMode0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_IsMrcEnabled(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_IsMrcEnabled_m2F4C363CCBA8F01DE12102FB44FC27947C457AB1 (int32_t* ___mrcEnabled0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_IsMrcActivated(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_IsMrcActivated_mCCA9BC630B9256809896168745640CE81A42F9D4 (int32_t* ___mrcActivated0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_UseMrcDebugCamera(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_UseMrcDebugCamera_m6EE4528A77AF05CEF3C2624707AA7C0818CD00C6 (int32_t* ___useMrcDebugCamera0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcInputVideoBufferType(OVRPlugin/Media/InputVideoBufferType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcInputVideoBufferType_m10334077D066D26FFD50A656545D9C88B15CF875 (int32_t ___inputVideoBufferType0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcInputVideoBufferType(OVRPlugin/Media/InputVideoBufferType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcInputVideoBufferType_m70BA87E7BAB6B26AB479F5466F739EB3257E88E4 (int32_t* ___inputVideoBufferType0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcFrameSize(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcFrameSize_m8A0FDD45F9347A1C27A1797DD8C1003120F9C3AE (int32_t ___frameWidth0, int32_t ___frameHeight1, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcFrameSize(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcFrameSize_m916A02E29E2A4FEF3E16947918E5C70EC1560984 (int32_t* ___frameWidth0, int32_t* ___frameHeight1, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcAudioSampleRate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcAudioSampleRate_mE676A1E4C10ADF00BC95A9C88532E74F20DCF065 (int32_t ___sampleRate0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcAudioSampleRate(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcAudioSampleRate_mACB1845DE4336B93DD03F74EC80C2003D82A1918 (int32_t* ___sampleRate0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcFrameImageFlipped(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcFrameImageFlipped_mD4C62142F0D01870907CAF8AE5215C9FE5C4E7F4 (int32_t ___flipped0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcFrameImageFlipped(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcFrameImageFlipped_m753A68762974224E54E08E9A74AADFE144FFB5A1 (int32_t* ___flipped0, const RuntimeMethod* method); // System.Boolean System.IntPtr::op_Equality(System.IntPtr,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool IntPtr_op_Equality_m30958D875BACA94F48B6FF6D17B4CF5C36DACD48 (intptr_t ___value10, intptr_t ___value21, const RuntimeMethod* method); // System.Void UnityEngine.Debug::LogError(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1 (RuntimeObject * ___message0, const RuntimeMethod* method); // OVRPlugin/Media/InputVideoBufferType OVRPlugin/Media::GetMrcInputVideoBufferType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Media_GetMrcInputVideoBufferType_mAD9A9EE8B71C74A3D2B211B905A038685B10A022 (const RuntimeMethod* method); // System.Runtime.InteropServices.GCHandle System.Runtime.InteropServices.GCHandle::Alloc(System.Object,System.Runtime.InteropServices.GCHandleType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 GCHandle_Alloc_m51C5BC1D6902ADA3B9C297C1A96DB322A6403201 (RuntimeObject * ___value0, int32_t ___type1, const RuntimeMethod* method); // System.IntPtr System.Runtime.InteropServices.GCHandle::AddrOfPinnedObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t GCHandle_AddrOfPinnedObject_m0604506F2BDCD2DC8C167FBC3BF3E965888F7589 (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * __this, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_EncodeMrcFrameWithPoseTime(System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_EncodeMrcFrameWithPoseTime_mCCEBF5A19D4953B47D8FDAE9D075AA0314169F06 (intptr_t ___rawBuffer0, intptr_t ___audioDataPtr1, int32_t ___audioDataLen2, int32_t ___audioChannels3, double ___timestamp4, double ___poseTime5, int32_t* ___outSyncId6, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_EncodeMrcFrame(System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_EncodeMrcFrame_m8BA72BFC359A978F8C0496FCE0C3DE9FDA49EA19 (intptr_t ___rawBuffer0, intptr_t ___audioDataPtr1, int32_t ___audioDataLen2, int32_t ___audioChannels3, double ___timestamp4, int32_t* ___outSyncId5, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime_m98C771F41A80B6D5F9C0401B2ADF7B01D7A4EFB8 (intptr_t ___backgroundTextureHandle0, intptr_t ___foregroundTextureHandle1, intptr_t ___audioData2, int32_t ___audioDataLen3, int32_t ___audioChannels4, double ___timestamp5, double ___poseTime6, int32_t* ___outSyncId7, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_EncodeMrcFrameWithDualTextures(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_EncodeMrcFrameWithDualTextures_mAF961F524475F9D20BB52470E4FF821FB4645346 (intptr_t ___backgroundTextureHandle0, intptr_t ___foregroundTextureHandle1, intptr_t ___audioData2, int32_t ___audioDataLen3, int32_t ___audioChannels4, double ___timestamp5, int32_t* ___outSyncId6, const RuntimeMethod* method); // System.Void System.Runtime.InteropServices.GCHandle::Free() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025 (GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Texture2D::.ctor(System.Int32,System.Int32,UnityEngine.TextureFormat,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Texture2D__ctor_mF138386223A07CBD4CE94672757E39D0EF718092 (Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * __this, int32_t ___width0, int32_t ___height1, int32_t ___textureFormat2, bool ___mipChain3, const RuntimeMethod* method); // UnityEngine.RenderTexture UnityEngine.RenderTexture::get_active() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * RenderTexture_get_active_m0DF52E4F5B60DDEEA9387E51C2F463774EEF455C (const RuntimeMethod* method); // System.Void UnityEngine.RenderTexture::set_active(UnityEngine.RenderTexture) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void RenderTexture_set_active_mD8A1E34F5284EAA3BD907001AB63CB0735C16BC1 (RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Rect::.ctor(System.Single,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70 (Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 * __this, float ___x0, float ___y1, float ___width2, float ___height3, const RuntimeMethod* method); // System.Void UnityEngine.Texture2D::ReadPixels(UnityEngine.Rect,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Texture2D_ReadPixels_m4C6FE8C2798C39C20A14DAFC963C720D17F4F987 (Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * __this, Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 ___source0, int32_t ___destX1, int32_t ___destY2, const RuntimeMethod* method); // UnityEngine.Color32[] UnityEngine.Texture2D::GetPixels32(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* Texture2D_GetPixels32_mA4E2C09B4077716ECEFC0162ABEB8C3A66F623FA (Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * __this, int32_t ___miplevel0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SyncMrcFrame(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SyncMrcFrame_mF658ADE0657A8624DC12DC44B2927A09B9DE5959 (int32_t ___syncId0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_45_0::ovrp_Media_SetAvailableQueueIndexVulkan(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_45_0_ovrp_Media_SetAvailableQueueIndexVulkan_m099E2663873D587927C7880FBFA0C7FAB0283FC7 (uint32_t ___queueIndexVk0, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_SetHeadsetControllerPose(OVRPlugin/Posef,OVRPlugin/Posef,OVRPlugin/Posef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_SetHeadsetControllerPose_m1D750736F054DD57CE47A84232AA6F2E73E35906 (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___headsetPose0, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___leftControllerPose1, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___rightControllerPose2, const RuntimeMethod* method); // OVRPlugin/Result OVRPlugin/OVRP_1_66_0::ovrp_Media_IsCastingToRemoteClient(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_66_0_ovrp_Media_IsCastingToRemoteClient_m63888DE9F088701A41085FDE0BD41F0A9E5C54D5 (int32_t* ___isCasting0, const RuntimeMethod* method); // System.Void System.Version::.ctor(System.Int32,System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775 (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * __this, int32_t ___major0, int32_t ___minor1, int32_t ___build2, const RuntimeMethod* method); // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetVersion_m031181476D3DCD437BDB8B02A6A3FA99203EF8D2 (const RuntimeMethod* method); // System.String System.Runtime.InteropServices.Marshal::PtrToStringAnsi(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Marshal_PtrToStringAnsi_m8A04D9B38C53580B609A2A3179BDAA28FEC85F0E (intptr_t ___ptr0, const RuntimeMethod* method); // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetNativeSDKVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetNativeSDKVersion_m30FB184CF14ECACC30D3E7776D095B0C21D11FF4 (const RuntimeMethod* method); // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetSystemProductName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetSystemProductName_mFC0AC21023D7EAA7C7A74D47700F0CC3AD9BF442 (const RuntimeMethod* method); // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetAppLatencyTimings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetAppLatencyTimings_mDAE0B8EC9019B46B0324252728FBA9A7809A25B7 (const RuntimeMethod* method); // System.Globalization.CultureInfo System.Globalization.CultureInfo::get_InvariantCulture() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205 (const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m061EEC38D33A13CC1E98DBD6869E97A0C2989F88 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, const RuntimeMethod* method); // System.String OVRPlugin/Posef::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Posef_ToString_m46733D8DF0FBF36C0786E58AEE7C77FEB24DE8DB (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * __this, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_m2CD22B92BC86D731EC55ED4D2A970491CBFD1C51 (RuntimeObject* ___provider0, String_t* ___format1, ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* ___args2, const RuntimeMethod* method); // System.String OVRPlugin/Quatf::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Quatf_ToString_mD3C835D4A79EA0987558A0FCD07DF17FC2D34B64 (Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * __this, const RuntimeMethod* method); // System.Boolean OVRPlugin/Sizei::Equals(OVRPlugin/Sizei) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Sizei_Equals_mD961E37D930614AAF8FFB31923D89D90F0DF3F29 (Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * __this, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___other0, const RuntimeMethod* method); // System.Boolean OVRPlugin/Sizei::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Sizei_Equals_m6616958F50E44F6E86F7549DF0E8F78D5E33A627 (Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method); // System.Int32 OVRPlugin/Sizei::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sizei_GetHashCode_m3204DE2A32B24EA089660CB5EBFAD358C1642413 (Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * __this, const RuntimeMethod* method); // System.String OVRPlugin/TextureRectMatrixf::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextureRectMatrixf_ToString_mEA6CE25616CAD2E5A5B6F0691068DEEBFB39754F (TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B * __this, const RuntimeMethod* method); // System.Void UnityEngine.Vector4::.ctor(System.Single,System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector4__ctor_mCAB598A37C4D5E80282277E828B8A3EAD936D3B2 (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * __this, float ___x0, float ___y1, float ___z2, float ___w3, const RuntimeMethod* method); // System.String System.String::Format(System.IFormatProvider,System.String,System.Object,System.Object,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_Format_mA3BB834FA13052393D767E65AD6AA9F5895106B8 (RuntimeObject* ___provider0, String_t* ___format1, RuntimeObject * ___arg02, RuntimeObject * ___arg13, RuntimeObject * ___arg24, const RuntimeMethod* method); // System.String OVRPlugin/Vector3f::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector3f_ToString_m1D8C49E155478776FDD0EFF1BCB0A41E05D444C4 (Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * __this, const RuntimeMethod* method); // System.String OVRPlugin/Vector4f::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector4f_ToString_m85A463B933FEDB4D3C34CB0CD123F38C4553C8A1 (Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE * __this, const RuntimeMethod* method); // System.String OVRPlugin/Vector4s::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector4s_ToString_m60D1439F213314F68608BBCD3688CCB8D8CC2BF1 (Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 * __this, const RuntimeMethod* method); // System.Void OVRRaycaster/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m10DB5D5DE33ADA2D8C42FB9ECE6476E4B5C981F9 (U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.UI.Graphic::get_depth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Graphic_get_depth_m8AF43A1523D90A3A42A812835D516940E320CD17 (Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * __this, const RuntimeMethod* method); // System.Int32 System.Int32::CompareTo(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Int32_CompareTo_m2DD1093B956B4D96C3AC3C27FDEE3CA447B044D3 (int32_t* __this, int32_t ___value0, const RuntimeMethod* method); // System.String System.String::ToLower() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D (String_t* __this, const RuntimeMethod* method); // System.Boolean System.String::Contains(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A (String_t* __this, String_t* ___value0, const RuntimeMethod* method); // System.Boolean OVRInput::IsControllerConnected(OVRInput/Controller) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRInput_IsControllerConnected_m24B7FF0FB50602F0A9D234CD376F3B1F3BB6D580 (int32_t ___controller0, const RuntimeMethod* method); // System.Boolean OVRRuntimeController::LoadControllerModel(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRRuntimeController_LoadControllerModel_m060A5CD601A9563FE0DED95B2B64AC794888761D (OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * __this, String_t* ___modelPath0, const RuntimeMethod* method); // System.Void UnityEngine.WaitForSeconds::.ctor(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitForSeconds__ctor_mD298C4CB9532BBBDE172FC40F3397E30504038D4 (WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 * __this, float ___seconds0, const RuntimeMethod* method); // System.Void System.NotSupportedException::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * __this, const RuntimeMethod* method); // System.Void OVRSceneLoader::UpdateCanvasPosition() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRSceneLoader_UpdateCanvasPosition_m1DD89DBBF75505FB63FB441BC2C065D3A3F05780 (OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * __this, const RuntimeMethod* method); // OVRSceneLoader/SceneInfo OVRSceneLoader::GetSceneInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 OVRSceneLoader_GetSceneInfo_m87DFA134E3F0C9C43382C59D691867452132AA69 (OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * __this, const RuntimeMethod* method); // System.Collections.Generic.List`1/Enumerator System.Collections.Generic.List`1::GetEnumerator() inline Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E List_1_GetEnumerator_m2F9DADF593B6CECDFCC6C7F93CE6A03CBA8B7AB0 (List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * __this, const RuntimeMethod* method) { return (( Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E (*) (List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E *, const RuntimeMethod*))List_1_GetEnumerator_m1739A5E25DF502A6984F9B98CFCAC2D3FABCF233_gshared)(__this, method); } // !0 System.Collections.Generic.List`1/Enumerator::get_Current() inline AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * Enumerator_get_Current_mDAC3EB024CDED1C4A4CC7C742D888A114D6F0CF5_inline (Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E * __this, const RuntimeMethod* method) { return (( AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * (*) (Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E *, const RuntimeMethod*))Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline)(__this, method); } // System.Boolean UnityEngine.Object::op_Inequality(UnityEngine.Object,UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6 (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___x0, Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___y1, const RuntimeMethod* method); // System.Void UnityEngine.AssetBundle::Unload(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void AssetBundle_Unload_m0DEBACB284F6CECA8DF21486D1BBE1189F6A5D66 (AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * __this, bool ___unloadAllLoadedObjects0, const RuntimeMethod* method); // System.Boolean System.Collections.Generic.List`1/Enumerator::MoveNext() inline bool Enumerator_MoveNext_m196A9AEBCB4B9E2F917188534526C57C62484B72 (Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E * __this, const RuntimeMethod* method) { return (( bool (*) (Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E *, const RuntimeMethod*))Enumerator_MoveNext_m2E56233762839CE55C67E00AC8DD3D4D3F6C0DF0_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1/Enumerator::Dispose() inline void Enumerator_Dispose_m2236A593ACA4C39E3840B4D162D958C4F7A2F65B (Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E * __this, const RuntimeMethod* method) { (( void (*) (Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E *, const RuntimeMethod*))Enumerator_Dispose_mCFB225D9E5E597A1CC8F958E53BEA1367D8AC7B8_gshared)(__this, method); } // System.Void System.Collections.Generic.List`1::Clear() inline void List_1_Clear_m077FEBDE60869DB8984521EE8A6909B5F7AA3A73 (List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * __this, const RuntimeMethod* method) { (( void (*) (List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E *, const RuntimeMethod*))List_1_Clear_m5FB5A9C59D8625FDFB06876C4D8848F0F07ABFD0_gshared)(__this, method); } // System.Int32 UnityEngine.SceneManagement.SceneManager::get_sceneCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SceneManager_get_sceneCount_m91A161A12E082E983EE73E3CAE9560C6D5E01CF8 (const RuntimeMethod* method); // UnityEngine.SceneManagement.Scene UnityEngine.SceneManagement.SceneManager::GetSceneAt(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE SceneManager_GetSceneAt_m0C00F498AF9AF1B29CC263BAB2C64A1B571648B7 (int32_t ___index0, const RuntimeMethod* method); // UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::UnloadSceneAsync(UnityEngine.SceneManagement.Scene) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * SceneManager_UnloadSceneAsync_m475B9F4E214B57825565439378283B0EB193DD18 (Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE ___scene0, const RuntimeMethod* method); // System.Void OVRSceneLoader::DestroyAllGameObjects() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRSceneLoader_DestroyAllGameObjects_m3E88653A5212ED383143C0FFE9FDEC3CF5CC4D31 (OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * __this, const RuntimeMethod* method); // UnityEngine.AsyncOperation UnityEngine.SceneManagement.SceneManager::LoadSceneAsync(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * SceneManager_LoadSceneAsync_m8DCFAB9FD9FD082CA8505EDA72F685B82351D14C (String_t* ___sceneName0, const RuntimeMethod* method); // System.Void OVRSceneLoader/SceneInfo::.ctor(System.Collections.Generic.List`1,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneInfo__ctor_mBA8C48CCF528EC6F813941BE2F6FA7ED33B5AC16 (SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___sceneList0, int64_t ___currentSceneEpochVersion1, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Clamp01(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Clamp01_m831CBA1D198C3CDE660E8172A67A4E41BD0D0171 (float ___value0, const RuntimeMethod* method); // System.Single UnityEngine.Mathf::Lerp(System.Single,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86 (float ___a0, float ___b1, float ___t2, const RuntimeMethod* method); // System.Void OVRScreenFade::SetMaterialAlpha() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRScreenFade_SetMaterialAlpha_mF8F7C83E500539AC1A40EC3E8BA0A992920CFA36 (OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * __this, const RuntimeMethod* method); // System.Void UnityEngine.WaitForEndOfFrame::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void WaitForEndOfFrame__ctor_mEA41FB4A9236A64D566330BBE25F9902DEBB2EEA (WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4 * __this, const RuntimeMethod* method); // OVRPlugin/Posef OVRSkeleton/SkeletonPoseData::get_RootPose() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 SkeletonPoseData_get_RootPose_mAA0A04E5A718E769B26814793CE990CABF396012_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method); // System.Void OVRSkeleton/SkeletonPoseData::set_RootPose(OVRPlugin/Posef) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_RootPose_mA62FF0D3757B42B1A1E72E9CDB16B951492657D2_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___value0, const RuntimeMethod* method); // System.Single OVRSkeleton/SkeletonPoseData::get_RootScale() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SkeletonPoseData_get_RootScale_mD56A6408966BC4EDC53A52FAB6A45E34034AF5E8_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method); // System.Void OVRSkeleton/SkeletonPoseData::set_RootScale(System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_RootScale_mA7B8162C2BD89864FFFBD836D0F8FDDBD58A2031_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, float ___value0, const RuntimeMethod* method); // OVRPlugin/Quatf[] OVRSkeleton/SkeletonPoseData::get_BoneRotations() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* SkeletonPoseData_get_BoneRotations_m9E7CDA3AC0C7EDC90E0B00112E4C357C30A83AB1_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method); // System.Void OVRSkeleton/SkeletonPoseData::set_BoneRotations(OVRPlugin/Quatf[]) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_BoneRotations_m50EE7D6F0085AC6A67A071DD0F1CE76470E08A9E_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* ___value0, const RuntimeMethod* method); // System.Boolean OVRSkeleton/SkeletonPoseData::get_IsDataValid() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonPoseData_get_IsDataValid_mF4C881E642F2937199E42505D8768B5CC3F0682D_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method); // System.Void OVRSkeleton/SkeletonPoseData::set_IsDataValid(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_IsDataValid_m0DDB1E4DB75026F96B6470E4678302C6DC47968A_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean OVRSkeleton/SkeletonPoseData::get_IsDataHighConfidence() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonPoseData_get_IsDataHighConfidence_m999D793F7315E6132C014E731A81254F828409D1_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method); // System.Void OVRSkeleton/SkeletonPoseData::set_IsDataHighConfidence(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_IsDataHighConfidence_m14C298CB21B846A17493988BA23A5F12D3EE3E4B_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, bool ___value0, const RuntimeMethod* method); // System.Int32 OVRSkeleton/SkeletonPoseData::get_SkeletonChangedCount() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SkeletonPoseData_get_SkeletonChangedCount_m79AA087D6B7CB6482EF5D82A2F516CDBBCCCA404_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method); // System.Void OVRSkeleton/SkeletonPoseData::set_SkeletonChangedCount(System.Int32) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_SkeletonChangedCount_m9B9A69456003D5A62521BEA3403471087292068C_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, int32_t ___value0, const RuntimeMethod* method); // System.String UnityEngine.Object::get_name() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Object_get_name_m0C7BC870ED2F0DC5A2FB09628136CD7D1CB82CFB (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * __this, const RuntimeMethod* method); // System.Void UnityEngine.GameObject::.ctor(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject__ctor_mDF8BF31EAE3E03F24421531B25FB4BEDB7C87144 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, String_t* ___name0, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.GameObject::get_transform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Void UnityEngine.Transform::SetParent(UnityEngine.Transform,System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_SetParent_mA6A651EDE81F139E1D6C7BA894834AD71D07227A (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___parent0, bool ___worldPositionStays1, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::AddComponent() inline LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * GameObject_AddComponent_TisLineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967_mDBF1085005984D110DBAB1A2051888DC0AAC10B0 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_mBDBD6EC58A4409E35E4C5D08757C36E4938256B1_gshared)(__this, method); } // System.Void UnityEngine.Renderer::set_sharedMaterial(UnityEngine.Material) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B (Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * __this, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___value0, const RuntimeMethod* method); // System.Void UnityEngine.LineRenderer::set_useWorldSpace(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineRenderer_set_useWorldSpace_m53AA0FE659EFB041647DB6A29826D20D52CBE148 (LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * __this, bool ___value0, const RuntimeMethod* method); // System.Void UnityEngine.LineRenderer::set_positionCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineRenderer_set_positionCount_mA8B73AC2B9151473E94F3713E1041AA34D758AE5 (LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * __this, int32_t ___value0, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Transform::get_position() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // System.Void UnityEngine.LineRenderer::SetPosition(System.Int32,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineRenderer_SetPosition_mD37DBE4B3E13A838FFD09289BC77DEDB423D620F (LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * __this, int32_t ___index0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position1, const RuntimeMethod* method); // System.Void UnityEngine.LineRenderer::set_startWidth(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineRenderer_set_startWidth_mD88B562DD413EE9861FB254963C7EDCB5199C1DF (LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * __this, float ___value0, const RuntimeMethod* method); // System.Void UnityEngine.LineRenderer::set_endWidth(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void LineRenderer_set_endWidth_m3DCD4FFCC3944DD6DC0737C8AF8C7EDB5A6CF59A (LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * __this, float ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Renderer::set_enabled(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Renderer_set_enabled_mFFBA418C428C1B2B151C77B879DD10C393D9D95B (Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * __this, bool ___value0, const RuntimeMethod* method); // UnityEngine.Material UnityEngine.Renderer::get_sharedMaterial() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Material_t8927C00353A72755313F046D0CE85178AE8218EE * Renderer_get_sharedMaterial_m42DF538F0C6EA249B1FB626485D45D083BA74FCC (Renderer_t58147AB5B00224FE1460FD47542DC0DA7EC9378C * __this, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.GameObject::CreatePrimitive(UnityEngine.PrimitiveType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GameObject_CreatePrimitive_m3F797A3D7CBF364F6581F6C800AB9F9BAF5000C6 (int32_t ___type0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent() inline CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * GameObject_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m6EBBC2FEDBA32E3404BD034FD75FB37DFDFF0C95 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // System.Void UnityEngine.Object::Destroy(UnityEngine.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Object_Destroy_mBDC17991A372E11E2E485EFC5C72F58972CBEC0F (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A * ___obj0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::GetComponent() inline MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * GameObject_GetComponent_TisMeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B_m4E244CD0EBBF9E0A3A73AF14F6EC434CA82E6F4B (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_GetComponent_TisRuntimeObject_mCE43118393A796C759AC5D43257AB2330881767D_gshared)(__this, method); } // UnityEngine.Vector3 UnityEngine.Vector3::get_one() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_one_mFA8E564BB81364E4E65551816F3631176E7F58E7 (const RuntimeMethod* method); // UnityEngine.CapsuleCollider OVRBoneCapsule::get_CapsuleCollider() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline (OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * __this, const RuntimeMethod* method); // System.Single UnityEngine.CapsuleCollider::get_height() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CapsuleCollider_get_height_mD6CF93CB2C222F8E5B77D65B0356F8FD8005B526 (CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * __this, const RuntimeMethod* method); // System.Single UnityEngine.CapsuleCollider::get_radius() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float CapsuleCollider_get_radius_m5746DDE5E6A099269FC9DAD253887C58E8A064D0 (CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(UnityEngine.Vector3,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m06DD6079C6317F9A4D889EE4D22C4AED1E438E3B_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, float ___d1, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_localScale(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localScale_mF4D1611E48D1BA7566A1E166DC2DACF3ADD8BA3A (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.GameObject::get_activeSelf() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool GameObject_get_activeSelf_m4865097C24FB29F3C31F5C30619AF242297F23EE (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method); // System.Void UnityEngine.GameObject::SetActive(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86 (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, bool ___value0, const RuntimeMethod* method); // UnityEngine.Transform UnityEngine.Component::get_transform() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Transform::get_rotation() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, const RuntimeMethod* method); // UnityEngine.Quaternion UnityEngine.Quaternion::op_Multiply(UnityEngine.Quaternion,UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Quaternion_op_Multiply_mA5FD288B815D9C1B59C7B26AA1942A85ACE94153 (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___lhs0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rhs1, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_rotation(UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_rotation_m1B5F3D4CE984AB31254615C9C71B0E54978583B4 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.CapsuleCollider::get_center() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E CapsuleCollider_get_center_m6374F7457A9450CAFFAD2DF0C9D1419BF9E304CB (CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * __this, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Transform::TransformPoint(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Transform_TransformPoint_m68AF95765A9279192E601208A9C5170027A5F0D2 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___position0, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_position(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91 (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Single OVRSkeletonRenderer/SkeletonRendererData::get_RootScale() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SkeletonRendererData_get_RootScale_mDA6B300BD2DDB4642D4B8DCA8BE12736B0C87079_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method); // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_RootScale(System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_RootScale_m390D0F58A1D46D4DC90F61E0FD029D81B276041B_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, float ___value0, const RuntimeMethod* method); // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::get_IsDataValid() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_IsDataValid_m73AB319ABF88E8EA0FD4805B250E58AC45411FB0_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method); // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_IsDataValid(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_IsDataValid_mC96D90E90D94CA29CDC482B4D4F47320D1D08B9A_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::get_IsDataHighConfidence() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_IsDataHighConfidence_m4C34B2783AC78757C81A215204FF6452876955E0_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method); // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_IsDataHighConfidence(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_IsDataHighConfidence_m345B5BFFF74B0F9B55D9A35BCA05C81ED8086842_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::get_ShouldUseSystemGestureMaterial() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_ShouldUseSystemGestureMaterial_m1C09A046EB4D5DD42476BA1480D9866E17B0EBE9_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method); // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_ShouldUseSystemGestureMaterial(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_ShouldUseSystemGestureMaterial_m55ED4E183CE0EDFB4A6366C2F5C9B63A74C5AC00_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method); // System.Boolean UnityEngine.Application::get_isEditor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Application_get_isEditor_m7BA0984E1359E7A656CB9110DBB539A4F2810CB1 (const RuntimeMethod* method); // System.Void UnityEngine.Application::set_runInBackground(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Application_set_runInBackground_mB5FED4F526FB43697CAE456DFEC7FCD6C2A8E088 (bool ___value0, const RuntimeMethod* method); // System.Void OVRNetwork/OVRNetworkTcpServer::StartListening(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_StartListening_mAB815C06C715674E7F81DDC2C346F9EF5A14DB55 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, int32_t ___listeningPort0, const RuntimeMethod* method); // System.Void OVRNetwork/OVRNetworkTcpServer::StopListening() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_StopListening_mD7626F4649211403BE352F5EDC40F627B7D9192A (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, const RuntimeMethod* method); // System.Boolean OVRNetwork/OVRNetworkTcpServer::HasConnectedClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRNetworkTcpServer_HasConnectedClient_m675644DD51D2F57248496CFA6A8C21F828161378 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, const RuntimeMethod* method); // OVRSystemPerfMetrics/PerfMetrics OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::GatherPerfMetrics() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * OVRSystemPerfMetricsTcpServer_GatherPerfMetrics_m330A940EA6310E647D6D248F2F150844DB56855D (OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * __this, const RuntimeMethod* method); // System.String OVRSystemPerfMetrics/PerfMetrics::ToJSON() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PerfMetrics_ToJSON_mACF67AD0A6FB86BDCC7D351FEB6FD1C8714E098E (PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * __this, const RuntimeMethod* method); // System.Text.Encoding System.Text.Encoding::get_UTF8() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * Encoding_get_UTF8_mA1F9F8EACB3EEA1583247AA10DCE51C3A0A13469 (const RuntimeMethod* method); // System.Void OVRNetwork/OVRNetworkTcpServer::Broadcast(System.Int32,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_Broadcast_m275C9EBE5A710C20109CB24D15FC7A18B7D0F172 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, int32_t ___payloadType0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___payload1, const RuntimeMethod* method); // System.Void OVRSystemPerfMetrics/PerfMetrics::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PerfMetrics__ctor_mB6F452902A131D8C874D72E2F6E2524BE2DEEC73 (PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * __this, const RuntimeMethod* method); // System.Int32 UnityEngine.Time::get_frameCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Time_get_frameCount_m9CEBDC44BB970B7F8DA5C7AA695F9652B459C139 (const RuntimeMethod* method); // System.Single UnityEngine.Time::get_unscaledTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledTime_mDBF04FC47709E0C1BBBB4BA4BDA5405D8EF632A1 (const RuntimeMethod* method); // System.Single UnityEngine.Time::get_unscaledDeltaTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Time_get_unscaledDeltaTime_mAC1F2C20477335AD7D36AB7E6BE420C10C2B6419 (const RuntimeMethod* method); // System.Nullable`1 OVRPlugin::GetPerfMetricsFloat(OVRPlugin/PerfMetrics) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C (int32_t ___perfMetrics0, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *, const RuntimeMethod*))Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_gshared_inline)(__this, method); } // !0 System.Nullable`1::GetValueOrDefault() inline float Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * __this, const RuntimeMethod* method) { return (( float (*) (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_gshared_inline)(__this, method); } // System.Nullable`1 OVRPlugin::GetPerfMetricsInt(OVRPlugin/PerfMetrics) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 OVRPlugin_GetPerfMetricsInt_mCC2A1AAD43F5EED5376A510FF9B166742BE5DE11 (int32_t ___perfMetrics0, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline)(__this, method); } // !0 System.Nullable`1::GetValueOrDefault() inline int32_t Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method) { return (( int32_t (*) (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_gshared_inline)(__this, method); } // System.Void OVRNetwork/OVRNetworkTcpServer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer__ctor_m4ABCF8E5F4ACE160E9D21D6C3712F7CFA3AB6369 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, const RuntimeMethod* method); // System.Void UnityEngine.MonoBehaviour::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, const RuntimeMethod* method); // System.Void OVRSimpleJSON.JSONObject::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JSONObject__ctor_mB48A96B84212AC75D55E6339498A4B5843CCAF75 (JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * __this, const RuntimeMethod* method); // System.Void OVRSimpleJSON.JSONNumber::.ctor(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03 (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * __this, double ___aData0, const RuntimeMethod* method); // OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::Parse(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * JSONNode_Parse_m34ACAB3223B18EE88A5B484D3DD9E026AB7D15BF (String_t* ___aJSON0, const RuntimeMethod* method); // System.Boolean OVRSimpleJSON.JSONNode::op_Equality(OVRSimpleJSON.JSONNode,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JSONNode_op_Equality_m01C4F0AA716D0CABA5FFD8B839CD08D5EFED5D95 (JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method); // System.Boolean OVRSimpleJSON.JSONNode::op_Inequality(OVRSimpleJSON.JSONNode,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E (JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * ___a0, RuntimeObject * ___b1, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m78EAE80C241A5F2D2411D37A9B93F3DEC2714DB1 (U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * __this, const RuntimeMethod* method); // UnityEngine.GameObject UnityEngine.GameObject::Find(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * GameObject_Find_m59E8F1E50866B94ABDD65B229D8B1B3A58FA7879 (String_t* ___name0, const RuntimeMethod* method); // !!0 UnityEngine.GameObject::AddComponent() inline OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * GameObject_AddComponent_TisOVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_m55344729170268134539249661AC0A1FB6D9BDDC (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * __this, const RuntimeMethod* method) { return (( OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * (*) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, const RuntimeMethod*))GameObject_AddComponent_TisRuntimeObject_mBDBD6EC58A4409E35E4C5D08757C36E4938256B1_gshared)(__this, method); } // UnityEngine.GameObject UnityEngine.Component::get_gameObject() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B (Component_t62FBC8D2420DA4BE9037AFE430740F6B3EECA684 * __this, const RuntimeMethod* method); // !!0 UnityEngine.Object::FindObjectOfType() inline OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * Object_FindObjectOfType_TisOVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517_mB862EB6825CF928615C882DD6A4AC5AD8AFEE0E7 (const RuntimeMethod* method) { return (( OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * (*) (const RuntimeMethod*))Object_FindObjectOfType_TisRuntimeObject_m7137356547ADC5089A381F0EC5E9280576983E2E_gshared)(method); } // System.Void UnityEngine.Vector3::.ctor(System.Single,System.Single,System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard::set_SystemKeyboardInfo(OVRKeyboard/TrackedKeyboardInfo) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_set_SystemKeyboardInfo_mC00D967238B6AF490A1E516F25BC2D03903A3389_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 ___value0, const RuntimeMethod* method); // System.Collections.IEnumerator OVRTrackedKeyboard::InitializeHandPresenceData() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OVRTrackedKeyboard_InitializeHandPresenceData_mF27C52AAED289D46EEEADCAE424B8FD225D9A140 (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.Collections.IEnumerator OVRTrackedKeyboard::UpdateTrackingStateCoroutine() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OVRTrackedKeyboard_UpdateTrackingStateCoroutine_m74C51A0B4E6B278A1115CC63F2844047507A0787 (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.Boolean OVRTrackedKeyboard::KeyboardTrackerIsRunning() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRTrackedKeyboard_KeyboardTrackerIsRunning_m41BE49B25E909E4F54D8882FB29CF422C1AA4BA4 (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard::InitializeKeyboardInfo() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_InitializeKeyboardInfo_mC5DED6C9CD2F8DB9ACF76AA9D115380DC75D8B83 (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard::RegisterPassthroughMeshToSDK() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_RegisterPassthroughMeshToSDK_m0576F47674747CA65E482420FB48309A4D77A6E5 (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // OVRKeyboard/TrackedKeyboardInfo OVRTrackedKeyboard::get_SystemKeyboardInfo() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.String System.UInt64::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* UInt64_ToString_m3644686F0A0E32CB94D300CF891DBD7920396F37 (uint64_t* __this, const RuntimeMethod* method); // System.Boolean OVRPlugin::StartKeyboardTracking(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRPlugin_StartKeyboardTracking_m5904BE2748D7A4BDD52B1CB07EC4B52AE61E14EB (uint64_t ___trackedKeyboardId0, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard::set_ActiveKeyboardInfo(OVRKeyboard/TrackedKeyboardInfo) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_set_ActiveKeyboardInfo_mC92B2FB7102A869D60E790CF1D2EDF013E899A91_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 ___value0, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard::LoadKeyboardMesh() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_LoadKeyboardMesh_m746191B9E25E0DE8D11F4C291473D38F88609E9E (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.Collections.IEnumerator OVRTrackedKeyboard::UpdateKeyboardPose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* OVRTrackedKeyboard_UpdateKeyboardPose_mF44EFFC241B2B439C0D02D7117551AC2B3610F3C (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // UnityEngine.Coroutine UnityEngine.MonoBehaviour::StartCoroutine(System.Collections.IEnumerator) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719 (MonoBehaviour_t37A501200D970A8257124B0EAE00A0FF3DDC354A * __this, RuntimeObject* ___routine0, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent::.ctor(System.Boolean) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedKeyboardSetActiveEvent__ctor_m3D02DA6E649D73CFF5E513453B31D8BA5D05850B_inline (TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A * __this, bool ___isEnabled0, const RuntimeMethod* method); // System.Void System.Action`1::Invoke(!0) inline void Action_1_Invoke_mDE80C4E19F1DA60EC4FB7F2A5FDDE660C50C4D0B (Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * __this, TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A ___obj0, const RuntimeMethod* method) { (( void (*) (Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 *, TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A , const RuntimeMethod*))Action_1_Invoke_mDE80C4E19F1DA60EC4FB7F2A5FDDE660C50C4D0B_gshared)(__this, ___obj0, method); } // System.Void OVRTrackedKeyboard::SetKeyboardState(OVRTrackedKeyboard/TrackedKeyboardState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_SetKeyboardState_m13F366FDD788EB7F873325E2E51B13ADCBBA09F6 (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, int32_t ___state0, const RuntimeMethod* method); // UnityEngine.Transform OVRCameraRig::get_trackingSpace() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * OVRCameraRig_get_trackingSpace_mB0190AF5A79E489DB09B4C61D4E3BE8FA9AD8D9E_inline (OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * __this, const RuntimeMethod* method); // OVRKeyboard/TrackedKeyboardState OVRKeyboard::GetKeyboardState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC OVRKeyboard_GetKeyboardState_m776A35C1FC0D531DE05CD7192D951648147E3BD3 (const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::get_up() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_get_up_mD84FDFCD32FC48C865A89FD4251232E2A9D7015A (const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Quaternion::op_Multiply(UnityEngine.Quaternion,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Quaternion_op_Multiply_mDEAB1A882C07A9520D77EB35473F71AAE74452BC (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___rotation0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___point1, const RuntimeMethod* method); // System.Single UnityEngine.Vector3::Angle(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float Vector3_Angle_mFE4B9D0E5EBD02D0684598D486833321336732B3 (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___from0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___to1, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard::set_CurrentKeyboardAngleFromUp(System.Single) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_set_CurrentKeyboardAngleFromUp_mFFD5E90079B121144696162F3627F54340217AE8_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, float ___value0, const RuntimeMethod* method); // System.Single OVRTrackedKeyboard::get_CurrentKeyboardAngleFromUp() IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float OVRTrackedKeyboard_get_CurrentKeyboardAngleFromUp_m45AAB8FFF758121FBC6669A5A81C0B7A3B8E25C5_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_inline (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *, const RuntimeMethod*))Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_gshared_inline)(__this, method); } // System.Void System.Nullable`1::.ctor(!0) inline void Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830 (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E , const RuntimeMethod*))Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830_gshared)(__this, ___value0, method); } // !0 System.Nullable`1::GetValueOrDefault() inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_inline (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method) { return (( Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E (*) (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *, const RuntimeMethod*))Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_gshared_inline)(__this, method); } // UnityEngine.Vector3 UnityEngine.Vector3::op_Multiply(System.Single,UnityEngine.Vector3) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m92CBF5B97ECB34A9B802EDD5C4A8187463278560_inline (float ___d0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a1, const RuntimeMethod* method); // UnityEngine.Vector3 UnityEngine.Vector3::op_Addition(UnityEngine.Vector3,UnityEngine.Vector3) IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Addition_m2E3CBC2DA8F97FF21F4F845D857746EF6BC83A01_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method); // System.Boolean System.Nullable`1::get_HasValue() inline bool Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_inline (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * __this, const RuntimeMethod* method) { return (( bool (*) (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 *, const RuntimeMethod*))Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_gshared_inline)(__this, method); } // System.Void System.Nullable`1::.ctor(!0) inline void Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method) { (( void (*) (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 *, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 , const RuntimeMethod*))Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D_gshared)(__this, ___value0, method); } // !0 System.Nullable`1::get_Value() inline Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8 (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * __this, const RuntimeMethod* method) { return (( Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 (*) (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 *, const RuntimeMethod*))Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8_gshared)(__this, method); } // UnityEngine.Quaternion UnityEngine.Quaternion::Slerp(UnityEngine.Quaternion,UnityEngine.Quaternion,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 Quaternion_Slerp_m248F79C5788A4A059F1394DEC120F23B67EFE541 (Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___a0, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___b1, float ___t2, const RuntimeMethod* method); // !0 System.Nullable`1::get_Value() inline Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method) { return (( Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E (*) (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *, const RuntimeMethod*))Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B_gshared)(__this, method); } // System.Void UnityEngine.Transform::set_localPosition(UnityEngine.Vector3) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___value0, const RuntimeMethod* method); // System.Void UnityEngine.Transform::set_localRotation(UnityEngine.Quaternion) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Transform_set_localRotation_m1A9101457EC4653AFC93FCC4065A29F2C78FA62C (Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * __this, Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 ___value0, const RuntimeMethod* method); // System.Void OVRTrackedKeyboard::UpdateSkippedPoseTimer() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_UpdateSkippedPoseTimer_m1EF68F968024B4DE3DC3F4275482D9AAFA277B35 (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method); // System.Void System.ThrowHelper::ThrowArgumentOutOfRangeException() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070 (const RuntimeMethod* method); #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL IL2CPP_EXTERN_C int32_t CDECL OVR_GamepadController_Initialize(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL IL2CPP_EXTERN_C int32_t CDECL OVR_GamepadController_Destroy(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL IL2CPP_EXTERN_C int32_t CDECL OVR_GamepadController_Update(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL IL2CPP_EXTERN_C float CDECL OVR_GamepadController_GetAxis(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL IL2CPP_EXTERN_C int32_t CDECL OVR_GamepadController_GetButton(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL IL2CPP_EXTERN_C int32_t CDECL OVR_GamepadController_SetVibration(int32_t, float, float); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 CDECL ovrp_GetEyeTextureSize(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetOverlayQuad2(int32_t, int32_t, intptr_t, intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 CDECL ovrp_GetNodePose(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetControllerVibration(uint32_t, float, float); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 CDECL ovrp_GetNodeVelocity(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 CDECL ovrp_GetNodeAcceleration(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingOriginType(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetTrackingOriginType(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 CDECL ovrp_GetTrackingCalibratedOrigin(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_RecenterTrackingOrigin(uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetDesiredEyeTextureFormat(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetDesiredEyeTextureFormat(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetAppFramerate(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 CDECL ovrp_GetNodePoseState(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C CDECL ovrp_GetControllerState2(uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_InitializeMixedReality(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_ShutdownMixedReality(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetMixedRealityInitialized(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_UpdateExternalCamera(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetExternalCameraCount(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetExternalCameraName(int32_t, uint8_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetExternalCameraIntrinsics(int32_t, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetExternalCameraExtrinsics(int32_t, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_CalculateLayerDesc(int32_t, int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *, int32_t, int32_t, int32_t, int32_t, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_EnqueueSetupLayer(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*, intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_EnqueueDestroyLayer(intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetLayerTextureStageCount(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetLayerTexturePtr(int32_t, int32_t, int32_t, intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_EnqueueSubmitLayer(uint32_t, intptr_t, intptr_t, int32_t, int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodeFrustum2(int32_t, Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetEyeTextureArrayEnabled(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_UpdateCameraDevices(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_IsCameraDeviceAvailable(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetCameraDevicePreferredColorFrameSize(int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_OpenCameraDevice(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_CloseCameraDevice(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_HasCameraDeviceOpened(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_IsCameraDeviceColorFrameAvailable(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDeviceColorFrameSize(int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDeviceColorFrameBgraPixels(int32_t, intptr_t*, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetControllerState4(uint32_t, ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetExternalCameraPose(int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_ConvertPoseToCameraSpace(int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDeviceIntrinsicsParameters(int32_t, int32_t*, CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_DoesCameraDeviceSupportDepth(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDeviceDepthSensingMode(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetCameraDeviceDepthSensingMode(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDevicePreferredDepthQuality(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetCameraDevicePreferredDepthQuality(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_IsCameraDeviceDepthFrameAvailable(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDeviceDepthFrameSize(int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDeviceDepthFramePixels(int32_t, intptr_t*, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCameraDeviceDepthConfidencePixels(int32_t, intptr_t*, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetHandNodePoseStateLatency(double); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetHandNodePoseStateLatency(double*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAppHasInputFocus(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetInitialized(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C intptr_t CDECL ovrp_GetVersion(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C intptr_t CDECL ovrp_GetNativeSDKVersion(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C intptr_t CDECL ovrp_GetAudioOutId(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C intptr_t CDECL ovrp_GetAudioInId(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetEyeTextureScale(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetEyeTextureScale(float); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingOrientationSupported(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingOrientationEnabled(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetTrackingOrientationEnabled(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingPositionSupported(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingPositionEnabled(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetTrackingPositionEnabled(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodePresent(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodeOrientationTracked(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodePositionTracked(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F CDECL ovrp_GetNodeFrustum(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 CDECL ovrp_GetControllerState(uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemCpuLevel(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetSystemCpuLevel(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemGpuLevel(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetSystemGpuLevel(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemPowerSavingMode(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetSystemDisplayFrequency(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemVSyncCount(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetSystemVolume(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemBatteryStatus(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetSystemBatteryLevel(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetSystemBatteryTemperature(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C intptr_t CDECL ovrp_GetSystemProductName(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_ShowSystemUI(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAppMonoscopic(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetAppMonoscopic(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAppHasVrFocus(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAppShouldQuit(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAppShouldRecenter(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C intptr_t CDECL ovrp_GetAppLatencyTimings(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetUserPresent(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetUserIPD(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetUserIPD(float); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetUserEyeDepth(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetUserEyeDepth(float); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetUserEyeHeight(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetUserEyeHeight(float); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTiledMultiResSupported(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTiledMultiResLevel(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetTiledMultiResLevel(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetGPUUtilSupported(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetGPUUtilLevel(float*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemDisplayFrequency2(float*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemDisplayAvailableFrequencies(intptr_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetSystemDisplayFrequency(float); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAppAsymmetricFov(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetDominantHand(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SendEvent(char*, char*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_EnqueueSetupLayer2(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*, int32_t, intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetLayerAndroidSurfaceObject(int32_t, intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetHeadPoseModifier(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetHeadPoseModifier(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodePoseStateRaw(int32_t, int32_t, int32_t, PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetSystemVSyncCount(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrpi_SetTrackingCalibratedOrigin(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetCurrentTrackingTransformPose(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingTransformRawPose(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SendEvent2(char*, char*, char*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_IsPerfMetricsSupported(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetPerfMetricsFloat(int32_t, float*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetPerfMetricsInt(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTimeInSeconds(double*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetColorScaleAndOffset(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_AddCustomMetadata(char*, char*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_EnqueueSubmitLayer2(uint32_t, intptr_t, intptr_t, int32_t, int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *, int32_t, int32_t, TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B *, int32_t, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingTransformRelativePose(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_Initialize(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_Shutdown(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetInitialized(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_Update(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetMrcActivationMode(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetMrcActivationMode(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_IsMrcEnabled(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_IsMrcActivated(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_UseMrcDebugCamera(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetMrcInputVideoBufferType(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetMrcInputVideoBufferType(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetMrcFrameSize(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetMrcFrameSize(int32_t*, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetMrcAudioSampleRate(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetMrcAudioSampleRate(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetMrcFrameImageFlipped(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetMrcFrameImageFlipped(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_EncodeMrcFrame(intptr_t, intptr_t, int32_t, int32_t, double, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_EncodeMrcFrameWithDualTextures(intptr_t, intptr_t, intptr_t, int32_t, int32_t, double, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SyncMrcFrame(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetDeveloperMode(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodeOrientationValid(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodePositionValid(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetEyeOcclusionMeshEnabled(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetEyeOcclusionMeshEnabled(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemHeadphonesPresent(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAdaptiveGpuPerformanceScale2(float*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetHandTrackingEnabled(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetHandState(int32_t, int32_t, HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSkeleton(int32_t, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetMesh(int32_t, intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_OverrideExternalCameraFov(int32_t, int32_t, Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetUseOverriddenExternalCameraFov(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_OverrideExternalCameraStaticPose(int32_t, int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetUseOverriddenExternalCameraStaticPose(int32_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_ResetDefaultExternalCamera(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetDefaultExternalCamera(char*, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetLocalTrackingSpaceRecenterCount(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemHmd3DofModeEnabled(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetAvailableQueueIndexVulkan(uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTiledMultiResDynamic(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetTiledMultiResDynamic(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetExternalCameraProperties(char*, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetClientColorDesc(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetHmdColorDesc(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_EncodeMrcFrameWithPoseTime(intptr_t, intptr_t, int32_t, int32_t, double, double, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime(intptr_t, intptr_t, intptr_t, int32_t, int32_t, double, double, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetHeadsetControllerPose(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_EnumerateCameraAnchorHandles(int32_t*, intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetCurrentCameraAnchorHandle(intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetCameraAnchorName(intptr_t, uint8_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetCameraAnchorHandle(intptr_t, intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetCameraAnchorType(intptr_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_CreateCustomCameraAnchor(intptr_t, intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_DestroyCustomCameraAnchor(intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetCustomCameraAnchorPose(intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetCustomCameraAnchorPose(intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetCameraMinMaxDistance(intptr_t, double*, double*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetCameraMinMaxDistance(intptr_t, double, double); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetPlatformInitialized(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSkeleton2(int32_t, Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_PollEvent(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNativeXrApiType(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNativeOpenXRHandles(uint64_t*, uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_PollEvent2(int32_t*, intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_GetPlatformCameraMode(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_SetPlatformCameraMode(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetEyeFovPremultipliedAlphaMode(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetEyeFovPremultipliedAlphaMode(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetKeyboardOverlayUV(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemRegion(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_CreateSpatialAnchor(SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC *, uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetComponentEnabled(uint64_t*, int32_t, int32_t, double, uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetComponentEnabled(uint64_t*, int32_t, int32_t*, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_EnumerateSupportedComponents(uint64_t*, uint32_t, uint32_t*, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_TerminateSpatialEntityQuery(uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SaveSpatialEntity(uint64_t*, int32_t, int32_t, uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_EraseSpatialEntity(uint64_t*, int32_t, uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_InitializeInsightPassthrough(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_ShutdownInsightPassthrough(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetInsightPassthroughInitialized(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetInsightPassthroughStyle(int32_t, InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_CreateInsightTriangleMesh(int32_t, intptr_t, int32_t, intptr_t, int32_t, uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_DestroyInsightTriangleMesh(uint64_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_AddInsightPassthroughSurfaceGeometry(int32_t, uint64_t, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 , uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_DestroyInsightPassthroughGeometryInstance(uint64_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_UpdateInsightPassthroughGeometryTransform(uint64_t, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_LocateSpace(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, uint64_t*, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_KtxLoadFromMemory(intptr_t*, uint32_t, intptr_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_KtxTextureWidth(intptr_t, uint32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_KtxTextureHeight(intptr_t, uint32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_KtxTranscode(intptr_t, uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_KtxGetTextureData(intptr_t, intptr_t, uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_KtxTextureSize(intptr_t, uint32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_KtxDestroy(intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_DestroySpace(uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetInsightPassthroughInitializationState(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Media_IsCastingToRemoteClient(int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_QuerySpatialEntity(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke*, uint64_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_LoadRenderModel(uint64_t, uint32_t, uint32_t*, intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetRenderModelPaths(uint32_t, intptr_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetRenderModelProperties(char*, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetInsightPassthroughKeyboardHandsIntensity(int32_t, InsightPassthroughKeyboardHandsIntensity_tD403C83ACD76793F037A858F942CEBA7096FF8D1 ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_StartKeyboardTracking(uint64_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_StopKeyboardTracking(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemKeyboardDescription(int32_t, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetKeyboardState(int32_t, int32_t, KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetNodePoseStateImmediate(int32_t, PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 *); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetTrackingIPDEnabled(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetTrackingIPDEnabled(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 CDECL ovrp_GetControllerHapticsDesc(uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 CDECL ovrp_GetControllerHapticsState(uint32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetControllerHaptics(uint32_t, HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E ); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetOverlayQuad3(uint32_t, intptr_t, intptr_t, intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 , int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetEyeRecommendedResolutionScale(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C float CDECL ovrp_GetAppCpuStartToGpuEndTime(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemRecommendedMSAALevel(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetAppChromaticCorrection(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetAppChromaticCorrection(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetBoundaryConfigured(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 CDECL ovrp_TestBoundaryNode(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 CDECL ovrp_TestBoundaryPoint(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 , int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke CDECL ovrp_GetBoundaryGeometry(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 CDECL ovrp_GetBoundaryDimensions(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetBoundaryVisible(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_SetBoundaryVisible(int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_Update2(int32_t, int32_t, double); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 CDECL ovrp_GetNodePose2(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 CDECL ovrp_GetNodeVelocity2(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 CDECL ovrp_GetNodeAcceleration2(int32_t, int32_t); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetSystemHeadsetType(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetActiveController(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetConnectedControllers(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_GetBoundaryGeometry2(int32_t, intptr_t, int32_t*); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke CDECL ovrp_GetAppPerfStats(); #endif #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL IL2CPP_EXTERN_C int32_t CDECL ovrp_ResetAppPerfStats(); #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRControllerTest/BoolMonitor::.ctor(System.String,OVRControllerTest/BoolMonitor/BoolGenerator,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoolMonitor__ctor_m5763B2EE8FDAEC3825A620D0C8C1842DC8ED2130 (BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1 * __this, String_t* ___name0, BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 * ___generator1, float ___displayTimeout2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { // private string m_name = ""; __this->set_m_name_0(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); // public BoolMonitor(string name, BoolGenerator generator, float displayTimeout = 0.5f) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // m_name = name; String_t* L_0 = ___name0; __this->set_m_name_0(L_0); // m_generator = generator; BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 * L_1 = ___generator1; __this->set_m_generator_1(L_1); // m_displayTimeout = displayTimeout; float L_2 = ___displayTimeout2; __this->set_m_displayTimeout_5(L_2); // } return; } } // System.Void OVRControllerTest/BoolMonitor::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoolMonitor_Update_m02B034C1457EDD204C508B4FE2C2414751F10D0D (BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1 * __this, const RuntimeMethod* method) { { // m_prevValue = m_currentValue; bool L_0 = __this->get_m_currentValue_3(); __this->set_m_prevValue_2(L_0); // m_currentValue = m_generator(); BoolGenerator_t9D0CAA63DE81630DA3686CD8E80ABDA858A5CCA4 * L_1 = __this->get_m_generator_1(); NullCheck(L_1); bool L_2; L_2 = BoolGenerator_Invoke_m67D99381DC0F336EE27A19EBAD957A9612B1C0D1(L_1, /*hidden argument*/NULL); __this->set_m_currentValue_3(L_2); // if (m_currentValue != m_prevValue) bool L_3 = __this->get_m_currentValue_3(); bool L_4 = __this->get_m_prevValue_2(); if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_003e; } } { // m_currentValueRecentlyChanged = true; __this->set_m_currentValueRecentlyChanged_4((bool)1); // m_displayTimer = m_displayTimeout; float L_5 = __this->get_m_displayTimeout_5(); __this->set_m_displayTimer_6(L_5); } IL_003e: { // if (m_displayTimer > 0.0f) float L_6 = __this->get_m_displayTimer_6(); if ((!(((float)L_6) > ((float)(0.0f))))) { goto IL_007c; } } { // m_displayTimer -= Time.deltaTime; float L_7 = __this->get_m_displayTimer_6(); float L_8; L_8 = Time_get_deltaTime_mF558623BBB4EE65C8810243B05ED204A9E8D6FD1(/*hidden argument*/NULL); __this->set_m_displayTimer_6(((float)il2cpp_codegen_subtract((float)L_7, (float)L_8))); // if (m_displayTimer <= 0.0f) float L_9 = __this->get_m_displayTimer_6(); if ((!(((float)L_9) <= ((float)(0.0f))))) { goto IL_007c; } } { // m_currentValueRecentlyChanged = false; __this->set_m_currentValueRecentlyChanged_4((bool)0); // m_displayTimer = 0.0f; __this->set_m_displayTimer_6((0.0f)); } IL_007c: { // } return; } } // System.Void OVRControllerTest/BoolMonitor::AppendToStringBuilder(System.Text.StringBuilder&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoolMonitor_AppendToStringBuilder_m7FAB904C0BBBB60F2B2622AD829A78BA957BF5C2 (BoolMonitor_t06A745822831A527E11537AF54F3A26DD72316C1 * __this, StringBuilder_t ** ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3CD8BA18F33960DD303C36F2DB2999FE7B59D6AB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75C161F9DC3BCB0CC29B7D4D4C35DA27A0177ADB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82097C506C2DF7D20A917D134A69D64749DA1B9E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF57952D7922E2538C221F98FBC65352E6DEF8AB3); s_Il2CppMethodInitialized = true; } { // sb.Append(m_name); StringBuilder_t ** L_0 = ___sb0; StringBuilder_t * L_1 = *((StringBuilder_t **)L_0); String_t* L_2 = __this->get_m_name_0(); NullCheck(L_1); StringBuilder_t * L_3; L_3 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_1, L_2, /*hidden argument*/NULL); // if (m_currentValue && m_currentValueRecentlyChanged) bool L_4 = __this->get_m_currentValue_3(); if (!L_4) { goto IL_002c; } } { bool L_5 = __this->get_m_currentValueRecentlyChanged_4(); if (!L_5) { goto IL_002c; } } { // sb.Append(": *True*\n"); StringBuilder_t ** L_6 = ___sb0; StringBuilder_t * L_7 = *((StringBuilder_t **)L_6); NullCheck(L_7); StringBuilder_t * L_8; L_8 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_7, _stringLiteral82097C506C2DF7D20A917D134A69D64749DA1B9E, /*hidden argument*/NULL); return; } IL_002c: { // else if (m_currentValue) bool L_9 = __this->get_m_currentValue_3(); if (!L_9) { goto IL_0042; } } { // sb.Append(": True \n"); StringBuilder_t ** L_10 = ___sb0; StringBuilder_t * L_11 = *((StringBuilder_t **)L_10); NullCheck(L_11); StringBuilder_t * L_12; L_12 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_11, _stringLiteral3CD8BA18F33960DD303C36F2DB2999FE7B59D6AB, /*hidden argument*/NULL); return; } IL_0042: { // else if (!m_currentValue && m_currentValueRecentlyChanged) bool L_13 = __this->get_m_currentValue_3(); if (L_13) { goto IL_0060; } } { bool L_14 = __this->get_m_currentValueRecentlyChanged_4(); if (!L_14) { goto IL_0060; } } { // sb.Append(": *False*\n"); StringBuilder_t ** L_15 = ___sb0; StringBuilder_t * L_16 = *((StringBuilder_t **)L_15); NullCheck(L_16); StringBuilder_t * L_17; L_17 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_16, _stringLiteralF57952D7922E2538C221F98FBC65352E6DEF8AB3, /*hidden argument*/NULL); return; } IL_0060: { // else if (!m_currentValue) bool L_18 = __this->get_m_currentValue_3(); if (L_18) { goto IL_0075; } } { // sb.Append(": False \n"); StringBuilder_t ** L_19 = ___sb0; StringBuilder_t * L_20 = *((StringBuilder_t **)L_19); NullCheck(L_20); StringBuilder_t * L_21; L_21 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_20, _stringLiteral75C161F9DC3BCB0CC29B7D4D4C35DA27A0177ADB, /*hidden argument*/NULL); } IL_0075: { // } 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 // System.Void OVRGLTFLoader/<>c__DisplayClass16_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass16_0__ctor_mF75182BB32B6154C9D22B96450A2F76767FAD2F1 (U3CU3Ec__DisplayClass16_0_t0F271AD861E4457446EA28F2A62A60968C4B1C2E * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void OVRGLTFLoader/<>c__DisplayClass16_0::b__0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass16_0_U3CProcessMeshU3Eb__0_mF320089C4107B9781EA0364A29D6E3EF66DF475E (U3CU3Ec__DisplayClass16_0_t0F271AD861E4457446EA28F2A62A60968C4B1C2E * __this, const RuntimeMethod* method) { { // transcodeTask = Task.Run(() => { TranscodeTexture(ref matData.texture); }); OVRGLTFLoader_t3BBB7B7E8C50F50DCC355934FB388034F1C05A01 * L_0 = __this->get_U3CU3E4__this_0(); OVRMaterialData_t6DCB664B2853F13A60002CD9CF46126312AB7455 * L_1 = __this->get_address_of_matData_1(); OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 * L_2 = L_1->get_address_of_texture_2(); NullCheck(L_0); OVRGLTFLoader_TranscodeTexture_m2B4162943662DC3A6214F74EC4C82D2896475B96(L_0, (OVRTextureData_t4B64590E2D026B72000F7C1F7E1552B5C70C80C6 *)L_2, /*hidden argument*/NULL); // transcodeTask = Task.Run(() => { TranscodeTexture(ref matData.texture); }); 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 // System.Void OVRHandTest/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m5F6D7D264AF843E105EC1865A707CB3C3C6E5BBB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * L_0 = (U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F *)il2cpp_codegen_object_new(U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_il2cpp_TypeInfo_var); U3CU3Ec__ctor_mF834BC38CCEABB6F77EFF191E0DC719E7FAFDDB8(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void OVRHandTest/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_mF834BC38CCEABB6F77EFF191E0DC719E7FAFDDB8 (U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Boolean OVRHandTest/<>c::b__14_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3CStartU3Eb__14_0_m453394582E0C6BCBE61FDFD80C169910A3B7F200 (U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // new BoolMonitor("One", () => OVRInput.Get(OVRInput.Button.One)), IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); bool L_0; L_0 = OVRInput_Get_m0C7655F5F5118ADD5F3B5BDE2E9741E654329E91(1, ((int32_t)-2147483648LL), /*hidden argument*/NULL); return L_0; } } // System.Boolean OVRHandTest/<>c::<.cctor>b__19_0() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec_U3C_cctorU3Eb__19_0_m522F583882D721684B070D4299CA90604969FBDF (U3CU3Ec_t3D5DE16F2659F983F258131FA31A31DE646D474F * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Controller_tEEDA108639533B73057BAE8B95FE21725355C48F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // static BoolMonitor controllers = new BoolMonitor("Controllers Changed", () => { return OVRInput.GetConnectedControllers().ToString() != prevConnected; }); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRInput_GetConnectedControllers_mE69D0392FF67E9784E5116130E895E57E8C81FD1_inline(/*hidden argument*/NULL); V_0 = L_0; RuntimeObject * L_1 = Box(Controller_tEEDA108639533B73057BAE8B95FE21725355C48F_il2cpp_TypeInfo_var, (&V_0)); NullCheck(L_1); String_t* L_2; L_2 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_1); V_0 = *(int32_t*)UnBox(L_1); IL2CPP_RUNTIME_CLASS_INIT(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_il2cpp_TypeInfo_var); String_t* L_3 = ((OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_StaticFields*)il2cpp_codegen_static_fields_for(OVRHandTest_t0E2E855DDF7B25EE80A0760B9A6F1C5BC82722DF_il2cpp_TypeInfo_var))->get_prevConnected_17(); bool L_4; L_4 = String_op_Inequality_m45BEBD9C59D474454BD0F4AB6C9A8A2D05D40DBE(L_2, L_3, /*hidden argument*/NULL); 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 OVRHandTest/BoolMonitor::.ctor(System.String,OVRHandTest/BoolMonitor/BoolGenerator,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoolMonitor__ctor_m7C3BA815F28705760ADE1CEAD9DAF1762C92665E (BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 * __this, String_t* ___name0, BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * ___generator1, float ___displayTimeout2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); s_Il2CppMethodInitialized = true; } { // private string m_name = ""; __this->set_m_name_0(_stringLiteralDA39A3EE5E6B4B0D3255BFEF95601890AFD80709); // public BoolMonitor(string name, BoolGenerator generator, float displayTimeout = 0.5f) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // m_name = name; String_t* L_0 = ___name0; __this->set_m_name_0(L_0); // m_generator = generator; BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * L_1 = ___generator1; __this->set_m_generator_1(L_1); // m_displayTimeout = displayTimeout; float L_2 = ___displayTimeout2; __this->set_m_displayTimeout_5(L_2); // } return; } } // System.Void OVRHandTest/BoolMonitor::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoolMonitor_Update_mF6F2D9B0541FF10B6A86B95ABD8157874826C9A1 (BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 * __this, const RuntimeMethod* method) { { // m_prevValue = m_currentValue; bool L_0 = __this->get_m_currentValue_3(); __this->set_m_prevValue_2(L_0); // m_currentValue = m_generator(); BoolGenerator_tA4243826AF1B7C9568E961263BB190F9DD9CDC3A * L_1 = __this->get_m_generator_1(); NullCheck(L_1); bool L_2; L_2 = BoolGenerator_Invoke_m718F1A0DF19B4A491CD4A5B837D1796BB10AA2E1(L_1, /*hidden argument*/NULL); __this->set_m_currentValue_3(L_2); // if (m_currentValue != m_prevValue) bool L_3 = __this->get_m_currentValue_3(); bool L_4 = __this->get_m_prevValue_2(); if ((((int32_t)L_3) == ((int32_t)L_4))) { goto IL_003e; } } { // m_currentValueRecentlyChanged = true; __this->set_m_currentValueRecentlyChanged_4((bool)1); // m_displayTimer = m_displayTimeout; float L_5 = __this->get_m_displayTimeout_5(); __this->set_m_displayTimer_6(L_5); } IL_003e: { // if (m_displayTimer > 0.0f) float L_6 = __this->get_m_displayTimer_6(); if ((!(((float)L_6) > ((float)(0.0f))))) { goto IL_007c; } } { // m_displayTimer -= Time.deltaTime; float L_7 = __this->get_m_displayTimer_6(); float L_8; L_8 = Time_get_deltaTime_mF558623BBB4EE65C8810243B05ED204A9E8D6FD1(/*hidden argument*/NULL); __this->set_m_displayTimer_6(((float)il2cpp_codegen_subtract((float)L_7, (float)L_8))); // if (m_displayTimer <= 0.0f) float L_9 = __this->get_m_displayTimer_6(); if ((!(((float)L_9) <= ((float)(0.0f))))) { goto IL_007c; } } { // m_currentValueRecentlyChanged = false; __this->set_m_currentValueRecentlyChanged_4((bool)0); // m_displayTimer = 0.0f; __this->set_m_displayTimer_6((0.0f)); } IL_007c: { // } return; } } // System.Void OVRHandTest/BoolMonitor::AppendToStringBuilder(System.Text.StringBuilder&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoolMonitor_AppendToStringBuilder_m3FB33BA374A8FA29E741D44036463DEBA83D65F9 (BoolMonitor_t4BB3E4B514A9C95FA0E4116F0CEA9A3805AC4626 * __this, StringBuilder_t ** ___sb0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3CD8BA18F33960DD303C36F2DB2999FE7B59D6AB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral75C161F9DC3BCB0CC29B7D4D4C35DA27A0177ADB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82097C506C2DF7D20A917D134A69D64749DA1B9E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralF57952D7922E2538C221F98FBC65352E6DEF8AB3); s_Il2CppMethodInitialized = true; } { // sb.Append(m_name); StringBuilder_t ** L_0 = ___sb0; StringBuilder_t * L_1 = *((StringBuilder_t **)L_0); String_t* L_2 = __this->get_m_name_0(); NullCheck(L_1); StringBuilder_t * L_3; L_3 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_1, L_2, /*hidden argument*/NULL); // if (m_currentValue && m_currentValueRecentlyChanged) bool L_4 = __this->get_m_currentValue_3(); if (!L_4) { goto IL_002c; } } { bool L_5 = __this->get_m_currentValueRecentlyChanged_4(); if (!L_5) { goto IL_002c; } } { // sb.Append(": *True*\n"); StringBuilder_t ** L_6 = ___sb0; StringBuilder_t * L_7 = *((StringBuilder_t **)L_6); NullCheck(L_7); StringBuilder_t * L_8; L_8 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_7, _stringLiteral82097C506C2DF7D20A917D134A69D64749DA1B9E, /*hidden argument*/NULL); return; } IL_002c: { // else if (m_currentValue) bool L_9 = __this->get_m_currentValue_3(); if (!L_9) { goto IL_0042; } } { // sb.Append(": True \n"); StringBuilder_t ** L_10 = ___sb0; StringBuilder_t * L_11 = *((StringBuilder_t **)L_10); NullCheck(L_11); StringBuilder_t * L_12; L_12 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_11, _stringLiteral3CD8BA18F33960DD303C36F2DB2999FE7B59D6AB, /*hidden argument*/NULL); return; } IL_0042: { // else if (!m_currentValue && m_currentValueRecentlyChanged) bool L_13 = __this->get_m_currentValue_3(); if (L_13) { goto IL_0060; } } { bool L_14 = __this->get_m_currentValueRecentlyChanged_4(); if (!L_14) { goto IL_0060; } } { // sb.Append(": *False*\n"); StringBuilder_t ** L_15 = ___sb0; StringBuilder_t * L_16 = *((StringBuilder_t **)L_15); NullCheck(L_16); StringBuilder_t * L_17; L_17 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_16, _stringLiteralF57952D7922E2538C221F98FBC65352E6DEF8AB3, /*hidden argument*/NULL); return; } IL_0060: { // else if (!m_currentValue) bool L_18 = __this->get_m_currentValue_3(); if (L_18) { goto IL_0075; } } { // sb.Append(": False \n"); StringBuilder_t ** L_19 = ___sb0; StringBuilder_t * L_20 = *((StringBuilder_t **)L_19); NullCheck(L_20); StringBuilder_t * L_21; L_21 = StringBuilder_Append_mD02AB0C74C6F55E3E330818C77EC147E22096FB1(L_20, _stringLiteral75C161F9DC3BCB0CC29B7D4D4C35DA27A0177ADB, /*hidden argument*/NULL); } IL_0075: { // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Int32 OVRHaptics/Config::get_SampleRateHz() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Config_get_SampleRateHz_m45E819F80B37F4AC7C331CD39034A8D7D4C5EAD7 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleRateHz { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CSampleRateHzU3Ek__BackingField_0(); return L_0; } } // System.Void OVRHaptics/Config::set_SampleRateHz(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_set_SampleRateHz_m48E7FC722F2D42F5D46AD48199E7D773317250B4 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleRateHz { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CSampleRateHzU3Ek__BackingField_0(L_0); return; } } // System.Int32 OVRHaptics/Config::get_SampleSizeInBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleSizeInBytes { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CSampleSizeInBytesU3Ek__BackingField_1(); return L_0; } } // System.Void OVRHaptics/Config::set_SampleSizeInBytes(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_set_SampleSizeInBytes_mCCC67F96D962BF8D0E61CAEC128C784A53D3E907 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleSizeInBytes { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CSampleSizeInBytesU3Ek__BackingField_1(L_0); return; } } // System.Int32 OVRHaptics/Config::get_MinimumSafeSamplesQueued() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Config_get_MinimumSafeSamplesQueued_mCEBAF0B38B5AD27F8DD0DB8C3AA530548387C8C1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumSafeSamplesQueued { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2(); return L_0; } } // System.Void OVRHaptics/Config::set_MinimumSafeSamplesQueued(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_set_MinimumSafeSamplesQueued_m2EADCEE20E46F8C2B355824A12AD22507A38EF4E (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumSafeSamplesQueued { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2(L_0); return; } } // System.Int32 OVRHaptics/Config::get_MinimumBufferSamplesCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Config_get_MinimumBufferSamplesCount_mE72E1FD6B3B23880513288DD0CB5F0A448AF351A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumBufferSamplesCount { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CMinimumBufferSamplesCountU3Ek__BackingField_3(); return L_0; } } // System.Void OVRHaptics/Config::set_MinimumBufferSamplesCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_set_MinimumBufferSamplesCount_m44166FE4957A9B042D3AD3BEB89AFF0EFD852BAD (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumBufferSamplesCount { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CMinimumBufferSamplesCountU3Ek__BackingField_3(L_0); return; } } // System.Int32 OVRHaptics/Config::get_OptimalBufferSamplesCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Config_get_OptimalBufferSamplesCount_m51A44D4296DCE12443B1681CC4D957B36D7601DB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int OptimalBufferSamplesCount { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3COptimalBufferSamplesCountU3Ek__BackingField_4(); return L_0; } } // System.Void OVRHaptics/Config::set_OptimalBufferSamplesCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_set_OptimalBufferSamplesCount_m149557E874B4853790BE300488395114EC1E77F9 (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int OptimalBufferSamplesCount { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3COptimalBufferSamplesCountU3Ek__BackingField_4(L_0); return; } } // System.Int32 OVRHaptics/Config::get_MaximumBufferSamplesCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Config_get_MaximumBufferSamplesCount_mCF860AA8971C6A238861BB6BC29C4F7B75E106D7 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MaximumBufferSamplesCount { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CMaximumBufferSamplesCountU3Ek__BackingField_5(); return L_0; } } // System.Void OVRHaptics/Config::set_MaximumBufferSamplesCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_set_MaximumBufferSamplesCount_mC7FFDDE148F49BE1B1AA6DC5647799EAE485D16D (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MaximumBufferSamplesCount { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CMaximumBufferSamplesCountU3Ek__BackingField_5(L_0); return; } } // System.Void OVRHaptics/Config::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config__cctor_m2D1D38C650B4FA991FE9B91A2888793D92F522FE (const RuntimeMethod* method) { { // Load(); Config_Load_mA326CFD0A599CBBAB58D50CDFC38BB08DCD8A903(/*hidden argument*/NULL); // } return; } } // System.Void OVRHaptics/Config::Load() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Config_Load_mA326CFD0A599CBBAB58D50CDFC38BB08DCD8A903 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // OVRPlugin.HapticsDesc desc = OVRPlugin.GetControllerHapticsDesc((uint)OVRPlugin.Controller.RTouch); IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 L_0; L_0 = OVRPlugin_GetControllerHapticsDesc_mA533D6189012DF98C9BAC0168AEE6829308BC9ED(2, /*hidden argument*/NULL); // SampleRateHz = desc.SampleRateHz; HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 L_1 = L_0; int32_t L_2 = L_1.get_SampleRateHz_0(); IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); Config_set_SampleRateHz_m48E7FC722F2D42F5D46AD48199E7D773317250B4_inline(L_2, /*hidden argument*/NULL); // SampleSizeInBytes = desc.SampleSizeInBytes; HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 L_3 = L_1; int32_t L_4 = L_3.get_SampleSizeInBytes_1(); Config_set_SampleSizeInBytes_mCCC67F96D962BF8D0E61CAEC128C784A53D3E907_inline(L_4, /*hidden argument*/NULL); // MinimumSafeSamplesQueued = desc.MinimumSafeSamplesQueued; HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 L_5 = L_3; int32_t L_6 = L_5.get_MinimumSafeSamplesQueued_2(); Config_set_MinimumSafeSamplesQueued_m2EADCEE20E46F8C2B355824A12AD22507A38EF4E_inline(L_6, /*hidden argument*/NULL); // MinimumBufferSamplesCount = desc.MinimumBufferSamplesCount; HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 L_7 = L_5; int32_t L_8 = L_7.get_MinimumBufferSamplesCount_3(); Config_set_MinimumBufferSamplesCount_m44166FE4957A9B042D3AD3BEB89AFF0EFD852BAD_inline(L_8, /*hidden argument*/NULL); // OptimalBufferSamplesCount = desc.OptimalBufferSamplesCount; HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 L_9 = L_7; int32_t L_10 = L_9.get_OptimalBufferSamplesCount_4(); Config_set_OptimalBufferSamplesCount_m149557E874B4853790BE300488395114EC1E77F9_inline(L_10, /*hidden argument*/NULL); // MaximumBufferSamplesCount = desc.MaximumBufferSamplesCount; int32_t L_11 = L_9.get_MaximumBufferSamplesCount_5(); Config_set_MaximumBufferSamplesCount_mC7FFDDE148F49BE1B1AA6DC5647799EAE485D16D_inline(L_11, /*hidden argument*/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 OVRHaptics/OVRHapticsChannel::.ctor(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsChannel__ctor_m04A22A48E1B4D080A608B735A8062DEBAB4BFCF1 (OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * __this, uint32_t ___outputIndex0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public OVRHapticsChannel(uint outputIndex) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // m_output = m_outputs[outputIndex]; IL2CPP_RUNTIME_CLASS_INIT(OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_il2cpp_TypeInfo_var); OVRHapticsOutputU5BU5D_t0F2C11C9BD9F36931FAD556406FAD1CB5B33004D* L_0 = ((OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_StaticFields*)il2cpp_codegen_static_fields_for(OVRHaptics_tDFACD664490CECB67959ACEB77A341FF1EBCAF74_il2cpp_TypeInfo_var))->get_m_outputs_3(); uint32_t L_1 = ___outputIndex0; NullCheck(L_0); uint32_t L_2 = L_1; OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * L_3 = (L_0)->GetAt(static_cast(L_2)); __this->set_m_output_0(L_3); // } return; } } // System.Void OVRHaptics/OVRHapticsChannel::Preempt(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsChannel_Preempt_m6BE7EEA570D90494C29B4F192C333013C1916E4F (OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method) { { // m_output.Preempt(clip); OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * L_0 = __this->get_m_output_0(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_1 = ___clip0; NullCheck(L_0); OVRHapticsOutput_Preempt_m2F790F50FBAB2B2F852E3E410927F75F02086702(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void OVRHaptics/OVRHapticsChannel::Queue(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsChannel_Queue_m37358933D751542F5A7419DBC879D77C3FFB40D7 (OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method) { { // m_output.Queue(clip); OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * L_0 = __this->get_m_output_0(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_1 = ___clip0; NullCheck(L_0); OVRHapticsOutput_Queue_m202AFDA6E8CA0B6B469B4ED95713D9558C73E948(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void OVRHaptics/OVRHapticsChannel::Mix(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsChannel_Mix_m821CF61727B1CEF4F59FE0DED0F43B6BC74F92E1 (OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method) { { // m_output.Mix(clip); OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * L_0 = __this->get_m_output_0(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_1 = ___clip0; NullCheck(L_0); OVRHapticsOutput_Mix_mA21886B0DFDA23241E9678573FC654F436541748(L_0, L_1, /*hidden argument*/NULL); // } return; } } // System.Void OVRHaptics/OVRHapticsChannel::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsChannel_Clear_mC692AAF3E1D46AD800A208997E4CFC6DC1299FCA (OVRHapticsChannel_t6FC902044604FAEA5D2DB1AA3823E72EDFB2CF05 * __this, const RuntimeMethod* method) { { // m_output.Clear(); OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * L_0 = __this->get_m_output_0(); NullCheck(L_0); OVRHapticsOutput_Clear_mF162BD80B90B60DCF9057953F423526190D9AF41(L_0, /*hidden argument*/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 OVRHaptics/OVRHapticsOutput::.ctor(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput__ctor_mC9320993425C8F1CA7FAAFFDFEF819744641CB33 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, uint32_t ___controller0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_m6C3621F4A8BFF62170632AEEA2475A91D4F43E9F_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private bool m_lowLatencyMode = true; __this->set_m_lowLatencyMode_0((bool)1); // private bool m_paddingEnabled = true; __this->set_m_paddingEnabled_1((bool)1); // private List m_pendingClips = new List(); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_0 = (List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D *)il2cpp_codegen_object_new(List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D_il2cpp_TypeInfo_var); List_1__ctor_m6C3621F4A8BFF62170632AEEA2475A91D4F43E9F(L_0, /*hidden argument*/List_1__ctor_m6C3621F4A8BFF62170632AEEA2475A91D4F43E9F_RuntimeMethod_var); __this->set_m_pendingClips_7(L_0); // private OVRNativeBuffer m_nativeBuffer = new OVRNativeBuffer(OVRHaptics.Config.MaximumBufferSamplesCount * OVRHaptics.Config.SampleSizeInBytes); IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Config_get_MaximumBufferSamplesCount_mCF860AA8971C6A238861BB6BC29C4F7B75E106D7_inline(/*hidden argument*/NULL); int32_t L_2; L_2 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * L_3 = (OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 *)il2cpp_codegen_object_new(OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0_il2cpp_TypeInfo_var); OVRNativeBuffer__ctor_m304817998F6259A4ADDFEB1C9EC47549380E9360(L_3, ((int32_t)il2cpp_codegen_multiply((int32_t)L_1, (int32_t)L_2)), /*hidden argument*/NULL); __this->set_m_nativeBuffer_9(L_3); // private OVRHapticsClip m_paddingClip = new OVRHapticsClip(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_4 = (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 *)il2cpp_codegen_object_new(OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619_il2cpp_TypeInfo_var); OVRHapticsClip__ctor_m8A2E322192FE9E73FA3B59331729BA49C920F964(L_4, /*hidden argument*/NULL); __this->set_m_paddingClip_10(L_4); // public OVRHapticsOutput(uint controller) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // m_controller = controller; uint32_t L_5 = ___controller0; __this->set_m_controller_8(L_5); // } return; } } // System.Void OVRHaptics/OVRHapticsOutput::Process() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Process_mE773255784899CDA1268947E709AF10438358F81 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 V_0; memset((&V_0), 0, sizeof(V_0)); float V_1 = 0.0f; int32_t V_2 = 0; int32_t V_3 = 0; int32_t V_4 = 0; int32_t V_5 = 0; float V_6 = 0.0f; int32_t V_7 = 0; int32_t V_8 = 0; int32_t V_9 = 0; int32_t V_10 = 0; int32_t V_11 = 0; int32_t V_12 = 0; int32_t V_13 = 0; int32_t V_14 = 0; int32_t V_15 = 0; int32_t V_16 = 0; int32_t V_17 = 0; int32_t V_18 = 0; HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E V_19; memset((&V_19), 0, sizeof(V_19)); { // var hapticsState = OVRPlugin.GetControllerHapticsState(m_controller); uint32_t L_0 = __this->get_m_controller_8(); IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_1; L_1 = OVRPlugin_GetControllerHapticsState_m4DB3B633B168BC802675F2468FBE3CF250BB417B(L_0, /*hidden argument*/NULL); V_0 = L_1; // float elapsedTime = Time.realtimeSinceStartup - m_prevSamplesQueuedTime; float L_2; L_2 = Time_get_realtimeSinceStartup_mA52B7B2C92FF893E5EAB8264B017E7464792BB36(/*hidden argument*/NULL); float L_3 = __this->get_m_prevSamplesQueuedTime_3(); V_1 = ((float)il2cpp_codegen_subtract((float)L_2, (float)L_3)); // if (m_prevSamplesQueued > 0) int32_t L_4 = __this->get_m_prevSamplesQueued_2(); if ((((int32_t)L_4) <= ((int32_t)0))) { goto IL_009d; } } { // int expectedSamples = m_prevSamplesQueued - (int)(elapsedTime * OVRHaptics.Config.SampleRateHz + 0.5f); int32_t L_5 = __this->get_m_prevSamplesQueued_2(); float L_6 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_7; L_7 = Config_get_SampleRateHz_m45E819F80B37F4AC7C331CD39034A8D7D4C5EAD7_inline(/*hidden argument*/NULL); V_5 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_5, (int32_t)il2cpp_codegen_cast_double_to_int(((float)il2cpp_codegen_add((float)((float)il2cpp_codegen_multiply((float)L_6, (float)((float)((float)L_7)))), (float)(0.5f)))))); // if (expectedSamples < 0) int32_t L_8 = V_5; if ((((int32_t)L_8) >= ((int32_t)0))) { goto IL_0042; } } { // expectedSamples = 0; V_5 = 0; } IL_0042: { // if ((hapticsState.SamplesQueued - expectedSamples) == 0) HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_9 = V_0; int32_t L_10 = L_9.get_SamplesQueued_1(); int32_t L_11 = V_5; if (((int32_t)il2cpp_codegen_subtract((int32_t)L_10, (int32_t)L_11))) { goto IL_005d; } } { // m_numPredictionHits++; int32_t L_12 = __this->get_m_numPredictionHits_4(); __this->set_m_numPredictionHits_4(((int32_t)il2cpp_codegen_add((int32_t)L_12, (int32_t)1))); goto IL_006b; } IL_005d: { // m_numPredictionMisses++; int32_t L_13 = __this->get_m_numPredictionMisses_5(); __this->set_m_numPredictionMisses_5(((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)1))); } IL_006b: { // if ((expectedSamples > 0) && (hapticsState.SamplesQueued == 0)) int32_t L_14 = V_5; if ((((int32_t)L_14) <= ((int32_t)0))) { goto IL_0086; } } { HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_15 = V_0; int32_t L_16 = L_15.get_SamplesQueued_1(); if (L_16) { goto IL_0086; } } { // m_numUnderruns++; int32_t L_17 = __this->get_m_numUnderruns_6(); __this->set_m_numUnderruns_6(((int32_t)il2cpp_codegen_add((int32_t)L_17, (int32_t)1))); } IL_0086: { // m_prevSamplesQueued = hapticsState.SamplesQueued; HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_18 = V_0; int32_t L_19 = L_18.get_SamplesQueued_1(); __this->set_m_prevSamplesQueued_2(L_19); // m_prevSamplesQueuedTime = Time.realtimeSinceStartup; float L_20; L_20 = Time_get_realtimeSinceStartup_mA52B7B2C92FF893E5EAB8264B017E7464792BB36(/*hidden argument*/NULL); __this->set_m_prevSamplesQueuedTime_3(L_20); } IL_009d: { // int desiredSamplesCount = OVRHaptics.Config.OptimalBufferSamplesCount; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_21; L_21 = Config_get_OptimalBufferSamplesCount_m51A44D4296DCE12443B1681CC4D957B36D7601DB_inline(/*hidden argument*/NULL); V_2 = L_21; // if (m_lowLatencyMode) bool L_22 = __this->get_m_lowLatencyMode_0(); if (!L_22) { goto IL_00dd; } } { // float sampleRateMs = 1000.0f / (float)OVRHaptics.Config.SampleRateHz; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_23; L_23 = Config_get_SampleRateHz_m45E819F80B37F4AC7C331CD39034A8D7D4C5EAD7_inline(/*hidden argument*/NULL); V_6 = ((float)((float)(1000.0f)/(float)((float)((float)L_23)))); // float elapsedMs = elapsedTime * 1000.0f; float L_24 = V_1; // int samplesNeededPerFrame = (int)Mathf.Ceil(elapsedMs / sampleRateMs); float L_25 = V_6; float L_26; L_26 = ceilf(((float)((float)((float)il2cpp_codegen_multiply((float)L_24, (float)(1000.0f)))/(float)L_25))); V_7 = il2cpp_codegen_cast_double_to_int(L_26); // int lowLatencySamplesCount = OVRHaptics.Config.MinimumSafeSamplesQueued + samplesNeededPerFrame; int32_t L_27; L_27 = Config_get_MinimumSafeSamplesQueued_mCEBAF0B38B5AD27F8DD0DB8C3AA530548387C8C1_inline(/*hidden argument*/NULL); int32_t L_28 = V_7; V_8 = ((int32_t)il2cpp_codegen_add((int32_t)L_27, (int32_t)L_28)); // if (lowLatencySamplesCount < desiredSamplesCount) int32_t L_29 = V_8; int32_t L_30 = V_2; if ((((int32_t)L_29) >= ((int32_t)L_30))) { goto IL_00dd; } } { // desiredSamplesCount = lowLatencySamplesCount; int32_t L_31 = V_8; V_2 = L_31; } IL_00dd: { // if (hapticsState.SamplesQueued > desiredSamplesCount) HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_32 = V_0; int32_t L_33 = L_32.get_SamplesQueued_1(); int32_t L_34 = V_2; if ((((int32_t)L_33) <= ((int32_t)L_34))) { goto IL_00e7; } } { // return; return; } IL_00e7: { // if (desiredSamplesCount > OVRHaptics.Config.MaximumBufferSamplesCount) int32_t L_35 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_36; L_36 = Config_get_MaximumBufferSamplesCount_mCF860AA8971C6A238861BB6BC29C4F7B75E106D7_inline(/*hidden argument*/NULL); if ((((int32_t)L_35) <= ((int32_t)L_36))) { goto IL_00f5; } } { // desiredSamplesCount = OVRHaptics.Config.MaximumBufferSamplesCount; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_37; L_37 = Config_get_MaximumBufferSamplesCount_mCF860AA8971C6A238861BB6BC29C4F7B75E106D7_inline(/*hidden argument*/NULL); V_2 = L_37; } IL_00f5: { // if (desiredSamplesCount > hapticsState.SamplesAvailable) int32_t L_38 = V_2; HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_39 = V_0; int32_t L_40 = L_39.get_SamplesAvailable_0(); if ((((int32_t)L_38) <= ((int32_t)L_40))) { goto IL_0105; } } { // desiredSamplesCount = hapticsState.SamplesAvailable; HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_41 = V_0; int32_t L_42 = L_41.get_SamplesAvailable_0(); V_2 = L_42; } IL_0105: { // int acquiredSamplesCount = 0; V_3 = 0; // int clipIndex = 0; V_4 = 0; goto IL_01cf; } IL_010f: { // int numSamplesToCopy = desiredSamplesCount - acquiredSamplesCount; int32_t L_43 = V_2; int32_t L_44 = V_3; V_9 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_43, (int32_t)L_44)); // int remainingSamplesInClip = m_pendingClips[clipIndex].Clip.Count - m_pendingClips[clipIndex].ReadCount; List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_45 = __this->get_m_pendingClips_7(); int32_t L_46 = V_4; NullCheck(L_45); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_47; L_47 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_45, L_46, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_47); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_48; L_48 = ClipPlaybackTracker_get_Clip_m406D857D7C0335FF2F7A3A08B48B5A113E20B274_inline(L_47, /*hidden argument*/NULL); NullCheck(L_48); int32_t L_49; L_49 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_48, /*hidden argument*/NULL); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_50 = __this->get_m_pendingClips_7(); int32_t L_51 = V_4; NullCheck(L_50); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_52; L_52 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_50, L_51, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_52); int32_t L_53; L_53 = ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline(L_52, /*hidden argument*/NULL); V_10 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_49, (int32_t)L_53)); // if (numSamplesToCopy > remainingSamplesInClip) int32_t L_54 = V_9; int32_t L_55 = V_10; if ((((int32_t)L_54) <= ((int32_t)L_55))) { goto IL_014a; } } { // numSamplesToCopy = remainingSamplesInClip; int32_t L_56 = V_10; V_9 = L_56; } IL_014a: { // if (numSamplesToCopy > 0) int32_t L_57 = V_9; if ((((int32_t)L_57) <= ((int32_t)0))) { goto IL_01c9; } } { // int numBytes = numSamplesToCopy * OVRHaptics.Config.SampleSizeInBytes; int32_t L_58 = V_9; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_59; L_59 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); V_11 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_58, (int32_t)L_59)); // int dstOffset = acquiredSamplesCount * OVRHaptics.Config.SampleSizeInBytes; int32_t L_60 = V_3; int32_t L_61; L_61 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); V_12 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_60, (int32_t)L_61)); // int srcOffset = m_pendingClips[clipIndex].ReadCount * OVRHaptics.Config.SampleSizeInBytes; List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_62 = __this->get_m_pendingClips_7(); int32_t L_63 = V_4; NullCheck(L_62); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_64; L_64 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_62, L_63, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_64); int32_t L_65; L_65 = ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline(L_64, /*hidden argument*/NULL); int32_t L_66; L_66 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); V_13 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_65, (int32_t)L_66)); // Marshal.Copy(m_pendingClips[clipIndex].Clip.Samples, srcOffset, m_nativeBuffer.GetPointer(dstOffset), numBytes); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_67 = __this->get_m_pendingClips_7(); int32_t L_68 = V_4; NullCheck(L_67); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_69; L_69 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_67, L_68, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_69); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_70; L_70 = ClipPlaybackTracker_get_Clip_m406D857D7C0335FF2F7A3A08B48B5A113E20B274_inline(L_69, /*hidden argument*/NULL); NullCheck(L_70); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_71; L_71 = OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline(L_70, /*hidden argument*/NULL); int32_t L_72 = V_13; OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * L_73 = __this->get_m_nativeBuffer_9(); int32_t L_74 = V_12; NullCheck(L_73); intptr_t L_75; L_75 = OVRNativeBuffer_GetPointer_m61A123341F7B0B70D30E66E6E94EEE7C8142603E(L_73, L_74, /*hidden argument*/NULL); int32_t L_76 = V_11; IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); Marshal_Copy_mBDE4BE8D48B38EEB9AC3CFFD818A3E6B08E55731(L_71, L_72, (intptr_t)L_75, L_76, /*hidden argument*/NULL); // m_pendingClips[clipIndex].ReadCount += numSamplesToCopy; List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_77 = __this->get_m_pendingClips_7(); int32_t L_78 = V_4; NullCheck(L_77); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_79; L_79 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_77, L_78, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_80 = L_79; NullCheck(L_80); int32_t L_81; L_81 = ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline(L_80, /*hidden argument*/NULL); int32_t L_82 = V_9; NullCheck(L_80); ClipPlaybackTracker_set_ReadCount_mE3F84455BAF5189B02E436401E30EAF6CD65364B_inline(L_80, ((int32_t)il2cpp_codegen_add((int32_t)L_81, (int32_t)L_82)), /*hidden argument*/NULL); // acquiredSamplesCount += numSamplesToCopy; int32_t L_83 = V_3; int32_t L_84 = V_9; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_83, (int32_t)L_84)); } IL_01c9: { // clipIndex++; int32_t L_85 = V_4; V_4 = ((int32_t)il2cpp_codegen_add((int32_t)L_85, (int32_t)1)); } IL_01cf: { // while(acquiredSamplesCount < desiredSamplesCount && clipIndex < m_pendingClips.Count) int32_t L_86 = V_3; int32_t L_87 = V_2; if ((((int32_t)L_86) >= ((int32_t)L_87))) { goto IL_01e5; } } { int32_t L_88 = V_4; List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_89 = __this->get_m_pendingClips_7(); NullCheck(L_89); int32_t L_90; L_90 = List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_inline(L_89, /*hidden argument*/List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_RuntimeMethod_var); if ((((int32_t)L_88) < ((int32_t)L_90))) { goto IL_010f; } } IL_01e5: { // for (int i = m_pendingClips.Count - 1; i >= 0 && m_pendingClips.Count > 0; i--) List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_91 = __this->get_m_pendingClips_7(); NullCheck(L_91); int32_t L_92; L_92 = List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_inline(L_91, /*hidden argument*/List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_RuntimeMethod_var); V_14 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_92, (int32_t)1)); goto IL_0234; } IL_01f6: { // if (m_pendingClips[i].ReadCount >= m_pendingClips[i].Clip.Count) List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_93 = __this->get_m_pendingClips_7(); int32_t L_94 = V_14; NullCheck(L_93); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_95; L_95 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_93, L_94, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_95); int32_t L_96; L_96 = ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline(L_95, /*hidden argument*/NULL); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_97 = __this->get_m_pendingClips_7(); int32_t L_98 = V_14; NullCheck(L_97); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_99; L_99 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_97, L_98, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_99); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_100; L_100 = ClipPlaybackTracker_get_Clip_m406D857D7C0335FF2F7A3A08B48B5A113E20B274_inline(L_99, /*hidden argument*/NULL); NullCheck(L_100); int32_t L_101; L_101 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_100, /*hidden argument*/NULL); if ((((int32_t)L_96) < ((int32_t)L_101))) { goto IL_022e; } } { // m_pendingClips.RemoveAt(i); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_102 = __this->get_m_pendingClips_7(); int32_t L_103 = V_14; NullCheck(L_102); List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B(L_102, L_103, /*hidden argument*/List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B_RuntimeMethod_var); } IL_022e: { // for (int i = m_pendingClips.Count - 1; i >= 0 && m_pendingClips.Count > 0; i--) int32_t L_104 = V_14; V_14 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_104, (int32_t)1)); } IL_0234: { // for (int i = m_pendingClips.Count - 1; i >= 0 && m_pendingClips.Count > 0; i--) int32_t L_105 = V_14; if ((((int32_t)L_105) < ((int32_t)0))) { goto IL_0247; } } { List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_106 = __this->get_m_pendingClips_7(); NullCheck(L_106); int32_t L_107; L_107 = List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_inline(L_106, /*hidden argument*/List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_RuntimeMethod_var); if ((((int32_t)L_107) > ((int32_t)0))) { goto IL_01f6; } } IL_0247: { // if (m_paddingEnabled) bool L_108 = __this->get_m_paddingEnabled_1(); if (!L_108) { goto IL_02c2; } } { // int desiredPadding = desiredSamplesCount - (hapticsState.SamplesQueued + acquiredSamplesCount); int32_t L_109 = V_2; HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_110 = V_0; int32_t L_111 = L_110.get_SamplesQueued_1(); int32_t L_112 = V_3; V_15 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_109, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)L_111, (int32_t)L_112)))); // if (desiredPadding < (OVRHaptics.Config.MinimumBufferSamplesCount - acquiredSamplesCount)) int32_t L_113 = V_15; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_114; L_114 = Config_get_MinimumBufferSamplesCount_mE72E1FD6B3B23880513288DD0CB5F0A448AF351A_inline(/*hidden argument*/NULL); int32_t L_115 = V_3; if ((((int32_t)L_113) >= ((int32_t)((int32_t)il2cpp_codegen_subtract((int32_t)L_114, (int32_t)L_115))))) { goto IL_026f; } } { // desiredPadding = (OVRHaptics.Config.MinimumBufferSamplesCount - acquiredSamplesCount); IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_116; L_116 = Config_get_MinimumBufferSamplesCount_mE72E1FD6B3B23880513288DD0CB5F0A448AF351A_inline(/*hidden argument*/NULL); int32_t L_117 = V_3; V_15 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_116, (int32_t)L_117)); } IL_026f: { // if (desiredPadding > hapticsState.SamplesAvailable) int32_t L_118 = V_15; HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_119 = V_0; int32_t L_120 = L_119.get_SamplesAvailable_0(); if ((((int32_t)L_118) <= ((int32_t)L_120))) { goto IL_0281; } } { // desiredPadding = hapticsState.SamplesAvailable; HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_121 = V_0; int32_t L_122 = L_121.get_SamplesAvailable_0(); V_15 = L_122; } IL_0281: { // if (desiredPadding > 0) int32_t L_123 = V_15; if ((((int32_t)L_123) <= ((int32_t)0))) { goto IL_02c2; } } { // int numBytes = desiredPadding * OVRHaptics.Config.SampleSizeInBytes; int32_t L_124 = V_15; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_125; L_125 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); V_16 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_124, (int32_t)L_125)); // int dstOffset = acquiredSamplesCount * OVRHaptics.Config.SampleSizeInBytes; int32_t L_126 = V_3; int32_t L_127; L_127 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); V_17 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_126, (int32_t)L_127)); // int srcOffset = 0; V_18 = 0; // Marshal.Copy(m_paddingClip.Samples, srcOffset, m_nativeBuffer.GetPointer(dstOffset), numBytes); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_128 = __this->get_m_paddingClip_10(); NullCheck(L_128); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_129; L_129 = OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline(L_128, /*hidden argument*/NULL); int32_t L_130 = V_18; OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * L_131 = __this->get_m_nativeBuffer_9(); int32_t L_132 = V_17; NullCheck(L_131); intptr_t L_133; L_133 = OVRNativeBuffer_GetPointer_m61A123341F7B0B70D30E66E6E94EEE7C8142603E(L_131, L_132, /*hidden argument*/NULL); int32_t L_134 = V_16; IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); Marshal_Copy_mBDE4BE8D48B38EEB9AC3CFFD818A3E6B08E55731(L_129, L_130, (intptr_t)L_133, L_134, /*hidden argument*/NULL); // acquiredSamplesCount += desiredPadding; int32_t L_135 = V_3; int32_t L_136 = V_15; V_3 = ((int32_t)il2cpp_codegen_add((int32_t)L_135, (int32_t)L_136)); } IL_02c2: { // if (acquiredSamplesCount > 0) int32_t L_137 = V_3; if ((((int32_t)L_137) <= ((int32_t)0))) { goto IL_0312; } } { // hapticsBuffer.Samples = m_nativeBuffer.GetPointer(); OVRNativeBuffer_t45C08D3101E39570CCF69BCC10204F065D7F5BD0 * L_138 = __this->get_m_nativeBuffer_9(); NullCheck(L_138); intptr_t L_139; L_139 = OVRNativeBuffer_GetPointer_m61A123341F7B0B70D30E66E6E94EEE7C8142603E(L_138, 0, /*hidden argument*/NULL); (&V_19)->set_Samples_0((intptr_t)L_139); // hapticsBuffer.SamplesCount = acquiredSamplesCount; int32_t L_140 = V_3; (&V_19)->set_SamplesCount_1(L_140); // OVRPlugin.SetControllerHaptics(m_controller, hapticsBuffer); uint32_t L_141 = __this->get_m_controller_8(); HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E L_142 = V_19; IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); bool L_143; L_143 = OVRPlugin_SetControllerHaptics_m3191D4466EE0D5159EDAF702F013999F48FDBF67(L_141, L_142, /*hidden argument*/NULL); // hapticsState = OVRPlugin.GetControllerHapticsState(m_controller); uint32_t L_144 = __this->get_m_controller_8(); HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_145; L_145 = OVRPlugin_GetControllerHapticsState_m4DB3B633B168BC802675F2468FBE3CF250BB417B(L_144, /*hidden argument*/NULL); V_0 = L_145; // m_prevSamplesQueued = hapticsState.SamplesQueued; HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 L_146 = V_0; int32_t L_147 = L_146.get_SamplesQueued_1(); __this->set_m_prevSamplesQueued_2(L_147); // m_prevSamplesQueuedTime = Time.realtimeSinceStartup; float L_148; L_148 = Time_get_realtimeSinceStartup_mA52B7B2C92FF893E5EAB8264B017E7464792BB36(/*hidden argument*/NULL); __this->set_m_prevSamplesQueuedTime_3(L_148); } IL_0312: { // } return; } } // System.Void OVRHaptics/OVRHapticsOutput::Preempt(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Preempt_m2F790F50FBAB2B2F852E3E410927F75F02086702 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_pendingClips.Clear(); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_0 = __this->get_m_pendingClips_7(); NullCheck(L_0); List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26(L_0, /*hidden argument*/List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26_RuntimeMethod_var); // m_pendingClips.Add(new ClipPlaybackTracker(clip)); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_1 = __this->get_m_pendingClips_7(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_2 = ___clip0; ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_3 = (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D *)il2cpp_codegen_object_new(ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var); ClipPlaybackTracker__ctor_mE57DE22074C766069FA6C1195D7EBCDE155929CE(L_3, L_2, /*hidden argument*/NULL); NullCheck(L_1); List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C(L_1, L_3, /*hidden argument*/List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C_RuntimeMethod_var); // } return; } } // System.Void OVRHaptics/OVRHapticsOutput::Queue(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Queue_m202AFDA6E8CA0B6B469B4ED95713D9558C73E948 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_pendingClips.Add(new ClipPlaybackTracker(clip)); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_0 = __this->get_m_pendingClips_7(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_1 = ___clip0; ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_2 = (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D *)il2cpp_codegen_object_new(ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var); ClipPlaybackTracker__ctor_mE57DE22074C766069FA6C1195D7EBCDE155929CE(L_2, L_1, /*hidden argument*/NULL); NullCheck(L_0); List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C(L_0, L_2, /*hidden argument*/List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C_RuntimeMethod_var); // } return; } } // System.Void OVRHaptics/OVRHapticsOutput::Mix(OVRHapticsClip) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Mix_mA21886B0DFDA23241E9678573FC654F436541748 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ___clip0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_set_Item_mACD06DBFD3A91D4C8DE94D7A7313CC6E6C8C08B0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; int32_t V_1 = 0; int32_t V_2 = 0; int32_t V_3 = 0; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * V_4 = NULL; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * V_5 = NULL; int32_t V_6 = 0; int32_t V_7 = 0; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * V_8 = NULL; int32_t V_9 = 0; uint8_t V_10 = 0x0; int32_t V_11 = 0; { // int numClipsToMix = 0; V_0 = 0; // int numSamplesToMix = 0; V_1 = 0; // int numSamplesRemaining = clip.Count; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_0 = ___clip0; NullCheck(L_0); int32_t L_1; L_1 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_0, /*hidden argument*/NULL); V_2 = L_1; goto IL_0042; } IL_000d: { // int numSamplesRemainingInClip = m_pendingClips[numClipsToMix].Clip.Count - m_pendingClips[numClipsToMix].ReadCount; List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_2 = __this->get_m_pendingClips_7(); int32_t L_3 = V_0; NullCheck(L_2); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_4; L_4 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_2, L_3, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_4); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_5; L_5 = ClipPlaybackTracker_get_Clip_m406D857D7C0335FF2F7A3A08B48B5A113E20B274_inline(L_4, /*hidden argument*/NULL); NullCheck(L_5); int32_t L_6; L_6 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_5, /*hidden argument*/NULL); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_7 = __this->get_m_pendingClips_7(); int32_t L_8 = V_0; NullCheck(L_7); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_9; L_9 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_7, L_8, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_9); int32_t L_10; L_10 = ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline(L_9, /*hidden argument*/NULL); V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_6, (int32_t)L_10)); // numSamplesRemaining -= numSamplesRemainingInClip; int32_t L_11 = V_2; int32_t L_12 = V_3; V_2 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_11, (int32_t)L_12)); // numSamplesToMix += numSamplesRemainingInClip; int32_t L_13 = V_1; int32_t L_14 = V_3; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_13, (int32_t)L_14)); // numClipsToMix++; int32_t L_15 = V_0; V_0 = ((int32_t)il2cpp_codegen_add((int32_t)L_15, (int32_t)1)); } IL_0042: { // while (numSamplesRemaining > 0 && numClipsToMix < m_pendingClips.Count) int32_t L_16 = V_2; if ((((int32_t)L_16) <= ((int32_t)0))) { goto IL_0054; } } { int32_t L_17 = V_0; List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_18 = __this->get_m_pendingClips_7(); NullCheck(L_18); int32_t L_19; L_19 = List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_inline(L_18, /*hidden argument*/List_1_get_Count_m099144DE2EEA0DF204DAD1ABB28E0DB8CC78CF61_RuntimeMethod_var); if ((((int32_t)L_17) < ((int32_t)L_19))) { goto IL_000d; } } IL_0054: { // if (numSamplesRemaining > 0) int32_t L_20 = V_2; if ((((int32_t)L_20) <= ((int32_t)0))) { goto IL_005e; } } { // numSamplesToMix += numSamplesRemaining; int32_t L_21 = V_1; int32_t L_22 = V_2; V_1 = ((int32_t)il2cpp_codegen_add((int32_t)L_21, (int32_t)L_22)); // numSamplesRemaining = 0; V_2 = 0; } IL_005e: { // if (numClipsToMix > 0) int32_t L_23 = V_0; if ((((int32_t)L_23) <= ((int32_t)0))) { goto IL_018c; } } { // OVRHapticsClip mixClip = new OVRHapticsClip(numSamplesToMix); int32_t L_24 = V_1; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_25 = (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 *)il2cpp_codegen_object_new(OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619_il2cpp_TypeInfo_var); OVRHapticsClip__ctor_m112EF39CD867BEBED5A3822A1C4B0EADCB513F93(L_25, L_24, /*hidden argument*/NULL); V_4 = L_25; // OVRHapticsClip a = clip; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_26 = ___clip0; V_5 = L_26; // int aReadCount = 0; V_6 = 0; // for (int i = 0; i < numClipsToMix; i++) V_7 = 0; goto IL_0128; } IL_007b: { // OVRHapticsClip b = m_pendingClips[i].Clip; List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_27 = __this->get_m_pendingClips_7(); int32_t L_28 = V_7; NullCheck(L_27); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_29; L_29 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_27, L_28, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_29); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_30; L_30 = ClipPlaybackTracker_get_Clip_m406D857D7C0335FF2F7A3A08B48B5A113E20B274_inline(L_29, /*hidden argument*/NULL); V_8 = L_30; // for(int bReadCount = m_pendingClips[i].ReadCount; bReadCount < b.Count; bReadCount++) List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_31 = __this->get_m_pendingClips_7(); int32_t L_32 = V_7; NullCheck(L_31); ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_33; L_33 = List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_inline(L_31, L_32, /*hidden argument*/List_1_get_Item_mF9E4F263A22249040BFCB7F32E3132DFCF0384E4_RuntimeMethod_var); NullCheck(L_33); int32_t L_34; L_34 = ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline(L_33, /*hidden argument*/NULL); V_9 = L_34; goto IL_0117; } IL_00a5: { // if (OVRHaptics.Config.SampleSizeInBytes == 1) IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_35; L_35 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); if ((!(((uint32_t)L_35) == ((uint32_t)1)))) { goto IL_0111; } } { // byte sample = 0; // TODO support multi-byte samples V_10 = (uint8_t)0; // if ((aReadCount < a.Count) && (bReadCount < b.Count)) int32_t L_36 = V_6; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_37 = V_5; NullCheck(L_37); int32_t L_38; L_38 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_37, /*hidden argument*/NULL); if ((((int32_t)L_36) >= ((int32_t)L_38))) { goto IL_00f1; } } { int32_t L_39 = V_9; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_40 = V_8; NullCheck(L_40); int32_t L_41; L_41 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_40, /*hidden argument*/NULL); if ((((int32_t)L_39) >= ((int32_t)L_41))) { goto IL_00f1; } } { // sample = (byte)(Mathf.Clamp(a.Samples[aReadCount] + b.Samples[bReadCount], 0, System.Byte.MaxValue)); // TODO support multi-byte samples OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_42 = V_5; NullCheck(L_42); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_43; L_43 = OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline(L_42, /*hidden argument*/NULL); int32_t L_44 = V_6; NullCheck(L_43); int32_t L_45 = L_44; uint8_t L_46 = (L_43)->GetAt(static_cast(L_45)); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_47 = V_8; NullCheck(L_47); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_48; L_48 = OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline(L_47, /*hidden argument*/NULL); int32_t L_49 = V_9; NullCheck(L_48); int32_t L_50 = L_49; uint8_t L_51 = (L_48)->GetAt(static_cast(L_50)); int32_t L_52; L_52 = Mathf_Clamp_m3899EEB9D73D22E0C4524189E89D36A647581CBF(((int32_t)il2cpp_codegen_add((int32_t)L_46, (int32_t)L_51)), 0, ((int32_t)255), /*hidden argument*/NULL); V_10 = (uint8_t)((int32_t)((uint8_t)L_52)); // aReadCount++; int32_t L_53 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_53, (int32_t)1)); // } goto IL_0108; } IL_00f1: { // else if (bReadCount < b.Count) int32_t L_54 = V_9; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_55 = V_8; NullCheck(L_55); int32_t L_56; L_56 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_55, /*hidden argument*/NULL); if ((((int32_t)L_54) >= ((int32_t)L_56))) { goto IL_0108; } } { // sample = b.Samples[bReadCount]; // TODO support multi-byte samples OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_57 = V_8; NullCheck(L_57); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_58; L_58 = OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline(L_57, /*hidden argument*/NULL); int32_t L_59 = V_9; NullCheck(L_58); int32_t L_60 = L_59; uint8_t L_61 = (L_58)->GetAt(static_cast(L_60)); V_10 = L_61; } IL_0108: { // mixClip.WriteSample(sample); // TODO support multi-byte samples OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_62 = V_4; uint8_t L_63 = V_10; NullCheck(L_62); OVRHapticsClip_WriteSample_m300FC0B99105F3C5523D70CA034EFB113EFBCC5C(L_62, L_63, /*hidden argument*/NULL); } IL_0111: { // for(int bReadCount = m_pendingClips[i].ReadCount; bReadCount < b.Count; bReadCount++) int32_t L_64 = V_9; V_9 = ((int32_t)il2cpp_codegen_add((int32_t)L_64, (int32_t)1)); } IL_0117: { // for(int bReadCount = m_pendingClips[i].ReadCount; bReadCount < b.Count; bReadCount++) int32_t L_65 = V_9; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_66 = V_8; NullCheck(L_66); int32_t L_67; L_67 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_66, /*hidden argument*/NULL); if ((((int32_t)L_65) < ((int32_t)L_67))) { goto IL_00a5; } } { // for (int i = 0; i < numClipsToMix; i++) int32_t L_68 = V_7; V_7 = ((int32_t)il2cpp_codegen_add((int32_t)L_68, (int32_t)1)); } IL_0128: { // for (int i = 0; i < numClipsToMix; i++) int32_t L_69 = V_7; int32_t L_70 = V_0; if ((((int32_t)L_69) < ((int32_t)L_70))) { goto IL_007b; } } { goto IL_0151; } IL_0132: { // if (OVRHaptics.Config.SampleSizeInBytes == 1) IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_71; L_71 = Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline(/*hidden argument*/NULL); if ((!(((uint32_t)L_71) == ((uint32_t)1)))) { goto IL_014b; } } { // mixClip.WriteSample(a.Samples[aReadCount]); // TODO support multi-byte samples OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_72 = V_4; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_73 = V_5; NullCheck(L_73); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_74; L_74 = OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline(L_73, /*hidden argument*/NULL); int32_t L_75 = V_6; NullCheck(L_74); int32_t L_76 = L_75; uint8_t L_77 = (L_74)->GetAt(static_cast(L_76)); NullCheck(L_72); OVRHapticsClip_WriteSample_m300FC0B99105F3C5523D70CA034EFB113EFBCC5C(L_72, L_77, /*hidden argument*/NULL); } IL_014b: { // aReadCount++; int32_t L_78 = V_6; V_6 = ((int32_t)il2cpp_codegen_add((int32_t)L_78, (int32_t)1)); } IL_0151: { // while (aReadCount < a.Count) int32_t L_79 = V_6; OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_80 = V_5; NullCheck(L_80); int32_t L_81; L_81 = OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline(L_80, /*hidden argument*/NULL); if ((((int32_t)L_79) < ((int32_t)L_81))) { goto IL_0132; } } { // m_pendingClips[0] = new ClipPlaybackTracker(mixClip); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_82 = __this->get_m_pendingClips_7(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_83 = V_4; ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_84 = (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D *)il2cpp_codegen_object_new(ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var); ClipPlaybackTracker__ctor_mE57DE22074C766069FA6C1195D7EBCDE155929CE(L_84, L_83, /*hidden argument*/NULL); NullCheck(L_82); List_1_set_Item_mACD06DBFD3A91D4C8DE94D7A7313CC6E6C8C08B0(L_82, 0, L_84, /*hidden argument*/List_1_set_Item_mACD06DBFD3A91D4C8DE94D7A7313CC6E6C8C08B0_RuntimeMethod_var); // for (int i = 1; i < numClipsToMix; i++) V_11 = 1; goto IL_0186; } IL_0174: { // m_pendingClips.RemoveAt(1); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_85 = __this->get_m_pendingClips_7(); NullCheck(L_85); List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B(L_85, 1, /*hidden argument*/List_1_RemoveAt_m7A2E5D9D2C93EC9B7A70CEE7233F9022320B1D9B_RuntimeMethod_var); // for (int i = 1; i < numClipsToMix; i++) int32_t L_86 = V_11; V_11 = ((int32_t)il2cpp_codegen_add((int32_t)L_86, (int32_t)1)); } IL_0186: { // for (int i = 1; i < numClipsToMix; i++) int32_t L_87 = V_11; int32_t L_88 = V_0; if ((((int32_t)L_87) < ((int32_t)L_88))) { goto IL_0174; } } { // } return; } IL_018c: { // m_pendingClips.Add(new ClipPlaybackTracker(clip)); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_89 = __this->get_m_pendingClips_7(); OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_90 = ___clip0; ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * L_91 = (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D *)il2cpp_codegen_object_new(ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D_il2cpp_TypeInfo_var); ClipPlaybackTracker__ctor_mE57DE22074C766069FA6C1195D7EBCDE155929CE(L_91, L_90, /*hidden argument*/NULL); NullCheck(L_89); List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C(L_89, L_91, /*hidden argument*/List_1_Add_m1A32A714F4FA43C62DA919B8C05B9081A945BB9C_RuntimeMethod_var); // } return; } } // System.Void OVRHaptics/OVRHapticsOutput::Clear() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRHapticsOutput_Clear_mF162BD80B90B60DCF9057953F423526190D9AF41 (OVRHapticsOutput_t1E23FA0F95FEFFFDB70D2A6DB08EA6BC4895392D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } { // m_pendingClips.Clear(); List_1_tDCFDB2B400BF106C90217D512EF2630730CB956D * L_0 = __this->get_m_pendingClips_7(); NullCheck(L_0); List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26(L_0, /*hidden argument*/List_1_Clear_m36C62CF188102558A3473C0F711579314C282C26_RuntimeMethod_var); // } return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #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 OVRInput/HapticInfo::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void HapticInfo__ctor_m8B84ECB573C851981793B1E8FF5381F8121ABE6A (HapticInfo_t5B75B40B847C80E79CB9038686288656DB4E82F6 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRInput/OVRControllerBase::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public VirtualButtonMap buttonMap = new VirtualButtonMap(); VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = (VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF *)il2cpp_codegen_object_new(VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF_il2cpp_TypeInfo_var); VirtualButtonMap__ctor_mD2FD033ED69F27398D12C01C47317241B48E0006(L_0, /*hidden argument*/NULL); __this->set_buttonMap_1(L_0); // public VirtualTouchMap touchMap = new VirtualTouchMap(); VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = (VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC *)il2cpp_codegen_object_new(VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC_il2cpp_TypeInfo_var); VirtualTouchMap__ctor_m288C62F96DD0B6F590A27AD83E7C4A6CEC388D0E(L_1, /*hidden argument*/NULL); __this->set_touchMap_2(L_1); // public VirtualNearTouchMap nearTouchMap = new VirtualNearTouchMap(); VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = (VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A *)il2cpp_codegen_object_new(VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A_il2cpp_TypeInfo_var); VirtualNearTouchMap__ctor_mF951560C3DF593A5FA466C71A7FD77995BC02340(L_2, /*hidden argument*/NULL); __this->set_nearTouchMap_3(L_2); // public VirtualAxis1DMap axis1DMap = new VirtualAxis1DMap(); VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = (VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 *)il2cpp_codegen_object_new(VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7_il2cpp_TypeInfo_var); VirtualAxis1DMap__ctor_mEA1355C317D9E2FF4E7A54049A814BB30AAC9167(L_3, /*hidden argument*/NULL); __this->set_axis1DMap_4(L_3); // public VirtualAxis2DMap axis2DMap = new VirtualAxis2DMap(); VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = (VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA *)il2cpp_codegen_object_new(VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA_il2cpp_TypeInfo_var); VirtualAxis2DMap__ctor_m74DC8FC6F437ACF1552D0E39FFC8E878EB6C076E(L_4, /*hidden argument*/NULL); __this->set_axis2DMap_5(L_4); // public bool shouldApplyDeadzone = true; __this->set_shouldApplyDeadzone_8((bool)1); // public OVRControllerBase() Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // ConfigureButtonMap(); VirtActionInvoker0::Invoke(7 /* System.Void OVRInput/OVRControllerBase::ConfigureButtonMap() */, __this); // ConfigureTouchMap(); VirtActionInvoker0::Invoke(8 /* System.Void OVRInput/OVRControllerBase::ConfigureTouchMap() */, __this); // ConfigureNearTouchMap(); VirtActionInvoker0::Invoke(9 /* System.Void OVRInput/OVRControllerBase::ConfigureNearTouchMap() */, __this); // ConfigureAxis1DMap(); VirtActionInvoker0::Invoke(10 /* System.Void OVRInput/OVRControllerBase::ConfigureAxis1DMap() */, __this); // ConfigureAxis2DMap(); VirtActionInvoker0::Invoke(11 /* System.Void OVRInput/OVRControllerBase::ConfigureAxis2DMap() */, __this); // } return; } } // OVRInput/Controller OVRInput/OVRControllerBase::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRControllerBase_Update_m39829A8DB9AF6B49A04737FFE60841800F626F97 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE V_0; memset((&V_0), 0, sizeof(V_0)); { // if (OVRManager.loadedXRDevice == OVRManager.XRDevice.OpenVR && ( (controllerType & Controller.Touch) != 0) ) IL2CPP_RUNTIME_CLASS_INIT(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_il2cpp_TypeInfo_var); int32_t L_0 = ((OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_StaticFields*)il2cpp_codegen_static_fields_for(OVRManager_t6088CD544814E5A64EEB830D130A6816E79D0036_il2cpp_TypeInfo_var))->get_loadedXRDevice_78(); if ((!(((uint32_t)L_0) == ((uint32_t)2)))) { goto IL_0021; } } { int32_t L_1 = __this->get_controllerType_0(); if (!((int32_t)((int32_t)L_1&(int32_t)3))) { goto IL_0021; } } { // state = GetOpenVRControllerState(controllerType); int32_t L_2 = __this->get_controllerType_0(); ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_3; L_3 = OVRControllerBase_GetOpenVRControllerState_mEE32CED95BCFBEC3D6C4A5F8FE009302ECFDC186(__this, L_2, /*hidden argument*/NULL); V_0 = L_3; goto IL_002d; } IL_0021: { // state = OVRPlugin.GetControllerState4((uint)controllerType); int32_t L_4 = __this->get_controllerType_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_5; L_5 = OVRPlugin_GetControllerState4_m9D3C99832FE4B36E667A344C63C42207C31337E3(L_4, /*hidden argument*/NULL); V_0 = L_5; } IL_002d: { // if (state.LIndexTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_6 = V_0; float L_7 = L_6.get_LIndexTrigger_4(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_8 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_7) >= ((float)L_8)))) { goto IL_004a; } } { // state.Buttons |= (uint)RawButton.LIndexTrigger; uint32_t* L_9 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_10 = L_9; int32_t L_11 = *((uint32_t*)L_10); *((int32_t*)L_10) = (int32_t)((int32_t)((int32_t)L_11|(int32_t)((int32_t)268435456))); } IL_004a: { // if (state.LHandTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_12 = V_0; float L_13 = L_12.get_LHandTrigger_6(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_14 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_13) >= ((float)L_14)))) { goto IL_0067; } } { // state.Buttons |= (uint)RawButton.LHandTrigger; uint32_t* L_15 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_16 = L_15; int32_t L_17 = *((uint32_t*)L_16); *((int32_t*)L_16) = (int32_t)((int32_t)((int32_t)L_17|(int32_t)((int32_t)536870912))); } IL_0067: { // if (state.LThumbstick.y >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_18 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_19 = L_18.get_LThumbstick_8(); float L_20 = L_19.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_21 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_20) >= ((float)L_21)))) { goto IL_0086; } } { // state.Buttons |= (uint)RawButton.LThumbstickUp; uint32_t* L_22 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_23 = L_22; int32_t L_24 = *((uint32_t*)L_23); *((int32_t*)L_23) = (int32_t)((int32_t)((int32_t)L_24|(int32_t)((int32_t)16))); } IL_0086: { // if (state.LThumbstick.y <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_25 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_26 = L_25.get_LThumbstick_8(); float L_27 = L_26.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_28 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_27) <= ((float)((-L_28)))))) { goto IL_00a6; } } { // state.Buttons |= (uint)RawButton.LThumbstickDown; uint32_t* L_29 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_30 = L_29; int32_t L_31 = *((uint32_t*)L_30); *((int32_t*)L_30) = (int32_t)((int32_t)((int32_t)L_31|(int32_t)((int32_t)32))); } IL_00a6: { // if (state.LThumbstick.x <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_32 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_33 = L_32.get_LThumbstick_8(); float L_34 = L_33.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_35 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_34) <= ((float)((-L_35)))))) { goto IL_00c6; } } { // state.Buttons |= (uint)RawButton.LThumbstickLeft; uint32_t* L_36 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_37 = L_36; int32_t L_38 = *((uint32_t*)L_37); *((int32_t*)L_37) = (int32_t)((int32_t)((int32_t)L_38|(int32_t)((int32_t)64))); } IL_00c6: { // if (state.LThumbstick.x >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_39 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_40 = L_39.get_LThumbstick_8(); float L_41 = L_40.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_42 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_41) >= ((float)L_42)))) { goto IL_00e8; } } { // state.Buttons |= (uint)RawButton.LThumbstickRight; uint32_t* L_43 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_44 = L_43; int32_t L_45 = *((uint32_t*)L_44); *((int32_t*)L_44) = (int32_t)((int32_t)((int32_t)L_45|(int32_t)((int32_t)128))); } IL_00e8: { // if (state.RIndexTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_46 = V_0; float L_47 = L_46.get_RIndexTrigger_5(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_48 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_47) >= ((float)L_48)))) { goto IL_0105; } } { // state.Buttons |= (uint)RawButton.RIndexTrigger; uint32_t* L_49 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_50 = L_49; int32_t L_51 = *((uint32_t*)L_50); *((int32_t*)L_50) = (int32_t)((int32_t)((int32_t)L_51|(int32_t)((int32_t)67108864))); } IL_0105: { // if (state.RHandTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_52 = V_0; float L_53 = L_52.get_RHandTrigger_7(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_54 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_53) >= ((float)L_54)))) { goto IL_0122; } } { // state.Buttons |= (uint)RawButton.RHandTrigger; uint32_t* L_55 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_56 = L_55; int32_t L_57 = *((uint32_t*)L_56); *((int32_t*)L_56) = (int32_t)((int32_t)((int32_t)L_57|(int32_t)((int32_t)134217728))); } IL_0122: { // if (state.RThumbstick.y >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_58 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_59 = L_58.get_RThumbstick_9(); float L_60 = L_59.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_61 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_60) >= ((float)L_61)))) { goto IL_0144; } } { // state.Buttons |= (uint)RawButton.RThumbstickUp; uint32_t* L_62 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_63 = L_62; int32_t L_64 = *((uint32_t*)L_63); *((int32_t*)L_63) = (int32_t)((int32_t)((int32_t)L_64|(int32_t)((int32_t)4096))); } IL_0144: { // if (state.RThumbstick.y <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_65 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_66 = L_65.get_RThumbstick_9(); float L_67 = L_66.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_68 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_67) <= ((float)((-L_68)))))) { goto IL_0167; } } { // state.Buttons |= (uint)RawButton.RThumbstickDown; uint32_t* L_69 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_70 = L_69; int32_t L_71 = *((uint32_t*)L_70); *((int32_t*)L_70) = (int32_t)((int32_t)((int32_t)L_71|(int32_t)((int32_t)8192))); } IL_0167: { // if (state.RThumbstick.x <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_72 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_73 = L_72.get_RThumbstick_9(); float L_74 = L_73.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_75 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_74) <= ((float)((-L_75)))))) { goto IL_018a; } } { // state.Buttons |= (uint)RawButton.RThumbstickLeft; uint32_t* L_76 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_77 = L_76; int32_t L_78 = *((uint32_t*)L_77); *((int32_t*)L_77) = (int32_t)((int32_t)((int32_t)L_78|(int32_t)((int32_t)16384))); } IL_018a: { // if (state.RThumbstick.x >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_79 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_80 = L_79.get_RThumbstick_9(); float L_81 = L_80.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_82 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_81) >= ((float)L_82)))) { goto IL_01ac; } } { // state.Buttons |= (uint)RawButton.RThumbstickRight; uint32_t* L_83 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_84 = L_83; int32_t L_85 = *((uint32_t*)L_84); *((int32_t*)L_84) = (int32_t)((int32_t)((int32_t)L_85|(int32_t)((int32_t)32768))); } IL_01ac: { // previousState = currentState; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_86 = __this->get_currentState_7(); __this->set_previousState_6(L_86); // currentState = state; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_87 = V_0; __this->set_currentState_7(L_87); // return ((Controller)currentState.ConnectedControllers & controllerType); ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_88 = __this->get_address_of_currentState_7(); uint32_t L_89 = L_88->get_ConnectedControllers_0(); int32_t L_90 = __this->get_controllerType_0(); return (int32_t)(((int32_t)((int32_t)L_89&(int32_t)L_90))); } } // OVRPlugin/ControllerState4 OVRInput/OVRControllerBase::GetOpenVRControllerState(OVRInput/Controller) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE OVRControllerBase_GetOpenVRControllerState_mEE32CED95BCFBEC3D6C4A5F8FE009302ECFDC186 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, int32_t ___controllerType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE V_0; memset((&V_0), 0, sizeof(V_0)); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A V_1; memset((&V_1), 0, sizeof(V_1)); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A V_2; memset((&V_2), 0, sizeof(V_2)); ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * G_B17_0 = NULL; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * G_B16_0 = NULL; int32_t G_B18_0 = 0; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * G_B18_1 = NULL; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * G_B36_0 = NULL; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * G_B35_0 = NULL; int32_t G_B37_0 = 0; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * G_B37_1 = NULL; { // OVRPlugin.ControllerState4 state = new OVRPlugin.ControllerState4(); il2cpp_codegen_initobj((&V_0), sizeof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE )); // if ((controllerType & Controller.LTouch) == Controller.LTouch && IsValidOpenVRDevice(openVRControllerDetails[0].deviceID)) int32_t L_0 = ___controllerType0; if ((!(((uint32_t)((int32_t)((int32_t)L_0&(int32_t)1))) == ((uint32_t)1)))) { goto IL_0199; } } { IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_1 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_1); uint32_t L_2 = ((L_1)->GetAddressAt(static_cast(0)))->get_deviceID_2(); bool L_3; L_3 = OVRInput_IsValidOpenVRDevice_m241D1B7CD98C3980B1941C99179F7429955EFE01(L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0199; } } { // OVR.OpenVR.VRControllerState_t leftControllerState = openVRControllerDetails[0].state; IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_4 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_4); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_5 = ((L_4)->GetAddressAt(static_cast(0)))->get_state_0(); V_1 = L_5; // if ((leftControllerState.ulButtonPressed & ((ulong)OpenVRButton.Two)) == (ulong)OpenVRButton.Two) VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_6 = V_1; uint64_t L_7 = L_6.get_ulButtonPressed_1(); if ((!(((uint64_t)((int64_t)((int64_t)L_7&(int64_t)((int64_t)((int64_t)2))))) == ((uint64_t)((int64_t)((int64_t)2)))))) { goto IL_0059; } } { // state.Buttons |= (uint)RawButton.Y; uint32_t* L_8 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_9 = L_8; int32_t L_10 = *((uint32_t*)L_9); *((int32_t*)L_9) = (int32_t)((int32_t)((int32_t)L_10|(int32_t)((int32_t)512))); } IL_0059: { // if ((leftControllerState.ulButtonPressed & ((ulong)OpenVRButton.Thumbstick)) == (ulong)OpenVRButton.Thumbstick) VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_11 = V_1; uint64_t L_12 = L_11.get_ulButtonPressed_1(); if ((!(((uint64_t)((int64_t)((int64_t)L_12&(int64_t)((int64_t)4294967296LL)))) == ((uint64_t)((int64_t)4294967296LL))))) { goto IL_0084; } } { // state.Buttons |= (uint)RawButton.LThumbstick; uint32_t* L_13 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_14 = L_13; int32_t L_15 = *((uint32_t*)L_14); *((int32_t*)L_14) = (int32_t)((int32_t)((int32_t)L_15|(int32_t)((int32_t)1024))); } IL_0084: { // state.LIndexTrigger = leftControllerState.rAxis1.x; VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_16 = V_1; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_17 = L_16.get_rAxis1_4(); float L_18 = L_17.get_x_0(); (&V_0)->set_LIndexTrigger_4(L_18); // if (openVRControllerDetails[0].controllerType == OpenVRController.OculusTouch || openVRControllerDetails[0].controllerType == OpenVRController.ViveController) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_19 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_19); uint64_t L_20 = ((L_19)->GetAddressAt(static_cast(0)))->get_controllerType_1(); if ((((int64_t)L_20) == ((int64_t)((int64_t)((int64_t)1))))) { goto IL_00be; } } { IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_21 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_21); uint64_t L_22 = ((L_21)->GetAddressAt(static_cast(0)))->get_controllerType_1(); if ((!(((uint64_t)L_22) == ((uint64_t)((int64_t)((int64_t)2)))))) { goto IL_00ee; } } IL_00be: { // state.LThumbstick.x = leftControllerState.rAxis0.x; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_23 = (&V_0)->get_address_of_LThumbstick_8(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_24 = V_1; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_25 = L_24.get_rAxis0_3(); float L_26 = L_25.get_x_0(); L_23->set_x_0(L_26); // state.LThumbstick.y = leftControllerState.rAxis0.y; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_27 = (&V_0)->get_address_of_LThumbstick_8(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_28 = V_1; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_29 = L_28.get_rAxis0_3(); float L_30 = L_29.get_y_1(); L_27->set_y_1(L_30); // } goto IL_0130; } IL_00ee: { // else if (openVRControllerDetails[0].controllerType == OpenVRController.WindowsMRController) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_31 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_31); uint64_t L_32 = ((L_31)->GetAddressAt(static_cast(0)))->get_controllerType_1(); if ((!(((uint64_t)L_32) == ((uint64_t)((int64_t)((int64_t)3)))))) { goto IL_0130; } } { // state.LThumbstick.x = leftControllerState.rAxis2.x; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_33 = (&V_0)->get_address_of_LThumbstick_8(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_34 = V_1; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_35 = L_34.get_rAxis2_5(); float L_36 = L_35.get_x_0(); L_33->set_x_0(L_36); // state.LThumbstick.y = leftControllerState.rAxis2.y; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_37 = (&V_0)->get_address_of_LThumbstick_8(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_38 = V_1; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_39 = L_38.get_rAxis2_5(); float L_40 = L_39.get_y_1(); L_37->set_y_1(L_40); } IL_0130: { // if (openVRControllerDetails[0].controllerType == OpenVRController.OculusTouch) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_41 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_41); uint64_t L_42 = ((L_41)->GetAddressAt(static_cast(0)))->get_controllerType_1(); if ((!(((uint64_t)L_42) == ((uint64_t)((int64_t)((int64_t)1)))))) { goto IL_0158; } } { // state.LHandTrigger = leftControllerState.rAxis2.x; VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_43 = V_1; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_44 = L_43.get_rAxis2_5(); float L_45 = L_44.get_x_0(); (&V_0)->set_LHandTrigger_6(L_45); goto IL_0199; } IL_0158: { // else if (openVRControllerDetails[0].controllerType == OpenVRController.ViveController || openVRControllerDetails[0].controllerType == OpenVRController.WindowsMRController) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_46 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_46); uint64_t L_47 = ((L_46)->GetAddressAt(static_cast(0)))->get_controllerType_1(); if ((((int64_t)L_47) == ((int64_t)((int64_t)((int64_t)2))))) { goto IL_0180; } } { IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_48 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_48); uint64_t L_49 = ((L_48)->GetAddressAt(static_cast(0)))->get_controllerType_1(); if ((!(((uint64_t)L_49) == ((uint64_t)((int64_t)((int64_t)3)))))) { goto IL_0199; } } IL_0180: { // state.LHandTrigger = ((leftControllerState.ulButtonPressed & ((ulong)OpenVRButton.Grip)) == ((ulong)OpenVRButton.Grip)) ? 1 : 0; VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_50 = V_1; uint64_t L_51 = L_50.get_ulButtonPressed_1(); G_B16_0 = (&V_0); if ((((int64_t)((int64_t)((int64_t)L_51&(int64_t)((int64_t)((int64_t)4))))) == ((int64_t)((int64_t)((int64_t)4))))) { G_B17_0 = (&V_0); goto IL_0192; } } { G_B18_0 = 0; G_B18_1 = G_B16_0; goto IL_0193; } IL_0192: { G_B18_0 = 1; G_B18_1 = G_B17_0; } IL_0193: { G_B18_1->set_LHandTrigger_6(((float)((float)G_B18_0))); } IL_0199: { // if ((controllerType & Controller.RTouch) == Controller.RTouch && IsValidOpenVRDevice(openVRControllerDetails[1].deviceID)) int32_t L_52 = ___controllerType0; if ((!(((uint32_t)((int32_t)((int32_t)L_52&(int32_t)2))) == ((uint32_t)2)))) { goto IL_0322; } } { IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_53 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_53); uint32_t L_54 = ((L_53)->GetAddressAt(static_cast(1)))->get_deviceID_2(); bool L_55; L_55 = OVRInput_IsValidOpenVRDevice_m241D1B7CD98C3980B1941C99179F7429955EFE01(L_54, /*hidden argument*/NULL); if (!L_55) { goto IL_0322; } } { // OVR.OpenVR.VRControllerState_t rightControllerState = openVRControllerDetails[1].state; IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_56 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_56); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_57 = ((L_56)->GetAddressAt(static_cast(1)))->get_state_0(); V_2 = L_57; // if ((rightControllerState.ulButtonPressed & ((ulong)OpenVRButton.Two)) == (ulong)OpenVRButton.Two) VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_58 = V_2; uint64_t L_59 = L_58.get_ulButtonPressed_1(); if ((!(((uint64_t)((int64_t)((int64_t)L_59&(int64_t)((int64_t)((int64_t)2))))) == ((uint64_t)((int64_t)((int64_t)2)))))) { goto IL_01e6; } } { // state.Buttons |= (uint)RawButton.B; uint32_t* L_60 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_61 = L_60; int32_t L_62 = *((uint32_t*)L_61); *((int32_t*)L_61) = (int32_t)((int32_t)((int32_t)L_62|(int32_t)2)); } IL_01e6: { // if ((rightControllerState.ulButtonPressed & ((ulong)OpenVRButton.Thumbstick)) == (ulong)OpenVRButton.Thumbstick) VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_63 = V_2; uint64_t L_64 = L_63.get_ulButtonPressed_1(); if ((!(((uint64_t)((int64_t)((int64_t)L_64&(int64_t)((int64_t)4294967296LL)))) == ((uint64_t)((int64_t)4294967296LL))))) { goto IL_020d; } } { // state.Buttons |= (uint)RawButton.RThumbstick; uint32_t* L_65 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_66 = L_65; int32_t L_67 = *((uint32_t*)L_66); *((int32_t*)L_66) = (int32_t)((int32_t)((int32_t)L_67|(int32_t)4)); } IL_020d: { // state.RIndexTrigger = rightControllerState.rAxis1.x; VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_68 = V_2; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_69 = L_68.get_rAxis1_4(); float L_70 = L_69.get_x_0(); (&V_0)->set_RIndexTrigger_5(L_70); // if (openVRControllerDetails[1].controllerType == OpenVRController.OculusTouch || openVRControllerDetails[1].controllerType == OpenVRController.ViveController) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_71 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_71); uint64_t L_72 = ((L_71)->GetAddressAt(static_cast(1)))->get_controllerType_1(); if ((((int64_t)L_72) == ((int64_t)((int64_t)((int64_t)1))))) { goto IL_0247; } } { IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_73 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_73); uint64_t L_74 = ((L_73)->GetAddressAt(static_cast(1)))->get_controllerType_1(); if ((!(((uint64_t)L_74) == ((uint64_t)((int64_t)((int64_t)2)))))) { goto IL_0277; } } IL_0247: { // state.RThumbstick.x = rightControllerState.rAxis0.x; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_75 = (&V_0)->get_address_of_RThumbstick_9(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_76 = V_2; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_77 = L_76.get_rAxis0_3(); float L_78 = L_77.get_x_0(); L_75->set_x_0(L_78); // state.RThumbstick.y = rightControllerState.rAxis0.y; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_79 = (&V_0)->get_address_of_RThumbstick_9(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_80 = V_2; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_81 = L_80.get_rAxis0_3(); float L_82 = L_81.get_y_1(); L_79->set_y_1(L_82); // } goto IL_02b9; } IL_0277: { // else if (openVRControllerDetails[1].controllerType == OpenVRController.WindowsMRController) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_83 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_83); uint64_t L_84 = ((L_83)->GetAddressAt(static_cast(1)))->get_controllerType_1(); if ((!(((uint64_t)L_84) == ((uint64_t)((int64_t)((int64_t)3)))))) { goto IL_02b9; } } { // state.RThumbstick.x = rightControllerState.rAxis2.x; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_85 = (&V_0)->get_address_of_RThumbstick_9(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_86 = V_2; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_87 = L_86.get_rAxis2_5(); float L_88 = L_87.get_x_0(); L_85->set_x_0(L_88); // state.RThumbstick.y = rightControllerState.rAxis2.y; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_89 = (&V_0)->get_address_of_RThumbstick_9(); VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_90 = V_2; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_91 = L_90.get_rAxis2_5(); float L_92 = L_91.get_y_1(); L_89->set_y_1(L_92); } IL_02b9: { // if (openVRControllerDetails[1].controllerType == OpenVRController.OculusTouch) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_93 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_93); uint64_t L_94 = ((L_93)->GetAddressAt(static_cast(1)))->get_controllerType_1(); if ((!(((uint64_t)L_94) == ((uint64_t)((int64_t)((int64_t)1)))))) { goto IL_02e1; } } { // state.RHandTrigger = rightControllerState.rAxis2.x; VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_95 = V_2; VRControllerAxis_t_t33B45527C50B1B1261A723C96BCBCA6F44B7EF4A L_96 = L_95.get_rAxis2_5(); float L_97 = L_96.get_x_0(); (&V_0)->set_RHandTrigger_7(L_97); goto IL_0322; } IL_02e1: { // else if (openVRControllerDetails[1].controllerType == OpenVRController.ViveController || openVRControllerDetails[1].controllerType == OpenVRController.WindowsMRController) IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_98 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_98); uint64_t L_99 = ((L_98)->GetAddressAt(static_cast(1)))->get_controllerType_1(); if ((((int64_t)L_99) == ((int64_t)((int64_t)((int64_t)2))))) { goto IL_0309; } } { IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); OpenVRControllerDetailsU5BU5D_t75E74318822478AF5AE59EFF5D1A98263EEF57A8* L_100 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_openVRControllerDetails_17(); NullCheck(L_100); uint64_t L_101 = ((L_100)->GetAddressAt(static_cast(1)))->get_controllerType_1(); if ((!(((uint64_t)L_101) == ((uint64_t)((int64_t)((int64_t)3)))))) { goto IL_0322; } } IL_0309: { // state.RHandTrigger = ((rightControllerState.ulButtonPressed & ((ulong)OpenVRButton.Grip)) == ((ulong)OpenVRButton.Grip)) ? 1 : 0; VRControllerState_t_tA2AC10EB26FD0C1CE385148DE3655C9584E60A3A L_102 = V_2; uint64_t L_103 = L_102.get_ulButtonPressed_1(); G_B35_0 = (&V_0); if ((((int64_t)((int64_t)((int64_t)L_103&(int64_t)((int64_t)((int64_t)4))))) == ((int64_t)((int64_t)((int64_t)4))))) { G_B36_0 = (&V_0); goto IL_031b; } } { G_B37_0 = 0; G_B37_1 = G_B35_0; goto IL_031c; } IL_031b: { G_B37_0 = 1; G_B37_1 = G_B36_0; } IL_031c: { G_B37_1->set_RHandTrigger_7(((float)((float)G_B37_0))); } IL_0322: { // return state; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_104 = V_0; return L_104; } } // System.Void OVRInput/OVRControllerBase::SetControllerVibration(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerBase_SetControllerVibration_mAA322093229C9B12479E4FA7BAC5F46A1ACB9CD3 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, float ___frequency0, float ___amplitude1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // OVRPlugin.SetControllerVibration((uint)controllerType, frequency, amplitude); int32_t L_0 = __this->get_controllerType_0(); float L_1 = ___frequency0; float L_2 = ___amplitude1; IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); bool L_3; L_3 = OVRPlugin_SetControllerVibration_m1B589BBAF237D5D6E4908E412AFFFF0D8996FFB3(L_0, L_1, L_2, /*hidden argument*/NULL); // } return; } } // System.Byte OVRInput/OVRControllerBase::GetBatteryPercentRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t OVRControllerBase_GetBatteryPercentRemaining_m4FDBB2F80EA734A993155A8200CC938415C7C1ED (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, const RuntimeMethod* method) { { // return 0; return (uint8_t)0; } } // OVRInput/RawButton OVRInput/OVRControllerBase::ResolveToRawMask(OVRInput/Button) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRControllerBase_ResolveToRawMask_m9B97B6263026EC1874CF5DEAE98FE138916FCCC1 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, int32_t ___virtualMask0, const RuntimeMethod* method) { { // return buttonMap.ToRawMask(virtualMask); VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = __this->get_buttonMap_1(); int32_t L_1 = ___virtualMask0; NullCheck(L_0); int32_t L_2; L_2 = VirtualButtonMap_ToRawMask_mDEF2E797F7D47483D31697FEE3B43E6D205EE2D0(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // OVRInput/RawTouch OVRInput/OVRControllerBase::ResolveToRawMask(OVRInput/Touch) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRControllerBase_ResolveToRawMask_m8E0CDBE99EDC20CBB8896D4CCE1EB30754B61DBC (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, int32_t ___virtualMask0, const RuntimeMethod* method) { { // return touchMap.ToRawMask(virtualMask); VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = __this->get_touchMap_2(); int32_t L_1 = ___virtualMask0; NullCheck(L_0); int32_t L_2; L_2 = VirtualTouchMap_ToRawMask_mF6F830B6BEC4CD53E8AA8B84D1830A6B6EC9F549(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // OVRInput/RawNearTouch OVRInput/OVRControllerBase::ResolveToRawMask(OVRInput/NearTouch) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRControllerBase_ResolveToRawMask_mCD6BC454B3DDE5C968F4CD99B0ECB9C912B15DBA (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, int32_t ___virtualMask0, const RuntimeMethod* method) { { // return nearTouchMap.ToRawMask(virtualMask); VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = __this->get_nearTouchMap_3(); int32_t L_1 = ___virtualMask0; NullCheck(L_0); int32_t L_2; L_2 = VirtualNearTouchMap_ToRawMask_m168F054C599B6990144CF9598741D1F34873FCE8(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // OVRInput/RawAxis1D OVRInput/OVRControllerBase::ResolveToRawMask(OVRInput/Axis1D) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRControllerBase_ResolveToRawMask_mAC5680BC8597037FD34D9C5C0B52F5AB52AEB059 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, int32_t ___virtualMask0, const RuntimeMethod* method) { { // return axis1DMap.ToRawMask(virtualMask); VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = __this->get_axis1DMap_4(); int32_t L_1 = ___virtualMask0; NullCheck(L_0); int32_t L_2; L_2 = VirtualAxis1DMap_ToRawMask_m202A46824FA96CF074B9EA8D052D1953FC967DD2(L_0, L_1, /*hidden argument*/NULL); return L_2; } } // OVRInput/RawAxis2D OVRInput/OVRControllerBase::ResolveToRawMask(OVRInput/Axis2D) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRControllerBase_ResolveToRawMask_mAD1CCF088C614A2921F7E24289BEE79787E4F773 (OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF * __this, int32_t ___virtualMask0, const RuntimeMethod* method) { { // return axis2DMap.ToRawMask(virtualMask); VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = __this->get_axis2DMap_5(); int32_t L_1 = ___virtualMask0; NullCheck(L_0); int32_t L_2; L_2 = VirtualAxis2DMap_ToRawMask_m7D2C3FA3DE3856777FFCE288A676C40B0CECAB2B(L_0, L_1, /*hidden argument*/NULL); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRInput/OVRControllerGamepadAndroid::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadAndroid__ctor_m57F6161946097DA19A9600EB6FB21F490853FE0C (OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191 * __this, const RuntimeMethod* method) { { // public OVRControllerGamepadAndroid() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.Gamepad; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(((int32_t)16)); // } return; } } // System.Void OVRInput/OVRControllerGamepadAndroid::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadAndroid_ConfigureButtonMap_m315985F66E0F2D217859975720DDC2F54665E342 (OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191 * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.A; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(1); // buttonMap.Two = RawButton.B; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(2); // buttonMap.Three = RawButton.X; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(((int32_t)256)); // buttonMap.Four = RawButton.Y; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(((int32_t)512)); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.Back; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(((int32_t)2097152)); // buttonMap.PrimaryShoulder = RawButton.LShoulder; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(((int32_t)2048)); // buttonMap.PrimaryIndexTrigger = RawButton.LIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(((int32_t)268435456)); // buttonMap.PrimaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(0); // buttonMap.PrimaryThumbstick = RawButton.LThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(((int32_t)1024)); // buttonMap.PrimaryThumbstickUp = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(((int32_t)16)); // buttonMap.PrimaryThumbstickDown = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(((int32_t)32)); // buttonMap.PrimaryThumbstickLeft = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(((int32_t)64)); // buttonMap.PrimaryThumbstickRight = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(((int32_t)128)); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.RShoulder; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(8); // buttonMap.SecondaryIndexTrigger = RawButton.RIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(((int32_t)67108864)); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.RThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(4); // buttonMap.SecondaryThumbstickUp = RawButton.RThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(((int32_t)4096)); // buttonMap.SecondaryThumbstickDown = RawButton.RThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(((int32_t)8192)); // buttonMap.SecondaryThumbstickLeft = RawButton.RThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(((int32_t)16384)); // buttonMap.SecondaryThumbstickRight = RawButton.RThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(((int32_t)32768)); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.DpadUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(((int32_t)65536)); // buttonMap.DpadDown = RawButton.DpadDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(((int32_t)131072)); // buttonMap.DpadLeft = RawButton.DpadLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(((int32_t)262144)); // buttonMap.DpadRight = RawButton.DpadRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(((int32_t)524288)); // buttonMap.Up = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(((int32_t)16)); // buttonMap.Down = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(((int32_t)32)); // buttonMap.Left = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(((int32_t)64)); // buttonMap.Right = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(((int32_t)128)); // } return; } } // System.Void OVRInput/OVRControllerGamepadAndroid::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadAndroid_ConfigureTouchMap_m411662B6CA8622B61A83F30D01F4B5386C6847D9 (OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191 * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(0); // touchMap.Two = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(0); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(0); // touchMap.PrimaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(0); // touchMap.PrimaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(0); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadAndroid::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadAndroid_ConfigureNearTouchMap_m8136354551950B55229CAA340B92D66E59EED204 (OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191 * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(0); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadAndroid::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadAndroid_ConfigureAxis1DMap_m67EBF43712103EE1E5FBC297D2C9C23B56A043B5 (OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191 * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.LIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(1); // axis1DMap.PrimaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(0); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.RIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(2); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadAndroid::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadAndroid_ConfigureAxis2DMap_mAECB9D9E6BA96453F9EB54772E1959B6C6D6B3EA (OVRControllerGamepadAndroid_t180FC88B0616426434059455192FAD10400B8191 * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.LThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(1); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.RThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(2); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(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 OVRInput/OVRControllerGamepadMac::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac__ctor_mDE2071A46CFE2C7F670ABA736D94E9AB060F3D3E (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { { // public OVRControllerGamepadMac() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.Gamepad; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(((int32_t)16)); // initialized = OVR_GamepadController_Initialize(); bool L_0; L_0 = OVRControllerGamepadMac_OVR_GamepadController_Initialize_m972F89BE1BF50BD7A9612F67E65B837DA1EF9707(/*hidden argument*/NULL); __this->set_initialized_9(L_0); // } return; } } // System.Void OVRInput/OVRControllerGamepadMac::Finalize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac_Finalize_m91AA9C6AAE49454EF0EA30710783E3BE263476C8 (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) { // if (!initialized) bool L_0 = __this->get_initialized_9(); if (L_0) { goto IL_000a; } } IL_0008: { // return; IL2CPP_LEAVE(0x19, FINALLY_0012); } IL_000a: { // OVR_GamepadController_Destroy(); bool L_1; L_1 = OVRControllerGamepadMac_OVR_GamepadController_Destroy_mA46B2E3FC624E3CF00689EBA4F8A097327BAAF3B(/*hidden argument*/NULL); IL2CPP_LEAVE(0x19, FINALLY_0012); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0012; } FINALLY_0012: { // begin finally (depth: 1) // } Object_Finalize_mC59C83CF4F7707E425FFA6362931C25D4C36676A(__this, /*hidden argument*/NULL); IL2CPP_END_FINALLY(18) } // end finally (depth: 1) IL2CPP_CLEANUP(18) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x19, IL_0019) } IL_0019: { // } return; } } // OVRInput/Controller OVRInput/OVRControllerGamepadMac::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRControllerGamepadMac_Update_m40F634791235107004C85AFED0FAEE8C38DA490E (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE V_0; memset((&V_0), 0, sizeof(V_0)); { // if (!initialized) bool L_0 = __this->get_initialized_9(); if (L_0) { goto IL_000a; } } { // return Controller.None; return (int32_t)(0); } IL_000a: { // OVRPlugin.ControllerState4 state = new OVRPlugin.ControllerState4(); il2cpp_codegen_initobj((&V_0), sizeof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE )); // bool result = OVR_GamepadController_Update(); bool L_1; L_1 = OVRControllerGamepadMac_OVR_GamepadController_Update_m67EB7DDC892432009D12537499AA2EDDB6ABD6FE(/*hidden argument*/NULL); // if (result) if (!L_1) { goto IL_0022; } } { // state.ConnectedControllers = (uint)Controller.Gamepad; (&V_0)->set_ConnectedControllers_0(((int32_t)16)); } IL_0022: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.A)) bool L_2; L_2 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(0, /*hidden argument*/NULL); if (!L_2) { goto IL_0036; } } { // state.Buttons |= (uint)RawButton.A; uint32_t* L_3 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_4 = L_3; int32_t L_5 = *((uint32_t*)L_4); *((int32_t*)L_4) = (int32_t)((int32_t)((int32_t)L_5|(int32_t)1)); } IL_0036: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.B)) bool L_6; L_6 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(1, /*hidden argument*/NULL); if (!L_6) { goto IL_004a; } } { // state.Buttons |= (uint)RawButton.B; uint32_t* L_7 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_8 = L_7; int32_t L_9 = *((uint32_t*)L_8); *((int32_t*)L_8) = (int32_t)((int32_t)((int32_t)L_9|(int32_t)2)); } IL_004a: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.X)) bool L_10; L_10 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(2, /*hidden argument*/NULL); if (!L_10) { goto IL_0062; } } { // state.Buttons |= (uint)RawButton.X; uint32_t* L_11 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_12 = L_11; int32_t L_13 = *((uint32_t*)L_12); *((int32_t*)L_12) = (int32_t)((int32_t)((int32_t)L_13|(int32_t)((int32_t)256))); } IL_0062: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.Y)) bool L_14; L_14 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(3, /*hidden argument*/NULL); if (!L_14) { goto IL_007a; } } { // state.Buttons |= (uint)RawButton.Y; uint32_t* L_15 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_16 = L_15; int32_t L_17 = *((uint32_t*)L_16); *((int32_t*)L_16) = (int32_t)((int32_t)((int32_t)L_17|(int32_t)((int32_t)512))); } IL_007a: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.Up)) bool L_18; L_18 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(4, /*hidden argument*/NULL); if (!L_18) { goto IL_0092; } } { // state.Buttons |= (uint)RawButton.DpadUp; uint32_t* L_19 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_20 = L_19; int32_t L_21 = *((uint32_t*)L_20); *((int32_t*)L_20) = (int32_t)((int32_t)((int32_t)L_21|(int32_t)((int32_t)65536))); } IL_0092: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.Down)) bool L_22; L_22 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(5, /*hidden argument*/NULL); if (!L_22) { goto IL_00aa; } } { // state.Buttons |= (uint)RawButton.DpadDown; uint32_t* L_23 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_24 = L_23; int32_t L_25 = *((uint32_t*)L_24); *((int32_t*)L_24) = (int32_t)((int32_t)((int32_t)L_25|(int32_t)((int32_t)131072))); } IL_00aa: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.Left)) bool L_26; L_26 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(6, /*hidden argument*/NULL); if (!L_26) { goto IL_00c2; } } { // state.Buttons |= (uint)RawButton.DpadLeft; uint32_t* L_27 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_28 = L_27; int32_t L_29 = *((uint32_t*)L_28); *((int32_t*)L_28) = (int32_t)((int32_t)((int32_t)L_29|(int32_t)((int32_t)262144))); } IL_00c2: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.Right)) bool L_30; L_30 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(7, /*hidden argument*/NULL); if (!L_30) { goto IL_00da; } } { // state.Buttons |= (uint)RawButton.DpadRight; uint32_t* L_31 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_32 = L_31; int32_t L_33 = *((uint32_t*)L_32); *((int32_t*)L_32) = (int32_t)((int32_t)((int32_t)L_33|(int32_t)((int32_t)524288))); } IL_00da: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.Start)) bool L_34; L_34 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(8, /*hidden argument*/NULL); if (!L_34) { goto IL_00f2; } } { // state.Buttons |= (uint)RawButton.Start; uint32_t* L_35 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_36 = L_35; int32_t L_37 = *((uint32_t*)L_36); *((int32_t*)L_36) = (int32_t)((int32_t)((int32_t)L_37|(int32_t)((int32_t)1048576))); } IL_00f2: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.Back)) bool L_38; L_38 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(((int32_t)9), /*hidden argument*/NULL); if (!L_38) { goto IL_010b; } } { // state.Buttons |= (uint)RawButton.Back; uint32_t* L_39 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_40 = L_39; int32_t L_41 = *((uint32_t*)L_40); *((int32_t*)L_40) = (int32_t)((int32_t)((int32_t)L_41|(int32_t)((int32_t)2097152))); } IL_010b: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.LStick)) bool L_42; L_42 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(((int32_t)10), /*hidden argument*/NULL); if (!L_42) { goto IL_0124; } } { // state.Buttons |= (uint)RawButton.LThumbstick; uint32_t* L_43 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_44 = L_43; int32_t L_45 = *((uint32_t*)L_44); *((int32_t*)L_44) = (int32_t)((int32_t)((int32_t)L_45|(int32_t)((int32_t)1024))); } IL_0124: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.RStick)) bool L_46; L_46 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(((int32_t)11), /*hidden argument*/NULL); if (!L_46) { goto IL_0139; } } { // state.Buttons |= (uint)RawButton.RThumbstick; uint32_t* L_47 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_48 = L_47; int32_t L_49 = *((uint32_t*)L_48); *((int32_t*)L_48) = (int32_t)((int32_t)((int32_t)L_49|(int32_t)4)); } IL_0139: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.LeftShoulder)) bool L_50; L_50 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(((int32_t)12), /*hidden argument*/NULL); if (!L_50) { goto IL_0152; } } { // state.Buttons |= (uint)RawButton.LShoulder; uint32_t* L_51 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_52 = L_51; int32_t L_53 = *((uint32_t*)L_52); *((int32_t*)L_52) = (int32_t)((int32_t)((int32_t)L_53|(int32_t)((int32_t)2048))); } IL_0152: { // if (OVR_GamepadController_GetButton((int)ButtonGPC.RightShoulder)) bool L_54; L_54 = OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5(((int32_t)13), /*hidden argument*/NULL); if (!L_54) { goto IL_0167; } } { // state.Buttons |= (uint)RawButton.RShoulder; uint32_t* L_55 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_56 = L_55; int32_t L_57 = *((uint32_t*)L_56); *((int32_t*)L_56) = (int32_t)((int32_t)((int32_t)L_57|(int32_t)8)); } IL_0167: { // state.LThumbstick.x = OVR_GamepadController_GetAxis((int)AxisGPC.LeftXAxis); Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_58 = (&V_0)->get_address_of_LThumbstick_8(); float L_59; L_59 = OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1(0, /*hidden argument*/NULL); L_58->set_x_0(L_59); // state.LThumbstick.y = OVR_GamepadController_GetAxis((int)AxisGPC.LeftYAxis); Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_60 = (&V_0)->get_address_of_LThumbstick_8(); float L_61; L_61 = OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1(1, /*hidden argument*/NULL); L_60->set_y_1(L_61); // state.RThumbstick.x = OVR_GamepadController_GetAxis((int)AxisGPC.RightXAxis); Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_62 = (&V_0)->get_address_of_RThumbstick_9(); float L_63; L_63 = OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1(2, /*hidden argument*/NULL); L_62->set_x_0(L_63); // state.RThumbstick.y = OVR_GamepadController_GetAxis((int)AxisGPC.RightYAxis); Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 * L_64 = (&V_0)->get_address_of_RThumbstick_9(); float L_65; L_65 = OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1(3, /*hidden argument*/NULL); L_64->set_y_1(L_65); // state.LIndexTrigger = OVR_GamepadController_GetAxis((int)AxisGPC.LeftTrigger); float L_66; L_66 = OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1(4, /*hidden argument*/NULL); (&V_0)->set_LIndexTrigger_4(L_66); // state.RIndexTrigger = OVR_GamepadController_GetAxis((int)AxisGPC.RightTrigger); float L_67; L_67 = OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1(5, /*hidden argument*/NULL); (&V_0)->set_RIndexTrigger_5(L_67); // if (state.LIndexTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_68 = V_0; float L_69 = L_68.get_LIndexTrigger_4(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_70 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_69) >= ((float)L_70)))) { goto IL_01e6; } } { // state.Buttons |= (uint)RawButton.LIndexTrigger; uint32_t* L_71 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_72 = L_71; int32_t L_73 = *((uint32_t*)L_72); *((int32_t*)L_72) = (int32_t)((int32_t)((int32_t)L_73|(int32_t)((int32_t)268435456))); } IL_01e6: { // if (state.LHandTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_74 = V_0; float L_75 = L_74.get_LHandTrigger_6(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_76 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_75) >= ((float)L_76)))) { goto IL_0203; } } { // state.Buttons |= (uint)RawButton.LHandTrigger; uint32_t* L_77 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_78 = L_77; int32_t L_79 = *((uint32_t*)L_78); *((int32_t*)L_78) = (int32_t)((int32_t)((int32_t)L_79|(int32_t)((int32_t)536870912))); } IL_0203: { // if (state.LThumbstick.y >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_80 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_81 = L_80.get_LThumbstick_8(); float L_82 = L_81.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_83 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_82) >= ((float)L_83)))) { goto IL_0222; } } { // state.Buttons |= (uint)RawButton.LThumbstickUp; uint32_t* L_84 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_85 = L_84; int32_t L_86 = *((uint32_t*)L_85); *((int32_t*)L_85) = (int32_t)((int32_t)((int32_t)L_86|(int32_t)((int32_t)16))); } IL_0222: { // if (state.LThumbstick.y <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_87 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_88 = L_87.get_LThumbstick_8(); float L_89 = L_88.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_90 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_89) <= ((float)((-L_90)))))) { goto IL_0242; } } { // state.Buttons |= (uint)RawButton.LThumbstickDown; uint32_t* L_91 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_92 = L_91; int32_t L_93 = *((uint32_t*)L_92); *((int32_t*)L_92) = (int32_t)((int32_t)((int32_t)L_93|(int32_t)((int32_t)32))); } IL_0242: { // if (state.LThumbstick.x <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_94 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_95 = L_94.get_LThumbstick_8(); float L_96 = L_95.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_97 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_96) <= ((float)((-L_97)))))) { goto IL_0262; } } { // state.Buttons |= (uint)RawButton.LThumbstickLeft; uint32_t* L_98 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_99 = L_98; int32_t L_100 = *((uint32_t*)L_99); *((int32_t*)L_99) = (int32_t)((int32_t)((int32_t)L_100|(int32_t)((int32_t)64))); } IL_0262: { // if (state.LThumbstick.x >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_101 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_102 = L_101.get_LThumbstick_8(); float L_103 = L_102.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_104 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_103) >= ((float)L_104)))) { goto IL_0284; } } { // state.Buttons |= (uint)RawButton.LThumbstickRight; uint32_t* L_105 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_106 = L_105; int32_t L_107 = *((uint32_t*)L_106); *((int32_t*)L_106) = (int32_t)((int32_t)((int32_t)L_107|(int32_t)((int32_t)128))); } IL_0284: { // if (state.RIndexTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_108 = V_0; float L_109 = L_108.get_RIndexTrigger_5(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_110 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_109) >= ((float)L_110)))) { goto IL_02a1; } } { // state.Buttons |= (uint)RawButton.RIndexTrigger; uint32_t* L_111 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_112 = L_111; int32_t L_113 = *((uint32_t*)L_112); *((int32_t*)L_112) = (int32_t)((int32_t)((int32_t)L_113|(int32_t)((int32_t)67108864))); } IL_02a1: { // if (state.RHandTrigger >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_114 = V_0; float L_115 = L_114.get_RHandTrigger_7(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_116 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_115) >= ((float)L_116)))) { goto IL_02be; } } { // state.Buttons |= (uint)RawButton.RHandTrigger; uint32_t* L_117 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_118 = L_117; int32_t L_119 = *((uint32_t*)L_118); *((int32_t*)L_118) = (int32_t)((int32_t)((int32_t)L_119|(int32_t)((int32_t)134217728))); } IL_02be: { // if (state.RThumbstick.y >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_120 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_121 = L_120.get_RThumbstick_9(); float L_122 = L_121.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_123 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_122) >= ((float)L_123)))) { goto IL_02e0; } } { // state.Buttons |= (uint)RawButton.RThumbstickUp; uint32_t* L_124 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_125 = L_124; int32_t L_126 = *((uint32_t*)L_125); *((int32_t*)L_125) = (int32_t)((int32_t)((int32_t)L_126|(int32_t)((int32_t)4096))); } IL_02e0: { // if (state.RThumbstick.y <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_127 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_128 = L_127.get_RThumbstick_9(); float L_129 = L_128.get_y_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_130 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_129) <= ((float)((-L_130)))))) { goto IL_0303; } } { // state.Buttons |= (uint)RawButton.RThumbstickDown; uint32_t* L_131 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_132 = L_131; int32_t L_133 = *((uint32_t*)L_132); *((int32_t*)L_132) = (int32_t)((int32_t)((int32_t)L_133|(int32_t)((int32_t)8192))); } IL_0303: { // if (state.RThumbstick.x <= -AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_134 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_135 = L_134.get_RThumbstick_9(); float L_136 = L_135.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_137 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_136) <= ((float)((-L_137)))))) { goto IL_0326; } } { // state.Buttons |= (uint)RawButton.RThumbstickLeft; uint32_t* L_138 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_139 = L_138; int32_t L_140 = *((uint32_t*)L_139); *((int32_t*)L_139) = (int32_t)((int32_t)((int32_t)L_140|(int32_t)((int32_t)16384))); } IL_0326: { // if (state.RThumbstick.x >= AXIS_AS_BUTTON_THRESHOLD) ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_141 = V_0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_142 = L_141.get_RThumbstick_9(); float L_143 = L_142.get_x_0(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); float L_144 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_AXIS_AS_BUTTON_THRESHOLD_0(); if ((!(((float)L_143) >= ((float)L_144)))) { goto IL_0348; } } { // state.Buttons |= (uint)RawButton.RThumbstickRight; uint32_t* L_145 = (&V_0)->get_address_of_Buttons_1(); uint32_t* L_146 = L_145; int32_t L_147 = *((uint32_t*)L_146); *((int32_t*)L_146) = (int32_t)((int32_t)((int32_t)L_147|(int32_t)((int32_t)32768))); } IL_0348: { // previousState = currentState; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_148 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_currentState_7(); ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_previousState_6(L_148); // currentState = state; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE L_149 = V_0; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_currentState_7(L_149); // return ((Controller)currentState.ConnectedControllers & controllerType); ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_150 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint32_t L_151 = L_150->get_ConnectedControllers_0(); int32_t L_152 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_controllerType_0(); return (int32_t)(((int32_t)((int32_t)L_151&(int32_t)L_152))); } } // System.Void OVRInput/OVRControllerGamepadMac::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac_ConfigureButtonMap_m860FA229C56BB66CA55E650E8741FF8C6E1D4A3F (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.A; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(1); // buttonMap.Two = RawButton.B; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(2); // buttonMap.Three = RawButton.X; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(((int32_t)256)); // buttonMap.Four = RawButton.Y; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(((int32_t)512)); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.Back; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(((int32_t)2097152)); // buttonMap.PrimaryShoulder = RawButton.LShoulder; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(((int32_t)2048)); // buttonMap.PrimaryIndexTrigger = RawButton.LIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(((int32_t)268435456)); // buttonMap.PrimaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(0); // buttonMap.PrimaryThumbstick = RawButton.LThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(((int32_t)1024)); // buttonMap.PrimaryThumbstickUp = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(((int32_t)16)); // buttonMap.PrimaryThumbstickDown = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(((int32_t)32)); // buttonMap.PrimaryThumbstickLeft = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(((int32_t)64)); // buttonMap.PrimaryThumbstickRight = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(((int32_t)128)); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.RShoulder; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(8); // buttonMap.SecondaryIndexTrigger = RawButton.RIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(((int32_t)67108864)); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.RThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(4); // buttonMap.SecondaryThumbstickUp = RawButton.RThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(((int32_t)4096)); // buttonMap.SecondaryThumbstickDown = RawButton.RThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(((int32_t)8192)); // buttonMap.SecondaryThumbstickLeft = RawButton.RThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(((int32_t)16384)); // buttonMap.SecondaryThumbstickRight = RawButton.RThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(((int32_t)32768)); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.DpadUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(((int32_t)65536)); // buttonMap.DpadDown = RawButton.DpadDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(((int32_t)131072)); // buttonMap.DpadLeft = RawButton.DpadLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(((int32_t)262144)); // buttonMap.DpadRight = RawButton.DpadRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(((int32_t)524288)); // buttonMap.Up = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(((int32_t)16)); // buttonMap.Down = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(((int32_t)32)); // buttonMap.Left = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(((int32_t)64)); // buttonMap.Right = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(((int32_t)128)); // } return; } } // System.Void OVRInput/OVRControllerGamepadMac::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac_ConfigureTouchMap_mFC99A6E7E2E3F9DC071F64DE2DE907BBF6E51C21 (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(0); // touchMap.Two = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(0); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(0); // touchMap.PrimaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(0); // touchMap.PrimaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(0); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadMac::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac_ConfigureNearTouchMap_mBE34D0E851FC706BC24C2AA2E19C44E9A0F851D3 (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(0); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadMac::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac_ConfigureAxis1DMap_m1EBBE1C149685AB1106A3A61ED9B4E65944A85A2 (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.LIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(1); // axis1DMap.PrimaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(0); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.RIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(2); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadMac::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac_ConfigureAxis2DMap_m565A57FFFA09EAF666995204760843776EB81BCA (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.LThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(1); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.RThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(2); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadMac::SetControllerVibration(System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadMac_SetControllerVibration_mDD6491BA892030A524DA3BA34C4DA2366E8A8D96 (OVRControllerGamepadMac_t8D164C0B3BCDAD56E4AB256D5F465498B1BD7924 * __this, float ___frequency0, float ___amplitude1, const RuntimeMethod* method) { float V_0 = 0.0f; float V_1 = 0.0f; { // int gpcNode = 0; // float gpcFrequency = frequency * 200.0f; //Map frequency from 0-1 CAPI range to 0-200 GPC range float L_0 = ___frequency0; V_0 = ((float)il2cpp_codegen_multiply((float)L_0, (float)(200.0f))); // float gpcStrength = amplitude; float L_1 = ___amplitude1; V_1 = L_1; // OVR_GamepadController_SetVibration(gpcNode, gpcStrength, gpcFrequency); float L_2 = V_1; float L_3 = V_0; bool L_4; L_4 = OVRControllerGamepadMac_OVR_GamepadController_SetVibration_m418CAC0E50220C5294BD48BB75AE115A56F89C9A(0, L_2, L_3, /*hidden argument*/NULL); // } return; } } // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_Initialize_m972F89BE1BF50BD7A9612F67E65B837DA1EF9707 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRGamepad_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRGamepad"), "OVR_GamepadController_Initialize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL int32_t returnValue = reinterpret_cast(OVR_GamepadController_Initialize)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return static_cast(returnValue); } // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_Destroy() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_Destroy_mA46B2E3FC624E3CF00689EBA4F8A097327BAAF3B (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRGamepad_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRGamepad"), "OVR_GamepadController_Destroy", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL int32_t returnValue = reinterpret_cast(OVR_GamepadController_Destroy)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return static_cast(returnValue); } // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_Update_m67EB7DDC892432009D12537499AA2EDDB6ABD6FE (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRGamepad_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRGamepad"), "OVR_GamepadController_Update", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL int32_t returnValue = reinterpret_cast(OVR_GamepadController_Update)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return static_cast(returnValue); } // System.Single OVRInput/OVRControllerGamepadMac::OVR_GamepadController_GetAxis(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRControllerGamepadMac_OVR_GamepadController_GetAxis_m6EA2302A35BBBC4558B90753F6B4F833D9FAC8F1 (int32_t ___axis0, const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRGamepad_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRGamepad"), "OVR_GamepadController_GetAxis", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL float returnValue = reinterpret_cast(OVR_GamepadController_GetAxis)(___axis0); #else float returnValue = il2cppPInvokeFunc(___axis0); #endif return returnValue; } // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_GetButton(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_GetButton_m55213B55604D5606BC892DE8897E0EF2BB62D5B5 (int32_t ___button0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRGamepad_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRGamepad"), "OVR_GamepadController_GetButton", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL int32_t returnValue = reinterpret_cast(OVR_GamepadController_GetButton)(___button0); #else int32_t returnValue = il2cppPInvokeFunc(___button0); #endif return static_cast(returnValue); } // System.Boolean OVRInput/OVRControllerGamepadMac::OVR_GamepadController_SetVibration(System.Int32,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRControllerGamepadMac_OVR_GamepadController_SetVibration_m418CAC0E50220C5294BD48BB75AE115A56F89C9A (int32_t ___node0, float ___strength1, float ___frequency2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, float, float); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRGamepad_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(float) + sizeof(float); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRGamepad"), "OVR_GamepadController_SetVibration", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRGamepad_INTERNAL int32_t returnValue = reinterpret_cast(OVR_GamepadController_SetVibration)(___node0, ___strength1, ___frequency2); #else int32_t returnValue = il2cppPInvokeFunc(___node0, ___strength1, ___frequency2); #endif return static_cast(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 OVRInput/OVRControllerGamepadPC::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadPC__ctor_mDC88EF157B5F75447622DB4E5897EC67EDEA7488 (OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE * __this, const RuntimeMethod* method) { { // public OVRControllerGamepadPC() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.Gamepad; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(((int32_t)16)); // } return; } } // System.Void OVRInput/OVRControllerGamepadPC::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadPC_ConfigureButtonMap_mE8B661B47497E0D7F21B6425940DA24735C65570 (OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.A; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(1); // buttonMap.Two = RawButton.B; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(2); // buttonMap.Three = RawButton.X; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(((int32_t)256)); // buttonMap.Four = RawButton.Y; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(((int32_t)512)); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.Back; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(((int32_t)2097152)); // buttonMap.PrimaryShoulder = RawButton.LShoulder; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(((int32_t)2048)); // buttonMap.PrimaryIndexTrigger = RawButton.LIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(((int32_t)268435456)); // buttonMap.PrimaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(0); // buttonMap.PrimaryThumbstick = RawButton.LThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(((int32_t)1024)); // buttonMap.PrimaryThumbstickUp = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(((int32_t)16)); // buttonMap.PrimaryThumbstickDown = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(((int32_t)32)); // buttonMap.PrimaryThumbstickLeft = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(((int32_t)64)); // buttonMap.PrimaryThumbstickRight = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(((int32_t)128)); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.RShoulder; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(8); // buttonMap.SecondaryIndexTrigger = RawButton.RIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(((int32_t)67108864)); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.RThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(4); // buttonMap.SecondaryThumbstickUp = RawButton.RThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(((int32_t)4096)); // buttonMap.SecondaryThumbstickDown = RawButton.RThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(((int32_t)8192)); // buttonMap.SecondaryThumbstickLeft = RawButton.RThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(((int32_t)16384)); // buttonMap.SecondaryThumbstickRight = RawButton.RThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(((int32_t)32768)); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.DpadUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(((int32_t)65536)); // buttonMap.DpadDown = RawButton.DpadDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(((int32_t)131072)); // buttonMap.DpadLeft = RawButton.DpadLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(((int32_t)262144)); // buttonMap.DpadRight = RawButton.DpadRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(((int32_t)524288)); // buttonMap.Up = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(((int32_t)16)); // buttonMap.Down = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(((int32_t)32)); // buttonMap.Left = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(((int32_t)64)); // buttonMap.Right = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(((int32_t)128)); // } return; } } // System.Void OVRInput/OVRControllerGamepadPC::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadPC_ConfigureTouchMap_m3D14B8A602B10F7E0F91585FF50CA20196FFBE60 (OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(0); // touchMap.Two = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(0); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(0); // touchMap.PrimaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(0); // touchMap.PrimaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(0); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadPC::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadPC_ConfigureNearTouchMap_m18400B6D2A5A8F20344B91B0088F0B0B746A709E (OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(0); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadPC::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadPC_ConfigureAxis1DMap_m0111C9DC892267CA87BABD4FAD0B4F6940321D0E (OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.LIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(1); // axis1DMap.PrimaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(0); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.RIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(2); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerGamepadPC::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerGamepadPC_ConfigureAxis2DMap_m71A72D691C0B119D87FDD8E00D5AEB946AE61CAB (OVRControllerGamepadPC_t848A18A6A46F727614D28DE22F32B17055BFDCBE * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.LThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(1); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.RThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(2); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(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 OVRInput/OVRControllerHands::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerHands__ctor_m40A705892214462042C8B2A9356665204557FC20 (OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D * __this, const RuntimeMethod* method) { { // public OVRControllerHands() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.Hands; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(((int32_t)96)); // } return; } } // System.Void OVRInput/OVRControllerHands::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerHands_ConfigureButtonMap_m1A7F19A1E4B15E0EA1548F66E5D491E395537CCE (OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.A; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(1); // buttonMap.Two = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(0); // buttonMap.Three = RawButton.X; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(((int32_t)256)); // buttonMap.Four = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(0); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(0); // buttonMap.PrimaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(0); // buttonMap.PrimaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(0); // buttonMap.PrimaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(0); // buttonMap.PrimaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(0); // buttonMap.PrimaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(0); // buttonMap.PrimaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(0); // buttonMap.PrimaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(0); // buttonMap.PrimaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(0); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(0); // buttonMap.SecondaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(0); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(0); // buttonMap.SecondaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(0); // buttonMap.SecondaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(0); // buttonMap.SecondaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(0); // buttonMap.SecondaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(0); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(0); // buttonMap.DpadDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(0); // buttonMap.DpadLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(0); // buttonMap.DpadRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(0); // buttonMap.Up = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(0); // buttonMap.Down = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(0); // buttonMap.Left = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(0); // buttonMap.Right = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(0); // } return; } } // System.Void OVRInput/OVRControllerHands::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerHands_ConfigureTouchMap_m5885DD6FB05FFA13671C62E662A4E3AD11447BA9 (OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(0); // touchMap.Two = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(0); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(0); // touchMap.PrimaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(0); // touchMap.PrimaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(0); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerHands::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerHands_ConfigureNearTouchMap_m9614BCD96F419A5CF6BD0E84A5CD5ECE52A590F0 (OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(0); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerHands::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerHands_ConfigureAxis1DMap_mE5416D13549E7D3720F72B4DF90463EEA5FCCFE1 (OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // axis1DMap.PrimaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(0); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerHands::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerHands_ConfigureAxis2DMap_m0BC67118934FF6F73350C9A2BCBC6A0F19CF7A4B (OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(0); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(0); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(0); // } return; } } // System.Byte OVRInput/OVRControllerHands::GetBatteryPercentRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t OVRControllerHands_GetBatteryPercentRemaining_mB25F9477A85A37709B5A9487707DE42490267661 (OVRControllerHands_t963A6742CD59ECE40054076BBC5E46C8345C6B6D * __this, const RuntimeMethod* method) { uint8_t V_0 = 0x0; uint8_t V_1 = 0x0; { // byte leftBattery = currentState.LBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_1 = L_0->get_LBatteryPercentRemaining_12(); V_0 = L_1; // byte rightBattery = currentState.RBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_3 = L_2->get_RBatteryPercentRemaining_13(); V_1 = L_3; // byte minBattery = (leftBattery <= rightBattery) ? leftBattery : rightBattery; uint8_t L_4 = V_0; uint8_t L_5 = V_1; if ((((int32_t)L_4) <= ((int32_t)L_5))) { goto IL_001e; } } { uint8_t L_6 = V_1; return L_6; } IL_001e: { uint8_t L_7 = V_0; // return minBattery; 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 // System.Void OVRInput/OVRControllerLHand::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLHand__ctor_mD9456A28242B7A1B01B43E3C9F557CCA99C357F1 (OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 * __this, const RuntimeMethod* method) { { // public OVRControllerLHand() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.LHand; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(((int32_t)32)); // } return; } } // System.Void OVRInput/OVRControllerLHand::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLHand_ConfigureButtonMap_m57C5AD90131AC84D01CED5ACAD4F76FBC02F3683 (OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.X; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(((int32_t)256)); // buttonMap.Two = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(0); // buttonMap.Three = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(0); // buttonMap.Four = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(0); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(0); // buttonMap.PrimaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(0); // buttonMap.PrimaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(0); // buttonMap.PrimaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(0); // buttonMap.PrimaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(0); // buttonMap.PrimaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(0); // buttonMap.PrimaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(0); // buttonMap.PrimaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(0); // buttonMap.PrimaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(0); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(0); // buttonMap.SecondaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(0); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(0); // buttonMap.SecondaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(0); // buttonMap.SecondaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(0); // buttonMap.SecondaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(0); // buttonMap.SecondaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(0); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(0); // buttonMap.DpadDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(0); // buttonMap.DpadLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(0); // buttonMap.DpadRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(0); // buttonMap.Up = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(0); // buttonMap.Down = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(0); // buttonMap.Left = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(0); // buttonMap.Right = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(0); // } return; } } // System.Void OVRInput/OVRControllerLHand::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLHand_ConfigureTouchMap_mAF25357DC472178421C5FB4B90B3E4DD20CBC1BC (OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(0); // touchMap.Two = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(0); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(0); // touchMap.PrimaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(0); // touchMap.PrimaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(0); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerLHand::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLHand_ConfigureNearTouchMap_m8CD28CDEB984EE20B047828B32A5FFC3BEFFD113 (OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(0); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerLHand::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLHand_ConfigureAxis1DMap_mA21F118154D6C23C016352DB7D95B82C056ED8A4 (OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // axis1DMap.PrimaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(0); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerLHand::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLHand_ConfigureAxis2DMap_mEC3B82C18CD1303B981264A3DEF19B1C18E10F89 (OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(0); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(0); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(0); // } return; } } // System.Byte OVRInput/OVRControllerLHand::GetBatteryPercentRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t OVRControllerLHand_GetBatteryPercentRemaining_mC6F96B4D8BE2631F8FAB579909B66BB6FF79232E (OVRControllerLHand_t091DDDC610E92F6931DCCF0194E691D7D0C00926 * __this, const RuntimeMethod* method) { { // return currentState.LBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_1 = L_0->get_LBatteryPercentRemaining_12(); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRInput/OVRControllerLTouch::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLTouch__ctor_m43485BF8D98D6DBC4F174FDF4A08CE79E2EFCFF7 (OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF * __this, const RuntimeMethod* method) { { // public OVRControllerLTouch() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.LTouch; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(1); // } return; } } // System.Void OVRInput/OVRControllerLTouch::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLTouch_ConfigureButtonMap_m98A4548A0F30CF1FF929CCEF6B9CB5427DFB06F4 (OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.X; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(((int32_t)256)); // buttonMap.Two = RawButton.Y; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(((int32_t)512)); // buttonMap.Three = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(0); // buttonMap.Four = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(0); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(0); // buttonMap.PrimaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(0); // buttonMap.PrimaryIndexTrigger = RawButton.LIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(((int32_t)268435456)); // buttonMap.PrimaryHandTrigger = RawButton.LHandTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(((int32_t)536870912)); // buttonMap.PrimaryThumbstick = RawButton.LThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(((int32_t)1024)); // buttonMap.PrimaryThumbstickUp = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(((int32_t)16)); // buttonMap.PrimaryThumbstickDown = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(((int32_t)32)); // buttonMap.PrimaryThumbstickLeft = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(((int32_t)64)); // buttonMap.PrimaryThumbstickRight = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(((int32_t)128)); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(0); // buttonMap.SecondaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(0); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(0); // buttonMap.SecondaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(0); // buttonMap.SecondaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(0); // buttonMap.SecondaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(0); // buttonMap.SecondaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(0); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(0); // buttonMap.DpadDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(0); // buttonMap.DpadLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(0); // buttonMap.DpadRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(0); // buttonMap.Up = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(((int32_t)16)); // buttonMap.Down = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(((int32_t)32)); // buttonMap.Left = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(((int32_t)64)); // buttonMap.Right = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(((int32_t)128)); // } return; } } // System.Void OVRInput/OVRControllerLTouch::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLTouch_ConfigureTouchMap_m410D8D5217C391B30BFABF0233E1D33A40E22F47 (OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.X; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(((int32_t)256)); // touchMap.Two = RawTouch.Y; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(((int32_t)512)); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.LIndexTrigger; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(((int32_t)4096)); // touchMap.PrimaryThumbstick = RawTouch.LThumbstick; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(((int32_t)1024)); // touchMap.PrimaryThumbRest = RawTouch.LThumbRest; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(((int32_t)2048)); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerLTouch::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLTouch_ConfigureNearTouchMap_m65E5B72E727A44C5A2A05EBED90B6ADD1109D505 (OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.LIndexTrigger; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(1); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.LThumbButtons; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(2); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerLTouch::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLTouch_ConfigureAxis1DMap_mF82DF3CFAFB03F076F0CCA8F5B4219391804D280 (OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.LIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(1); // axis1DMap.PrimaryHandTrigger = RawAxis1D.LHandTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(4); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerLTouch::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerLTouch_ConfigureAxis2DMap_m143C1B414DCFEC313DDDB87E2AF07231A6872DD7 (OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.LThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(1); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(0); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(0); // } return; } } // System.Byte OVRInput/OVRControllerLTouch::GetBatteryPercentRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t OVRControllerLTouch_GetBatteryPercentRemaining_m441E28146AB3DD95A88404E7F01024785604D723 (OVRControllerLTouch_tA1BBAFCCB07BDC6214240D5B4BF2D56DBA3F3FCF * __this, const RuntimeMethod* method) { { // return currentState.LBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_1 = L_0->get_LBatteryPercentRemaining_12(); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRInput/OVRControllerRHand::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRHand__ctor_m4156A4C202411DA9FC3EAB73642A3010C4FF0227 (OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E * __this, const RuntimeMethod* method) { { // public OVRControllerRHand() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.RHand; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(((int32_t)64)); // } return; } } // System.Void OVRInput/OVRControllerRHand::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRHand_ConfigureButtonMap_m9ED6F7C16071120F2961353B6DC4A4BA1BE32B4E (OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.A; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(1); // buttonMap.Two = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(0); // buttonMap.Three = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(0); // buttonMap.Four = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(0); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(0); // buttonMap.PrimaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(0); // buttonMap.PrimaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(0); // buttonMap.PrimaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(0); // buttonMap.PrimaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(0); // buttonMap.PrimaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(0); // buttonMap.PrimaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(0); // buttonMap.PrimaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(0); // buttonMap.PrimaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(0); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(0); // buttonMap.SecondaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(0); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(0); // buttonMap.SecondaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(0); // buttonMap.SecondaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(0); // buttonMap.SecondaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(0); // buttonMap.SecondaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(0); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(0); // buttonMap.DpadDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(0); // buttonMap.DpadLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(0); // buttonMap.DpadRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(0); // buttonMap.Up = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(0); // buttonMap.Down = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(0); // buttonMap.Left = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(0); // buttonMap.Right = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(0); // } return; } } // System.Void OVRInput/OVRControllerRHand::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRHand_ConfigureTouchMap_mE680E505DFEDF047285A42FF32807933CFF37231 (OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(0); // touchMap.Two = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(0); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(0); // touchMap.PrimaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(0); // touchMap.PrimaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(0); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerRHand::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRHand_ConfigureNearTouchMap_mA2603F607A2AA6B28E62F1E1248D533B96F873EE (OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(0); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerRHand::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRHand_ConfigureAxis1DMap_m0A156E3C51BF1BCEBBC9C966F733E9F849351313 (OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // axis1DMap.PrimaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(0); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerRHand::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRHand_ConfigureAxis2DMap_m7A2CFF045B6AC0BEA48935EB72E7E93933C49073 (OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(0); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(0); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(0); // } return; } } // System.Byte OVRInput/OVRControllerRHand::GetBatteryPercentRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t OVRControllerRHand_GetBatteryPercentRemaining_m5257601A70F2E8903BE552E5BA92EC9B1ED09477 (OVRControllerRHand_t4C84EFDBC378EEFCECEAD39B86E7FBA27C56C96E * __this, const RuntimeMethod* method) { { // return currentState.RBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_1 = L_0->get_RBatteryPercentRemaining_13(); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRInput/OVRControllerRTouch::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRTouch__ctor_mC257436F0CCCF7CCBBA78E09E630666950F23C2B (OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE * __this, const RuntimeMethod* method) { { // public OVRControllerRTouch() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.RTouch; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(2); // } return; } } // System.Void OVRInput/OVRControllerRTouch::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRTouch_ConfigureButtonMap_m5189FB7F721ABD90186E8790F222A1E3B4B74B0E (OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.A; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(1); // buttonMap.Two = RawButton.B; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(2); // buttonMap.Three = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(0); // buttonMap.Four = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(0); // buttonMap.Start = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(0); // buttonMap.Back = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(0); // buttonMap.PrimaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(0); // buttonMap.PrimaryIndexTrigger = RawButton.RIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(((int32_t)67108864)); // buttonMap.PrimaryHandTrigger = RawButton.RHandTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(((int32_t)134217728)); // buttonMap.PrimaryThumbstick = RawButton.RThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(4); // buttonMap.PrimaryThumbstickUp = RawButton.RThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(((int32_t)4096)); // buttonMap.PrimaryThumbstickDown = RawButton.RThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(((int32_t)8192)); // buttonMap.PrimaryThumbstickLeft = RawButton.RThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(((int32_t)16384)); // buttonMap.PrimaryThumbstickRight = RawButton.RThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(((int32_t)32768)); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(0); // buttonMap.SecondaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(0); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(0); // buttonMap.SecondaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(0); // buttonMap.SecondaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(0); // buttonMap.SecondaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(0); // buttonMap.SecondaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(0); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(0); // buttonMap.DpadDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(0); // buttonMap.DpadLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(0); // buttonMap.DpadRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(0); // buttonMap.Up = RawButton.RThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(((int32_t)4096)); // buttonMap.Down = RawButton.RThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(((int32_t)8192)); // buttonMap.Left = RawButton.RThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(((int32_t)16384)); // buttonMap.Right = RawButton.RThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(((int32_t)32768)); // } return; } } // System.Void OVRInput/OVRControllerRTouch::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRTouch_ConfigureTouchMap_mD7BA205BF393FA6B7DB115C436B57F860070B2F4 (OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.A; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(1); // touchMap.Two = RawTouch.B; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(2); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.RIndexTrigger; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(((int32_t)16)); // touchMap.PrimaryThumbstick = RawTouch.RThumbstick; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(4); // touchMap.PrimaryThumbRest = RawTouch.RThumbRest; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(8); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerRTouch::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRTouch_ConfigureNearTouchMap_mB2C01AC05A59F22C30B25EC765A81FE4015DC29E (OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.RIndexTrigger; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(4); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.RThumbButtons; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(8); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerRTouch::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRTouch_ConfigureAxis1DMap_m35568E87D06AA82A49990B7FAD1E4052A2716DDC (OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.RIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(2); // axis1DMap.PrimaryHandTrigger = RawAxis1D.RHandTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(8); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerRTouch::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRTouch_ConfigureAxis2DMap_m8E4C126D976D0F0A4F04F148BD9C48A1F575F22B (OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.RThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(2); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(0); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(0); // } return; } } // System.Byte OVRInput/OVRControllerRTouch::GetBatteryPercentRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t OVRControllerRTouch_GetBatteryPercentRemaining_mDAEDDD7EDD14C8031F16C345EEC503FDCE0DAA27 (OVRControllerRTouch_tBEFDFB2D7994658F6858900AF29E90F89BA3FACE * __this, const RuntimeMethod* method) { { // return currentState.RBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_1 = L_0->get_RBatteryPercentRemaining_13(); return L_1; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRInput/OVRControllerRemote::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRemote__ctor_m6E34D47C788DAA9DF77F42B189640F45C4E2FF78 (OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457 * __this, const RuntimeMethod* method) { { // public OVRControllerRemote() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.Remote; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(4); // } return; } } // System.Void OVRInput/OVRControllerRemote::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRemote_ConfigureButtonMap_mACE64CDBD7552C4ED342DC997045247956A74371 (OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457 * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(((int32_t)1048576)); // buttonMap.Two = RawButton.Back; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(((int32_t)2097152)); // buttonMap.Three = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(0); // buttonMap.Four = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(0); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.Back; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(((int32_t)2097152)); // buttonMap.PrimaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(0); // buttonMap.PrimaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(0); // buttonMap.PrimaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(0); // buttonMap.PrimaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(0); // buttonMap.PrimaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(0); // buttonMap.PrimaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(0); // buttonMap.PrimaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(0); // buttonMap.PrimaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(0); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(0); // buttonMap.SecondaryIndexTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(0); // buttonMap.SecondaryHandTrigger = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(0); // buttonMap.SecondaryThumbstick = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(0); // buttonMap.SecondaryThumbstickUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(0); // buttonMap.SecondaryThumbstickDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(0); // buttonMap.SecondaryThumbstickLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(0); // buttonMap.SecondaryThumbstickRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(0); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.DpadUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(((int32_t)65536)); // buttonMap.DpadDown = RawButton.DpadDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(((int32_t)131072)); // buttonMap.DpadLeft = RawButton.DpadLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(((int32_t)262144)); // buttonMap.DpadRight = RawButton.DpadRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(((int32_t)524288)); // buttonMap.Up = RawButton.DpadUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(((int32_t)65536)); // buttonMap.Down = RawButton.DpadDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(((int32_t)131072)); // buttonMap.Left = RawButton.DpadLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(((int32_t)262144)); // buttonMap.Right = RawButton.DpadRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(((int32_t)524288)); // } return; } } // System.Void OVRInput/OVRControllerRemote::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRemote_ConfigureTouchMap_m3D823D6850208199FAA5BA5E5E78A0386DA490DF (OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457 * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(0); // touchMap.Two = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(0); // touchMap.Three = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(0); // touchMap.Four = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(0); // touchMap.PrimaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(0); // touchMap.PrimaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(0); // touchMap.PrimaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(0); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(0); // touchMap.SecondaryThumbstick = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(0); // touchMap.SecondaryThumbRest = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(0); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerRemote::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRemote_ConfigureNearTouchMap_mF5ED785D817626717D5AA953065D7F7F9C5F9CDA (OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457 * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(0); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(0); // } return; } } // System.Void OVRInput/OVRControllerRemote::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRemote_ConfigureAxis1DMap_mED268E4C1D077F6B2379BBFBB37B9562A485922C (OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457 * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(0); // axis1DMap.PrimaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(0); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(0); // axis1DMap.SecondaryHandTrigger = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(0); // } return; } } // System.Void OVRInput/OVRControllerRemote::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerRemote_ConfigureAxis2DMap_mD67F2498E17CD61695DC094C6197A1DEAEFE9EBF (OVRControllerRemote_t4AA2A09E4B6415F6DC18C5CAC3F6C1ED1EB6E457 * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(0); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(0); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(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 OVRInput/OVRControllerTouch::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerTouch__ctor_mC30071289323E58EB501727CA4E86B300374F7EE (OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 * __this, const RuntimeMethod* method) { { // public OVRControllerTouch() OVRControllerBase__ctor_mC025EF79B0E844DE738726FA5024C497B1759039(__this, /*hidden argument*/NULL); // controllerType = Controller.Touch; ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->set_controllerType_0(3); // } return; } } // System.Void OVRInput/OVRControllerTouch::ConfigureButtonMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerTouch_ConfigureButtonMap_m87F381DEA8414ED1A08556F1FAC5A4AADF01C48F (OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 * __this, const RuntimeMethod* method) { { // buttonMap.None = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_0); L_0->set_None_0(0); // buttonMap.One = RawButton.A; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_1); L_1->set_One_1(1); // buttonMap.Two = RawButton.B; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_2); L_2->set_Two_2(2); // buttonMap.Three = RawButton.X; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_3); L_3->set_Three_3(((int32_t)256)); // buttonMap.Four = RawButton.Y; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_4); L_4->set_Four_4(((int32_t)512)); // buttonMap.Start = RawButton.Start; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_5); L_5->set_Start_5(((int32_t)1048576)); // buttonMap.Back = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_6); L_6->set_Back_6(0); // buttonMap.PrimaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_7); L_7->set_PrimaryShoulder_7(0); // buttonMap.PrimaryIndexTrigger = RawButton.LIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_8); L_8->set_PrimaryIndexTrigger_8(((int32_t)268435456)); // buttonMap.PrimaryHandTrigger = RawButton.LHandTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_9); L_9->set_PrimaryHandTrigger_9(((int32_t)536870912)); // buttonMap.PrimaryThumbstick = RawButton.LThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_10); L_10->set_PrimaryThumbstick_10(((int32_t)1024)); // buttonMap.PrimaryThumbstickUp = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_11); L_11->set_PrimaryThumbstickUp_11(((int32_t)16)); // buttonMap.PrimaryThumbstickDown = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_12); L_12->set_PrimaryThumbstickDown_12(((int32_t)32)); // buttonMap.PrimaryThumbstickLeft = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_13 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_13); L_13->set_PrimaryThumbstickLeft_13(((int32_t)64)); // buttonMap.PrimaryThumbstickRight = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_14 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_14); L_14->set_PrimaryThumbstickRight_14(((int32_t)128)); // buttonMap.PrimaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_15 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_15); L_15->set_PrimaryTouchpad_15(0); // buttonMap.SecondaryShoulder = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_16 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_16); L_16->set_SecondaryShoulder_16(0); // buttonMap.SecondaryIndexTrigger = RawButton.RIndexTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_17 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_17); L_17->set_SecondaryIndexTrigger_17(((int32_t)67108864)); // buttonMap.SecondaryHandTrigger = RawButton.RHandTrigger; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_18 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_18); L_18->set_SecondaryHandTrigger_18(((int32_t)134217728)); // buttonMap.SecondaryThumbstick = RawButton.RThumbstick; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_19 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_19); L_19->set_SecondaryThumbstick_19(4); // buttonMap.SecondaryThumbstickUp = RawButton.RThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_20 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_20); L_20->set_SecondaryThumbstickUp_20(((int32_t)4096)); // buttonMap.SecondaryThumbstickDown = RawButton.RThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_21 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_21); L_21->set_SecondaryThumbstickDown_21(((int32_t)8192)); // buttonMap.SecondaryThumbstickLeft = RawButton.RThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_22 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_22); L_22->set_SecondaryThumbstickLeft_22(((int32_t)16384)); // buttonMap.SecondaryThumbstickRight = RawButton.RThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_23 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_23); L_23->set_SecondaryThumbstickRight_23(((int32_t)32768)); // buttonMap.SecondaryTouchpad = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_24 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_24); L_24->set_SecondaryTouchpad_24(0); // buttonMap.DpadUp = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_25 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_25); L_25->set_DpadUp_25(0); // buttonMap.DpadDown = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_26 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_26); L_26->set_DpadDown_26(0); // buttonMap.DpadLeft = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_27 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_27); L_27->set_DpadLeft_27(0); // buttonMap.DpadRight = RawButton.None; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_28 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_28); L_28->set_DpadRight_28(0); // buttonMap.Up = RawButton.LThumbstickUp; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_29 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_29); L_29->set_Up_29(((int32_t)16)); // buttonMap.Down = RawButton.LThumbstickDown; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_30 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_30); L_30->set_Down_30(((int32_t)32)); // buttonMap.Left = RawButton.LThumbstickLeft; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_31 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_31); L_31->set_Left_31(((int32_t)64)); // buttonMap.Right = RawButton.LThumbstickRight; VirtualButtonMap_tFDFC144319FDFEBAF34D983D2E98D99B6B204CFF * L_32 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_buttonMap_1(); NullCheck(L_32); L_32->set_Right_32(((int32_t)128)); // } return; } } // System.Void OVRInput/OVRControllerTouch::ConfigureTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerTouch_ConfigureTouchMap_m81256F0C63599B619E3F171127AD73FA428165AA (OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 * __this, const RuntimeMethod* method) { { // touchMap.None = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_0); L_0->set_None_0(0); // touchMap.One = RawTouch.A; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_1); L_1->set_One_1(1); // touchMap.Two = RawTouch.B; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_2); L_2->set_Two_2(2); // touchMap.Three = RawTouch.X; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_3); L_3->set_Three_3(((int32_t)256)); // touchMap.Four = RawTouch.Y; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_4); L_4->set_Four_4(((int32_t)512)); // touchMap.PrimaryIndexTrigger = RawTouch.LIndexTrigger; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_5 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_5); L_5->set_PrimaryIndexTrigger_5(((int32_t)4096)); // touchMap.PrimaryThumbstick = RawTouch.LThumbstick; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_6 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_6); L_6->set_PrimaryThumbstick_6(((int32_t)1024)); // touchMap.PrimaryThumbRest = RawTouch.LThumbRest; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_7 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_7); L_7->set_PrimaryThumbRest_7(((int32_t)2048)); // touchMap.PrimaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_8 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_8); L_8->set_PrimaryTouchpad_8(0); // touchMap.SecondaryIndexTrigger = RawTouch.RIndexTrigger; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_9 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_9); L_9->set_SecondaryIndexTrigger_9(((int32_t)16)); // touchMap.SecondaryThumbstick = RawTouch.RThumbstick; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_10 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_10); L_10->set_SecondaryThumbstick_10(4); // touchMap.SecondaryThumbRest = RawTouch.RThumbRest; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_11 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_11); L_11->set_SecondaryThumbRest_11(8); // touchMap.SecondaryTouchpad = RawTouch.None; VirtualTouchMap_tF60E84F5EC59DFA305FD2A27D321A0B7D782B1CC * L_12 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_touchMap_2(); NullCheck(L_12); L_12->set_SecondaryTouchpad_12(0); // } return; } } // System.Void OVRInput/OVRControllerTouch::ConfigureNearTouchMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerTouch_ConfigureNearTouchMap_m1CA57A2EBACB0DA9784111326F8C47709B131A60 (OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 * __this, const RuntimeMethod* method) { { // nearTouchMap.None = RawNearTouch.None; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_0); L_0->set_None_0(0); // nearTouchMap.PrimaryIndexTrigger = RawNearTouch.LIndexTrigger; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(1); // nearTouchMap.PrimaryThumbButtons = RawNearTouch.LThumbButtons; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_2); L_2->set_PrimaryThumbButtons_2(2); // nearTouchMap.SecondaryIndexTrigger = RawNearTouch.RIndexTrigger; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(4); // nearTouchMap.SecondaryThumbButtons = RawNearTouch.RThumbButtons; VirtualNearTouchMap_tE0CF46B8C82E84C397FAC90AEA5097D352C1648A * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_nearTouchMap_3(); NullCheck(L_4); L_4->set_SecondaryThumbButtons_4(8); // } return; } } // System.Void OVRInput/OVRControllerTouch::ConfigureAxis1DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerTouch_ConfigureAxis1DMap_mC5E8EB0D6A078C61ECC582B64A0294A17373A2B0 (OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 * __this, const RuntimeMethod* method) { { // axis1DMap.None = RawAxis1D.None; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_0); L_0->set_None_0(0); // axis1DMap.PrimaryIndexTrigger = RawAxis1D.LIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_1); L_1->set_PrimaryIndexTrigger_1(1); // axis1DMap.PrimaryHandTrigger = RawAxis1D.LHandTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_2); L_2->set_PrimaryHandTrigger_2(4); // axis1DMap.SecondaryIndexTrigger = RawAxis1D.RIndexTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_3); L_3->set_SecondaryIndexTrigger_3(2); // axis1DMap.SecondaryHandTrigger = RawAxis1D.RHandTrigger; VirtualAxis1DMap_t5C6F5BB0E0B8C1BD809D7F7067BBF8CA632331E7 * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis1DMap_4(); NullCheck(L_4); L_4->set_SecondaryHandTrigger_4(8); // } return; } } // System.Void OVRInput/OVRControllerTouch::ConfigureAxis2DMap() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRControllerTouch_ConfigureAxis2DMap_mFF3B8F096A191900CD74F9A777FB9C31344B11C3 (OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 * __this, const RuntimeMethod* method) { { // axis2DMap.None = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_0); L_0->set_None_0(0); // axis2DMap.PrimaryThumbstick = RawAxis2D.LThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_1 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_1); L_1->set_PrimaryThumbstick_1(1); // axis2DMap.PrimaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_2); L_2->set_PrimaryTouchpad_2(0); // axis2DMap.SecondaryThumbstick = RawAxis2D.RThumbstick; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_3 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_3); L_3->set_SecondaryThumbstick_3(2); // axis2DMap.SecondaryTouchpad = RawAxis2D.None; VirtualAxis2DMap_tB9A67D5BD60B22FF10AE51C6DD58C6E90170FECA * L_4 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_axis2DMap_5(); NullCheck(L_4); L_4->set_SecondaryTouchpad_4(0); // } return; } } // System.Byte OVRInput/OVRControllerTouch::GetBatteryPercentRemaining() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint8_t OVRControllerTouch_GetBatteryPercentRemaining_mCA983FB5E568D93987C97A7BF9F3E32924DDD52C (OVRControllerTouch_t962E8871A4FBBD91E0FAF35325A1608EC06C6245 * __this, const RuntimeMethod* method) { uint8_t V_0 = 0x0; uint8_t V_1 = 0x0; { // byte leftBattery = currentState.LBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_0 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_1 = L_0->get_LBatteryPercentRemaining_12(); V_0 = L_1; // byte rightBattery = currentState.RBatteryPercentRemaining; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * L_2 = ((OVRControllerBase_t04908DC6C24B4325AFA711FAA35857A5C3AF57AF *)__this)->get_address_of_currentState_7(); uint8_t L_3 = L_2->get_RBatteryPercentRemaining_13(); V_1 = L_3; // byte minBattery = (leftBattery <= rightBattery) ? leftBattery : rightBattery; uint8_t L_4 = V_0; uint8_t L_5 = V_1; if ((((int32_t)L_4) <= ((int32_t)L_5))) { goto IL_001e; } } { uint8_t L_6 = V_1; return L_6; } IL_001e: { uint8_t L_7 = V_0; // return minBattery; 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 #ifdef __clang__ #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 // Conversion methods for marshalling of: OVRKeyboard/TrackedKeyboardInfo IL2CPP_EXTERN_C void TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshal_pinvoke(const TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9& unmarshaled, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_pinvoke& marshaled) { marshaled.___Name_0 = il2cpp_codegen_marshal_string(unmarshaled.get_Name_0()); marshaled.___Identifier_1 = unmarshaled.get_Identifier_1(); marshaled.___Dimensions_2 = unmarshaled.get_Dimensions_2(); marshaled.___KeyboardFlags_3 = unmarshaled.get_KeyboardFlags_3(); marshaled.___SupportedPresentationStyles_4 = unmarshaled.get_SupportedPresentationStyles_4(); } IL2CPP_EXTERN_C void TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshal_pinvoke_back(const TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_pinvoke& marshaled, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9& unmarshaled) { unmarshaled.set_Name_0(il2cpp_codegen_marshal_string_result(marshaled.___Name_0)); uint64_t unmarshaled_Identifier_temp_1 = 0; unmarshaled_Identifier_temp_1 = marshaled.___Identifier_1; unmarshaled.set_Identifier_1(unmarshaled_Identifier_temp_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E unmarshaled_Dimensions_temp_2; memset((&unmarshaled_Dimensions_temp_2), 0, sizeof(unmarshaled_Dimensions_temp_2)); unmarshaled_Dimensions_temp_2 = marshaled.___Dimensions_2; unmarshaled.set_Dimensions_2(unmarshaled_Dimensions_temp_2); int32_t unmarshaled_KeyboardFlags_temp_3 = 0; unmarshaled_KeyboardFlags_temp_3 = marshaled.___KeyboardFlags_3; unmarshaled.set_KeyboardFlags_3(unmarshaled_KeyboardFlags_temp_3); int32_t unmarshaled_SupportedPresentationStyles_temp_4 = 0; unmarshaled_SupportedPresentationStyles_temp_4 = marshaled.___SupportedPresentationStyles_4; unmarshaled.set_SupportedPresentationStyles_4(unmarshaled_SupportedPresentationStyles_temp_4); } // Conversion method for clean up from marshalling of: OVRKeyboard/TrackedKeyboardInfo IL2CPP_EXTERN_C void TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshal_pinvoke_cleanup(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___Name_0); marshaled.___Name_0 = NULL; } // Conversion methods for marshalling of: OVRKeyboard/TrackedKeyboardInfo IL2CPP_EXTERN_C void TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshal_com(const TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9& unmarshaled, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_com& marshaled) { marshaled.___Name_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_Name_0()); marshaled.___Identifier_1 = unmarshaled.get_Identifier_1(); marshaled.___Dimensions_2 = unmarshaled.get_Dimensions_2(); marshaled.___KeyboardFlags_3 = unmarshaled.get_KeyboardFlags_3(); marshaled.___SupportedPresentationStyles_4 = unmarshaled.get_SupportedPresentationStyles_4(); } IL2CPP_EXTERN_C void TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshal_com_back(const TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_com& marshaled, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9& unmarshaled) { unmarshaled.set_Name_0(il2cpp_codegen_marshal_bstring_result(marshaled.___Name_0)); uint64_t unmarshaled_Identifier_temp_1 = 0; unmarshaled_Identifier_temp_1 = marshaled.___Identifier_1; unmarshaled.set_Identifier_1(unmarshaled_Identifier_temp_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E unmarshaled_Dimensions_temp_2; memset((&unmarshaled_Dimensions_temp_2), 0, sizeof(unmarshaled_Dimensions_temp_2)); unmarshaled_Dimensions_temp_2 = marshaled.___Dimensions_2; unmarshaled.set_Dimensions_2(unmarshaled_Dimensions_temp_2); int32_t unmarshaled_KeyboardFlags_temp_3 = 0; unmarshaled_KeyboardFlags_temp_3 = marshaled.___KeyboardFlags_3; unmarshaled.set_KeyboardFlags_3(unmarshaled_KeyboardFlags_temp_3); int32_t unmarshaled_SupportedPresentationStyles_temp_4 = 0; unmarshaled_SupportedPresentationStyles_temp_4 = marshaled.___SupportedPresentationStyles_4; unmarshaled.set_SupportedPresentationStyles_4(unmarshaled_SupportedPresentationStyles_temp_4); } // Conversion method for clean up from marshalling of: OVRKeyboard/TrackedKeyboardInfo IL2CPP_EXTERN_C void TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshal_com_cleanup(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___Name_0); marshaled.___Name_0 = NULL; } #ifdef __clang__ #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: OVRKeyboard/TrackedKeyboardState IL2CPP_EXTERN_C void TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshal_pinvoke(const TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC& unmarshaled, TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_pinvoke& marshaled) { marshaled.___isPositionValid_0 = static_cast(unmarshaled.get_isPositionValid_0()); marshaled.___isPositionTracked_1 = static_cast(unmarshaled.get_isPositionTracked_1()); marshaled.___isOrientationValid_2 = static_cast(unmarshaled.get_isOrientationValid_2()); marshaled.___isOrientationTracked_3 = static_cast(unmarshaled.get_isOrientationTracked_3()); marshaled.___position_4 = unmarshaled.get_position_4(); marshaled.___rotation_5 = unmarshaled.get_rotation_5(); marshaled.___timeInSeconds_6 = unmarshaled.get_timeInSeconds_6(); } IL2CPP_EXTERN_C void TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshal_pinvoke_back(const TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_pinvoke& marshaled, TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC& unmarshaled) { bool unmarshaled_isPositionValid_temp_0 = false; unmarshaled_isPositionValid_temp_0 = static_cast(marshaled.___isPositionValid_0); unmarshaled.set_isPositionValid_0(unmarshaled_isPositionValid_temp_0); bool unmarshaled_isPositionTracked_temp_1 = false; unmarshaled_isPositionTracked_temp_1 = static_cast(marshaled.___isPositionTracked_1); unmarshaled.set_isPositionTracked_1(unmarshaled_isPositionTracked_temp_1); bool unmarshaled_isOrientationValid_temp_2 = false; unmarshaled_isOrientationValid_temp_2 = static_cast(marshaled.___isOrientationValid_2); unmarshaled.set_isOrientationValid_2(unmarshaled_isOrientationValid_temp_2); bool unmarshaled_isOrientationTracked_temp_3 = false; unmarshaled_isOrientationTracked_temp_3 = static_cast(marshaled.___isOrientationTracked_3); unmarshaled.set_isOrientationTracked_3(unmarshaled_isOrientationTracked_temp_3); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E unmarshaled_position_temp_4; memset((&unmarshaled_position_temp_4), 0, sizeof(unmarshaled_position_temp_4)); unmarshaled_position_temp_4 = marshaled.___position_4; unmarshaled.set_position_4(unmarshaled_position_temp_4); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 unmarshaled_rotation_temp_5; memset((&unmarshaled_rotation_temp_5), 0, sizeof(unmarshaled_rotation_temp_5)); unmarshaled_rotation_temp_5 = marshaled.___rotation_5; unmarshaled.set_rotation_5(unmarshaled_rotation_temp_5); double unmarshaled_timeInSeconds_temp_6 = 0.0; unmarshaled_timeInSeconds_temp_6 = marshaled.___timeInSeconds_6; unmarshaled.set_timeInSeconds_6(unmarshaled_timeInSeconds_temp_6); } // Conversion method for clean up from marshalling of: OVRKeyboard/TrackedKeyboardState IL2CPP_EXTERN_C void TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshal_pinvoke_cleanup(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRKeyboard/TrackedKeyboardState IL2CPP_EXTERN_C void TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshal_com(const TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC& unmarshaled, TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_com& marshaled) { marshaled.___isPositionValid_0 = static_cast(unmarshaled.get_isPositionValid_0()); marshaled.___isPositionTracked_1 = static_cast(unmarshaled.get_isPositionTracked_1()); marshaled.___isOrientationValid_2 = static_cast(unmarshaled.get_isOrientationValid_2()); marshaled.___isOrientationTracked_3 = static_cast(unmarshaled.get_isOrientationTracked_3()); marshaled.___position_4 = unmarshaled.get_position_4(); marshaled.___rotation_5 = unmarshaled.get_rotation_5(); marshaled.___timeInSeconds_6 = unmarshaled.get_timeInSeconds_6(); } IL2CPP_EXTERN_C void TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshal_com_back(const TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_com& marshaled, TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC& unmarshaled) { bool unmarshaled_isPositionValid_temp_0 = false; unmarshaled_isPositionValid_temp_0 = static_cast(marshaled.___isPositionValid_0); unmarshaled.set_isPositionValid_0(unmarshaled_isPositionValid_temp_0); bool unmarshaled_isPositionTracked_temp_1 = false; unmarshaled_isPositionTracked_temp_1 = static_cast(marshaled.___isPositionTracked_1); unmarshaled.set_isPositionTracked_1(unmarshaled_isPositionTracked_temp_1); bool unmarshaled_isOrientationValid_temp_2 = false; unmarshaled_isOrientationValid_temp_2 = static_cast(marshaled.___isOrientationValid_2); unmarshaled.set_isOrientationValid_2(unmarshaled_isOrientationValid_temp_2); bool unmarshaled_isOrientationTracked_temp_3 = false; unmarshaled_isOrientationTracked_temp_3 = static_cast(marshaled.___isOrientationTracked_3); unmarshaled.set_isOrientationTracked_3(unmarshaled_isOrientationTracked_temp_3); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E unmarshaled_position_temp_4; memset((&unmarshaled_position_temp_4), 0, sizeof(unmarshaled_position_temp_4)); unmarshaled_position_temp_4 = marshaled.___position_4; unmarshaled.set_position_4(unmarshaled_position_temp_4); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 unmarshaled_rotation_temp_5; memset((&unmarshaled_rotation_temp_5), 0, sizeof(unmarshaled_rotation_temp_5)); unmarshaled_rotation_temp_5 = marshaled.___rotation_5; unmarshaled.set_rotation_5(unmarshaled_rotation_temp_5); double unmarshaled_timeInSeconds_temp_6 = 0.0; unmarshaled_timeInSeconds_temp_6 = marshaled.___timeInSeconds_6; unmarshaled.set_timeInSeconds_6(unmarshaled_timeInSeconds_temp_6); } // Conversion method for clean up from marshalling of: OVRKeyboard/TrackedKeyboardState IL2CPP_EXTERN_C void TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshal_com_cleanup(TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRManager/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m82F176BAE61AB5A915D3339C752F0064D76C8142 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * L_0 = (U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E *)il2cpp_codegen_object_new(U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m8517242A7C7DB4EB40084D3534A2185EF229EAAC(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void OVRManager/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m8517242A7C7DB4EB40084D3534A2185EF229EAAC (U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.String OVRManager/<>c::b__361_0(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* U3CU3Ec_U3CInitOVRManagerU3Eb__361_0_m0A648F9D2B50CAE6343A89519EC2A5CCE4AEFE91 (U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * __this, float ___f0, const RuntimeMethod* method) { { // display.displayFrequency, string.Join(", ", display.displayFrequenciesAvailable.Select(f => f.ToString()).ToArray())); String_t* L_0; L_0 = Single_ToString_m80E7ABED4F4D73F2BE19DDB80D3D92FCD8DFA010((float*)(&___f0), /*hidden argument*/NULL); return L_0; } } // System.Int32 OVRManager/<>c::b__375_0(UnityEngine.Camera,UnityEngine.Camera) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CFindMainCameraU3Eb__375_0_mB02789728B8BA329AE619C4CCBB62A402225C258 (U3CU3Ec_t2455A4909A7C3AE3EE474F8CF9BA1970E158307E * __this, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___c00, Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * ___c11, const RuntimeMethod* method) { { // cameras.Sort((Camera c0, Camera c1) => { return c0.depth < c1.depth ? -1 : (c0.depth > c1.depth ? 1 : 0); }); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_0 = ___c00; NullCheck(L_0); float L_1; L_1 = Camera_get_depth_m063B48665DB9226949AC3A615362EA20193B823D(L_0, /*hidden argument*/NULL); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_2 = ___c11; NullCheck(L_2); float L_3; L_3 = Camera_get_depth_m063B48665DB9226949AC3A615362EA20193B823D(L_2, /*hidden argument*/NULL); if ((((float)L_1) < ((float)L_3))) { goto IL_0020; } } { Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_4 = ___c00; NullCheck(L_4); float L_5; L_5 = Camera_get_depth_m063B48665DB9226949AC3A615362EA20193B823D(L_4, /*hidden argument*/NULL); Camera_tC44E094BAB53AFC8A014C6F9CFCE11F4FC38006C * L_6 = ___c11; NullCheck(L_6); float L_7; L_7 = Camera_get_depth_m063B48665DB9226949AC3A615362EA20193B823D(L_6, /*hidden argument*/NULL); if ((((float)L_5) > ((float)L_7))) { goto IL_001e; } } { return 0; } IL_001e: { return 1; } IL_0020: { return (-1); } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 OVRManager/InstantiateMrcCameraDelegate::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void InstantiateMrcCameraDelegate__ctor_mCF1CB041565F91887CE5FC48FD7449CFDD3A076E (InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // UnityEngine.GameObject OVRManager/InstantiateMrcCameraDelegate::Invoke(UnityEngine.GameObject,OVRManager/MrcCameraType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * InstantiateMrcCameraDelegate_Invoke_m9DCA80E7ED3DE50D580D986EFF2287C2A815B082 (InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___mainCameraGameObject0, int32_t ___cameraType1, const RuntimeMethod* method) { GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * result = NULL; DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 2) { // open typedef GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*FunctionPointerType) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___mainCameraGameObject0, ___cameraType1, targetMethod); } else { // closed typedef GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*FunctionPointerType) (void*, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___mainCameraGameObject0, ___cameraType1, targetMethod); } } else if (___parameterCount != 2) { // open if (il2cpp_codegen_method_is_virtual(targetMethod) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker1< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(targetMethod, ___mainCameraGameObject0, ___cameraType1); else result = GenericVirtFuncInvoker1< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(targetMethod, ___mainCameraGameObject0, ___cameraType1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker1< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), ___mainCameraGameObject0, ___cameraType1); else result = VirtFuncInvoker1< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), ___mainCameraGameObject0, ___cameraType1); } } else { typedef GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*FunctionPointerType) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___mainCameraGameObject0, ___cameraType1, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = GenericInterfaceFuncInvoker2< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(targetMethod, targetThis, ___mainCameraGameObject0, ___cameraType1); else result = GenericVirtFuncInvoker2< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(targetMethod, targetThis, ___mainCameraGameObject0, ___cameraType1); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) result = InterfaceFuncInvoker2< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis, ___mainCameraGameObject0, ___cameraType1); else result = VirtFuncInvoker2< GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t >::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis, ___mainCameraGameObject0, ___cameraType1); } } else { if (___parameterCount == 1) { typedef GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*FunctionPointerType) (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(___mainCameraGameObject0, ___cameraType1, targetMethod); } else { typedef GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * (*FunctionPointerType) (void*, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *, int32_t, const RuntimeMethod*); result = ((FunctionPointerType)targetMethodPointer)(targetThis, ___mainCameraGameObject0, ___cameraType1, targetMethod); } } } } return result; } // System.IAsyncResult OVRManager/InstantiateMrcCameraDelegate::BeginInvoke(UnityEngine.GameObject,OVRManager/MrcCameraType,System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* InstantiateMrcCameraDelegate_BeginInvoke_mCD5182F7E45E7925C858A8EB86997E06A41E00B7 (InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___mainCameraGameObject0, int32_t ___cameraType1, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback2, RuntimeObject * ___object3, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&MrcCameraType_tA0C0F09054FEED61597585A592B5A72AD5DF6F68_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } void *__d_args[3] = {0}; __d_args[0] = ___mainCameraGameObject0; __d_args[1] = Box(MrcCameraType_tA0C0F09054FEED61597585A592B5A72AD5DF6F68_il2cpp_TypeInfo_var, &___cameraType1); return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback2, (RuntimeObject*)___object3);; } // UnityEngine.GameObject OVRManager/InstantiateMrcCameraDelegate::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * InstantiateMrcCameraDelegate_EndInvoke_m94A912BC76A835A5295AA79684B56CFE9891D71A (InstantiateMrcCameraDelegate_t88AE114F98A83D1400AD11939F67832C06C843B4 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { RuntimeObject *__result = il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 0); return (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)__result;; } #ifdef __clang__ #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 // Conversion methods for marshalling of: OVRMeshRenderer/MeshRendererData IL2CPP_EXTERN_C void MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshal_pinvoke(const MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D& unmarshaled, MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_pinvoke& marshaled) { marshaled.___U3CIsDataValidU3Ek__BackingField_0 = static_cast(unmarshaled.get_U3CIsDataValidU3Ek__BackingField_0()); marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_1 = static_cast(unmarshaled.get_U3CIsDataHighConfidenceU3Ek__BackingField_1()); marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2 = static_cast(unmarshaled.get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2()); } IL2CPP_EXTERN_C void MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshal_pinvoke_back(const MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_pinvoke& marshaled, MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D& unmarshaled) { bool unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_0 = false; unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_0 = static_cast(marshaled.___U3CIsDataValidU3Ek__BackingField_0); unmarshaled.set_U3CIsDataValidU3Ek__BackingField_0(unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_0); bool unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_1 = false; unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_1 = static_cast(marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_1); unmarshaled.set_U3CIsDataHighConfidenceU3Ek__BackingField_1(unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_1); bool unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_2 = false; unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_2 = static_cast(marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2); unmarshaled.set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2(unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_2); } // Conversion method for clean up from marshalling of: OVRMeshRenderer/MeshRendererData IL2CPP_EXTERN_C void MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshal_pinvoke_cleanup(MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRMeshRenderer/MeshRendererData IL2CPP_EXTERN_C void MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshal_com(const MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D& unmarshaled, MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_com& marshaled) { marshaled.___U3CIsDataValidU3Ek__BackingField_0 = static_cast(unmarshaled.get_U3CIsDataValidU3Ek__BackingField_0()); marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_1 = static_cast(unmarshaled.get_U3CIsDataHighConfidenceU3Ek__BackingField_1()); marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2 = static_cast(unmarshaled.get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2()); } IL2CPP_EXTERN_C void MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshal_com_back(const MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_com& marshaled, MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D& unmarshaled) { bool unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_0 = false; unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_0 = static_cast(marshaled.___U3CIsDataValidU3Ek__BackingField_0); unmarshaled.set_U3CIsDataValidU3Ek__BackingField_0(unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_0); bool unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_1 = false; unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_1 = static_cast(marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_1); unmarshaled.set_U3CIsDataHighConfidenceU3Ek__BackingField_1(unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_1); bool unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_2 = false; unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_2 = static_cast(marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2); unmarshaled.set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2(unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_2); } // Conversion method for clean up from marshalling of: OVRMeshRenderer/MeshRendererData IL2CPP_EXTERN_C void MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshal_com_cleanup(MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D_marshaled_com& marshaled) { } // System.Boolean OVRMeshRenderer/MeshRendererData::get_IsDataValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshRendererData_get_IsDataValid_mB974CD2712654A42CB8CD495A72AAEDBF72C91FF (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = __this->get_U3CIsDataValidU3Ek__BackingField_0(); return L_0; } } IL2CPP_EXTERN_C bool MeshRendererData_get_IsDataValid_mB974CD2712654A42CB8CD495A72AAEDBF72C91FF_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = MeshRendererData_get_IsDataValid_mB974CD2712654A42CB8CD495A72AAEDBF72C91FF_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRMeshRenderer/MeshRendererData::set_IsDataValid(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MeshRendererData_set_IsDataValid_m6D88886E007DBD80C8C6CF14AAF49E7B78443F3B (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataValidU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void MeshRendererData_set_IsDataValid_m6D88886E007DBD80C8C6CF14AAF49E7B78443F3B_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * _thisAdjusted = reinterpret_cast(__this + _offset); MeshRendererData_set_IsDataValid_m6D88886E007DBD80C8C6CF14AAF49E7B78443F3B_inline(_thisAdjusted, ___value0, method); } // System.Boolean OVRMeshRenderer/MeshRendererData::get_IsDataHighConfidence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshRendererData_get_IsDataHighConfidence_m20ED7F4AFF6DA9839F2ED2719AAA9C5C6B26C5DE (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = __this->get_U3CIsDataHighConfidenceU3Ek__BackingField_1(); return L_0; } } IL2CPP_EXTERN_C bool MeshRendererData_get_IsDataHighConfidence_m20ED7F4AFF6DA9839F2ED2719AAA9C5C6B26C5DE_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = MeshRendererData_get_IsDataHighConfidence_m20ED7F4AFF6DA9839F2ED2719AAA9C5C6B26C5DE_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRMeshRenderer/MeshRendererData::set_IsDataHighConfidence(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MeshRendererData_set_IsDataHighConfidence_m9A91DF4184CEBD074F03BECD3363998803393F8B (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataHighConfidenceU3Ek__BackingField_1(L_0); return; } } IL2CPP_EXTERN_C void MeshRendererData_set_IsDataHighConfidence_m9A91DF4184CEBD074F03BECD3363998803393F8B_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * _thisAdjusted = reinterpret_cast(__this + _offset); MeshRendererData_set_IsDataHighConfidence_m9A91DF4184CEBD074F03BECD3363998803393F8B_inline(_thisAdjusted, ___value0, method); } // System.Boolean OVRMeshRenderer/MeshRendererData::get_ShouldUseSystemGestureMaterial() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool MeshRendererData_get_ShouldUseSystemGestureMaterial_mC1E86564FC2CBF332C788CBE83222ABC1F6C70B7 (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = __this->get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C bool MeshRendererData_get_ShouldUseSystemGestureMaterial_mC1E86564FC2CBF332C788CBE83222ABC1F6C70B7_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = MeshRendererData_get_ShouldUseSystemGestureMaterial_mC1E86564FC2CBF332C788CBE83222ABC1F6C70B7_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRMeshRenderer/MeshRendererData::set_ShouldUseSystemGestureMaterial(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void MeshRendererData_set_ShouldUseSystemGestureMaterial_m339E2B712F05A1503A8CBB40A63232D74019B4B2 (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = ___value0; __this->set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2(L_0); return; } } IL2CPP_EXTERN_C void MeshRendererData_set_ShouldUseSystemGestureMaterial_m339E2B712F05A1503A8CBB40A63232D74019B4B2_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * _thisAdjusted = reinterpret_cast(__this + _offset); MeshRendererData_set_ShouldUseSystemGestureMaterial_m339E2B712F05A1503A8CBB40A63232D74019B4B2_inline(_thisAdjusted, ___value0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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.Byte[] OVRNetwork/FrameHeader::ToBytes() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* FrameHeader_ToBytes_m187B917D768BE8B47D94E45A2A565271217DB618 (FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_StructureToPtr_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mF11EB121DE2E6AC7E77A32E4FC71DDF87F3FB15A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; intptr_t V_2; memset((&V_2), 0, sizeof(V_2)); { // int size = Marshal.SizeOf(this); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_0 = (*(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB *)__this); IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395(L_0, /*hidden argument*/Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395_RuntimeMethod_var); V_0 = L_1; // byte[] arr = new byte[size]; int32_t L_2 = V_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)L_2); V_1 = L_3; // IntPtr ptr = Marshal.AllocHGlobal(size); int32_t L_4 = V_0; intptr_t L_5; L_5 = Marshal_AllocHGlobal_mB339DD0B9D5778400B8CA9BA45169C9C1C14835D(L_4, /*hidden argument*/NULL); V_2 = (intptr_t)L_5; // Marshal.StructureToPtr(this, ptr, true); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_6 = (*(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB *)__this); intptr_t L_7 = V_2; Marshal_StructureToPtr_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mF11EB121DE2E6AC7E77A32E4FC71DDF87F3FB15A(L_6, (intptr_t)L_7, (bool)1, /*hidden argument*/Marshal_StructureToPtr_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mF11EB121DE2E6AC7E77A32E4FC71DDF87F3FB15A_RuntimeMethod_var); // Marshal.Copy(ptr, arr, 0, size); intptr_t L_8 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = V_1; int32_t L_10 = V_0; Marshal_Copy_m5B5711DAE25F766427A60AA33208E669EACD0716((intptr_t)L_8, L_9, 0, L_10, /*hidden argument*/NULL); // Marshal.FreeHGlobal(ptr); intptr_t L_11 = V_2; Marshal_FreeHGlobal_mC556D1077E92ACD2AC3FDEF3040B88FAC0F7F390((intptr_t)L_11, /*hidden argument*/NULL); // return arr; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = V_1; return L_12; } } IL2CPP_EXTERN_C ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* FrameHeader_ToBytes_m187B917D768BE8B47D94E45A2A565271217DB618_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB * _thisAdjusted = reinterpret_cast(__this + _offset); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* _returnValue; _returnValue = FrameHeader_ToBytes_m187B917D768BE8B47D94E45A2A565271217DB618(_thisAdjusted, method); return _returnValue; } // OVRNetwork/FrameHeader OVRNetwork/FrameHeader::FromBytes(System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB FrameHeader_FromBytes_m4CF2BE66DA84EF6A222625016FC95FE1B81A226F (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___arr0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB V_0; memset((&V_0), 0, sizeof(V_0)); int32_t V_1 = 0; intptr_t V_2; memset((&V_2), 0, sizeof(V_2)); { // FrameHeader header = new FrameHeader(); il2cpp_codegen_initobj((&V_0), sizeof(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB )); // int size = Marshal.SizeOf(header); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_0 = V_0; IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); int32_t L_1; L_1 = Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395(L_0, /*hidden argument*/Marshal_SizeOf_TisFrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_mC849A4CC8AE7B701484B735F8E02BD67F21A8395_RuntimeMethod_var); V_1 = L_1; // IntPtr ptr = Marshal.AllocHGlobal(size); int32_t L_2 = V_1; intptr_t L_3; L_3 = Marshal_AllocHGlobal_mB339DD0B9D5778400B8CA9BA45169C9C1C14835D(L_2, /*hidden argument*/NULL); V_2 = (intptr_t)L_3; // Marshal.Copy(arr, 0, ptr, size); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = ___arr0; intptr_t L_5 = V_2; int32_t L_6 = V_1; Marshal_Copy_mBDE4BE8D48B38EEB9AC3CFFD818A3E6B08E55731(L_4, 0, (intptr_t)L_5, L_6, /*hidden argument*/NULL); // header = (FrameHeader)Marshal.PtrToStructure(ptr, header.GetType()); intptr_t L_7 = V_2; FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_8 = V_0; FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_9 = L_8; RuntimeObject * L_10 = Box(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_il2cpp_TypeInfo_var, &L_9); NullCheck(L_10); Type_t * L_11; L_11 = Object_GetType_m571FE8360C10B98C23AAF1F066D92C08CC94F45B(L_10, /*hidden argument*/NULL); RuntimeObject * L_12; L_12 = Marshal_PtrToStructure_mBB4D12265C6D3720CC85C120DB2E2E9351674AD4((intptr_t)L_7, L_11, /*hidden argument*/NULL); V_0 = ((*(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB *)((FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB *)UnBox(L_12, FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB_il2cpp_TypeInfo_var)))); // Marshal.FreeHGlobal(ptr); intptr_t L_13 = V_2; Marshal_FreeHGlobal_mC556D1077E92ACD2AC3FDEF3040B88FAC0F7F390((intptr_t)L_13, /*hidden argument*/NULL); // return header; FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_14 = V_0; return L_14; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // OVRNetwork/OVRNetworkTcpClient/ConnectionState OVRNetwork/OVRNetworkTcpClient::get_connectionState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRNetworkTcpClient_get_connectionState_m366757372009B4344852ACC63B9E7D3736C5ADB5 (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, const RuntimeMethod* method) { { // if (tcpClient == null) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_0 = __this->get_tcpClient_2(); if (L_0) { goto IL_000a; } } { // return ConnectionState.Disconnected; return (int32_t)(0); } IL_000a: { // if (tcpClient.Connected) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_1 = __this->get_tcpClient_2(); NullCheck(L_1); bool L_2; L_2 = TcpClient_get_Connected_m6F6E0D5E8CDF2D56756C34960B53D505640F481A(L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0019; } } { // return ConnectionState.Connected; return (int32_t)(1); } IL_0019: { // return ConnectionState.Connecting; return (int32_t)(2); } } // System.Boolean OVRNetwork/OVRNetworkTcpClient::get_Connected() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRNetworkTcpClient_get_Connected_m0E1D9FF85D5712A00CC94FC56297F8BC64C823FC (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, const RuntimeMethod* method) { { // return connectionState == ConnectionState.Connected; int32_t L_0; L_0 = OVRNetworkTcpClient_get_connectionState_m366757372009B4344852ACC63B9E7D3736C5ADB5(__this, /*hidden argument*/NULL); return (bool)((((int32_t)L_0) == ((int32_t)1))? 1 : 0); } } // System.Void OVRNetwork/OVRNetworkTcpClient::Connect(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpClient_Connect_m5831FA43FE707B4A2599BCFFD6C4511DC837DF47 (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, int32_t ___listeningPort0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRNetworkTcpClient_ConnectCallback_m1EDAA437EDBD6DFA12C406077F8DA113C3EF9E0B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3F5A76A6EFD255B87288234C880CAAD794F5CD3F); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral76C3D4024DE9EE847070E35CC5A197DC21F66FEE); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { // if (tcpClient == null) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_0 = __this->get_tcpClient_2(); if (L_0) { goto IL_0068; } } { // receivedBufferIndex = 0; __this->set_receivedBufferIndex_4(0); // receivedBufferDataSize = 0; __this->set_receivedBufferDataSize_5(0); // readyReceiveDataEvent.Set(); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_1 = __this->get_readyReceiveDataEvent_6(); NullCheck(L_1); bool L_2; L_2 = EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38(L_1, /*hidden argument*/NULL); // string remoteAddress = "127.0.0.1"; V_0 = _stringLiteral76C3D4024DE9EE847070E35CC5A197DC21F66FEE; // tcpClient = new TcpClient(AddressFamily.InterNetwork); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_3 = (TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE *)il2cpp_codegen_object_new(TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var); TcpClient__ctor_m67703F980AF859B47D938D2739C0E3D244659339(L_3, 2, /*hidden argument*/NULL); __this->set_tcpClient_2(L_3); // tcpClient.BeginConnect(remoteAddress, listeningPort, new AsyncCallback(ConnectCallback), tcpClient); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_4 = __this->get_tcpClient_2(); String_t* L_5 = V_0; int32_t L_6 = ___listeningPort0; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_7 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_7, __this, (intptr_t)((intptr_t)OVRNetworkTcpClient_ConnectCallback_m1EDAA437EDBD6DFA12C406077F8DA113C3EF9E0B_RuntimeMethod_var), /*hidden argument*/NULL); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_8 = __this->get_tcpClient_2(); NullCheck(L_4); RuntimeObject* L_9; L_9 = TcpClient_BeginConnect_mAF5D929DCA6FFD78BC0DE6E0F448B5F911CD8303(L_4, L_5, L_6, L_7, L_8, /*hidden argument*/NULL); // if (connectionStateChangedCallback != null) Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_10 = __this->get_connectionStateChangedCallback_0(); if (!L_10) { goto IL_0072; } } { // connectionStateChangedCallback(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_11 = __this->get_connectionStateChangedCallback_0(); NullCheck(L_11); Action_Invoke_m3FFA5BE3D64F0FF8E1E1CB6F953913FADB5EB89E(L_11, /*hidden argument*/NULL); // } return; } IL_0068: { // Debug.LogWarning("[OVRNetworkTcpClient] already connected"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral3F5A76A6EFD255B87288234C880CAAD794F5CD3F, /*hidden argument*/NULL); } IL_0072: { // } return; } } // System.Void OVRNetwork/OVRNetworkTcpClient::ConnectCallback(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpClient_ConnectCallback_m1EDAA437EDBD6DFA12C406077F8DA113C3EF9E0B (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5EF702A821BCE5B36DDE7B4CE39A3D071DD13CC4); s_Il2CppMethodInitialized = true; } TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * V_0 = NULL; Exception_t * V_1 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; IL_0000: try { // begin try (depth: 1) // TcpClient client = ar.AsyncState as TcpClient; RuntimeObject* L_0 = ___ar0; NullCheck(L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, L_0); V_0 = ((TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE *)IsInstClass((RuntimeObject*)L_1, TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE_il2cpp_TypeInfo_var)); // client.EndConnect(ar); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_2 = V_0; RuntimeObject* L_3 = ___ar0; NullCheck(L_2); TcpClient_EndConnect_m8A878839804034D19DA751A6FC9C11736017782D(L_2, L_3, /*hidden argument*/NULL); // Debug.LogFormat("[OVRNetworkTcpClient] connected to {0}", client.ToString()); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_4 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_5 = L_4; TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_6); NullCheck(L_5); ArrayElementTypeCheck (L_5, L_7); (L_5)->SetAt(static_cast(0), (RuntimeObject *)L_7); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogFormat_m72BF100F3CFE21832B462EDDA71CF0FE28C0D093(_stringLiteral5EF702A821BCE5B36DDE7B4CE39A3D071DD13CC4, L_5, /*hidden argument*/NULL); // } goto IL_004a; } // end try (depth: 1) 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_002e; } throw e; } CATCH_002e: { // begin catch(System.Exception) // catch (Exception e) V_1 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogWarningFormat("[OVRNetworkTcpClient] connect error {0}", e.Message); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_8 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_9 = L_8; Exception_t * L_10 = V_1; NullCheck(L_10); String_t* L_11; L_11 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_10); NullCheck(L_9); ArrayElementTypeCheck (L_9, L_11); (L_9)->SetAt(static_cast(0), (RuntimeObject *)L_11); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral457979F1C04A0B981FED363114FC80299C515382)), L_9, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_004a; } // end catch (depth: 1) IL_004a: { // if (connectionStateChangedCallback != null) Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_12 = __this->get_connectionStateChangedCallback_0(); if (!L_12) { goto IL_005d; } } { // connectionStateChangedCallback(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_13 = __this->get_connectionStateChangedCallback_0(); NullCheck(L_13); Action_Invoke_m3FFA5BE3D64F0FF8E1E1CB6F953913FADB5EB89E(L_13, /*hidden argument*/NULL); } IL_005d: { // } return; } } // System.Void OVRNetwork/OVRNetworkTcpClient::Disconnect() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpClient_Disconnect_m00B3B6A7FAF7405BAC4CBC295D3B1E4A3D9E3A62 (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral3ADC6EE78D777472770D1292033B14A399649C26); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCF87CB7DC9CAD27150E405BFC06F6A8622B2C270); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralCF90BB1377B63B2AFE691B1CD8F605010EC4EC9C); s_Il2CppMethodInitialized = true; } Exception_t * V_0 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (tcpClient != null) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_0 = __this->get_tcpClient_2(); if (!L_0) { goto IL_007a; } } { // if (!readyReceiveDataEvent.WaitOne(5)) ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_1 = __this->get_readyReceiveDataEvent_6(); NullCheck(L_1); bool L_2; L_2 = VirtFuncInvoker1< bool, int32_t >::Invoke(11 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.Int32) */, L_1, 5); if (L_2) { goto IL_0020; } } { // Debug.LogWarning("[OVRNetworkTcpClient] readyReceiveDataEvent not signaled. data receiving timeout?"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteralCF90BB1377B63B2AFE691B1CD8F605010EC4EC9C, /*hidden argument*/NULL); } IL_0020: { // Debug.Log("[OVRNetworkTcpClient] close tcpClient"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(_stringLiteralCF87CB7DC9CAD27150E405BFC06F6A8622B2C270, /*hidden argument*/NULL); } IL_002a: try { // begin try (depth: 1) // tcpClient.GetStream().Close(); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_3 = __this->get_tcpClient_2(); NullCheck(L_3); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_4; L_4 = TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC(L_3, /*hidden argument*/NULL); NullCheck(L_4); VirtActionInvoker0::Invoke(16 /* System.Void System.IO.Stream::Close() */, L_4); // tcpClient.Close(); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_5 = __this->get_tcpClient_2(); NullCheck(L_5); TcpClient_Close_mCF4B20FF3721D82A8C9F8136E5CB1F4C68AFD5B3(L_5, /*hidden argument*/NULL); // } goto IL_005f; } // end try (depth: 1) 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_0047; } throw e; } CATCH_0047: { // begin catch(System.Exception) // catch (Exception e) V_0 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogWarning("[OVRNetworkTcpClient] " + e.Message); Exception_t * L_6 = V_0; NullCheck(L_6); String_t* L_7; L_7 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_6); String_t* L_8; L_8 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralAB4ED7E329C0615E473C2D266FC4E958CD9968A3)), L_7, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(L_8, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_005f; } // end catch (depth: 1) IL_005f: { // tcpClient = null; __this->set_tcpClient_2((TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE *)NULL); // if (connectionStateChangedCallback != null) Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_9 = __this->get_connectionStateChangedCallback_0(); if (!L_9) { goto IL_0084; } } { // connectionStateChangedCallback(); Action_tAF41423D285AE0862865348CF6CE51CD085ABBA6 * L_10 = __this->get_connectionStateChangedCallback_0(); NullCheck(L_10); Action_Invoke_m3FFA5BE3D64F0FF8E1E1CB6F953913FADB5EB89E(L_10, /*hidden argument*/NULL); // } return; } IL_007a: { // Debug.LogWarning("[OVRNetworkTcpClient] not connected"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral3ADC6EE78D777472770D1292033B14A399649C26, /*hidden argument*/NULL); } IL_0084: { // } return; } } // System.Void OVRNetwork/OVRNetworkTcpClient::Tick() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpClient_Tick_m96FBFBE3670D2B0DF374E0180CE7E3D5F72A6DE2 (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRNetworkTcpClient_OnReadDataCallback_m29C29895F5141A179E337CFC7608AF954E1255BE_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6B65FDCC4E8C32741FEF6ECFD2D8D89760D43A43); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (tcpClient == null || !tcpClient.Connected) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_0 = __this->get_tcpClient_2(); if (!L_0) { goto IL_0015; } } { TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_1 = __this->get_tcpClient_2(); NullCheck(L_1); bool L_2; L_2 = TcpClient_get_Connected_m6F6E0D5E8CDF2D56756C34960B53D505640F481A(L_1, /*hidden argument*/NULL); if (L_2) { goto IL_0016; } } IL_0015: { // return; return; } IL_0016: { // if (readyReceiveDataEvent.WaitOne(TimeSpan.Zero)) ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_3 = __this->get_readyReceiveDataEvent_6(); IL2CPP_RUNTIME_CLASS_INIT(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var); TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 L_4 = ((TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_StaticFields*)il2cpp_codegen_static_fields_for(TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203_il2cpp_TypeInfo_var))->get_Zero_0(); NullCheck(L_3); bool L_5; L_5 = VirtFuncInvoker1< bool, TimeSpan_t4F6A0E13E703B65365CFCAB58E05EE0AF3EE6203 >::Invoke(12 /* System.Boolean System.Threading.WaitHandle::WaitOne(System.TimeSpan) */, L_3, L_4); if (!L_5) { goto IL_00b0; } } { // if (tcpClient.GetStream().DataAvailable) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_6 = __this->get_tcpClient_2(); NullCheck(L_6); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_7; L_7 = TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC(L_6, /*hidden argument*/NULL); NullCheck(L_7); bool L_8; L_8 = VirtFuncInvoker0< bool >::Invoke(30 /* System.Boolean System.Net.Sockets.NetworkStream::get_DataAvailable() */, L_7); if (!L_8) { goto IL_00b0; } } { // if (receivedBufferDataSize >= OVRNetwork.MaxBufferLength) int32_t L_9 = __this->get_receivedBufferDataSize_5(); if ((((int32_t)L_9) < ((int32_t)((int32_t)65536)))) { goto IL_005b; } } { // Debug.LogWarning("[OVRNetworkTcpClient] receive buffer overflow. It should not happen since we have the constraint on message size"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6B65FDCC4E8C32741FEF6ECFD2D8D89760D43A43, /*hidden argument*/NULL); // Disconnect(); OVRNetworkTcpClient_Disconnect_m00B3B6A7FAF7405BAC4CBC295D3B1E4A3D9E3A62(__this, /*hidden argument*/NULL); // return; return; } IL_005b: { // readyReceiveDataEvent.Reset(); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_10 = __this->get_readyReceiveDataEvent_6(); NullCheck(L_10); bool L_11; L_11 = EventWaitHandle_Reset_m535429D7CC172C0B95EB8B7B9126B3F3761E2D30(L_10, /*hidden argument*/NULL); // int maximumDataSize = OVRSystemPerfMetrics.MaxBufferLength - receivedBufferDataSize; int32_t L_12 = __this->get_receivedBufferDataSize_5(); V_0 = ((int32_t)il2cpp_codegen_subtract((int32_t)((int32_t)65536), (int32_t)L_12)); // tcpClient.GetStream().BeginRead(receivedBuffers[receivedBufferIndex], receivedBufferDataSize, maximumDataSize, new AsyncCallback(OnReadDataCallback), tcpClient.GetStream()); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_13 = __this->get_tcpClient_2(); NullCheck(L_13); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_14; L_14 = TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC(L_13, /*hidden argument*/NULL); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_15 = __this->get_receivedBuffers_3(); int32_t L_16 = __this->get_receivedBufferIndex_4(); NullCheck(L_15); int32_t L_17 = L_16; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_18 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(L_15)->GetAt(static_cast(L_17)); int32_t L_19 = __this->get_receivedBufferDataSize_5(); int32_t L_20 = V_0; AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_21 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_21, __this, (intptr_t)((intptr_t)OVRNetworkTcpClient_OnReadDataCallback_m29C29895F5141A179E337CFC7608AF954E1255BE_RuntimeMethod_var), /*hidden argument*/NULL); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_22 = __this->get_tcpClient_2(); NullCheck(L_22); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_23; L_23 = TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC(L_22, /*hidden argument*/NULL); NullCheck(L_14); RuntimeObject* L_24; L_24 = VirtFuncInvoker5< RuntimeObject*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *, RuntimeObject * >::Invoke(19 /* System.IAsyncResult System.IO.Stream::BeginRead(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, L_14, L_18, L_19, L_20, L_21, L_23); } IL_00b0: { // } return; } } // System.Void OVRNetwork/OVRNetworkTcpClient::OnReadDataCallback(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpClient_OnReadDataCallback_m29C29895F5141A179E337CFC7608AF954E1255BE (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_4_Invoke_m5C5575295FC53B71D731787F105081E0A41546F6_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral0B5EC81DB3A7E99DD6ED84EECB633BAB54105865); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral48E09DD514BBD4C9E4AF28ED8A23D87B4144126C); s_Il2CppMethodInitialized = true; } NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * V_0 = NULL; int32_t V_1 = 0; FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; int32_t V_4 = 0; SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * V_5 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // NetworkStream stream = ar.AsyncState as NetworkStream; RuntimeObject* L_0 = ___ar0; NullCheck(L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, L_0); V_0 = ((NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 *)IsInstClass((RuntimeObject*)L_1, NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48_il2cpp_TypeInfo_var)); } IL_000c: try { // begin try (depth: 1) { // int numBytes = stream.EndRead(ar); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_2 = V_0; RuntimeObject* L_3 = ___ar0; NullCheck(L_2); int32_t L_4; L_4 = VirtFuncInvoker1< int32_t, RuntimeObject* >::Invoke(20 /* System.Int32 System.IO.Stream::EndRead(System.IAsyncResult) */, L_2, L_3); V_1 = L_4; // receivedBufferDataSize += numBytes; int32_t L_5 = __this->get_receivedBufferDataSize_5(); int32_t L_6 = V_1; __this->set_receivedBufferDataSize_5(((int32_t)il2cpp_codegen_add((int32_t)L_5, (int32_t)L_6))); goto IL_0132; } IL_0027: { // FrameHeader header = FrameHeader.FromBytes(receivedBuffers[receivedBufferIndex]); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_7 = __this->get_receivedBuffers_3(); int32_t L_8 = __this->get_receivedBufferIndex_4(); NullCheck(L_7); int32_t L_9 = L_8; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(L_7)->GetAt(static_cast(L_9)); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_11; L_11 = FrameHeader_FromBytes_m4CF2BE66DA84EF6A222625016FC95FE1B81A226F(L_10, /*hidden argument*/NULL); V_2 = L_11; // if (header.protocolIdentifier != OVRNetwork.FrameHeaderMagicIdentifier) FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_12 = V_2; uint32_t L_13 = L_12.get_protocolIdentifier_0(); if ((((int32_t)L_13) == ((int32_t)((int32_t)1384359787)))) { goto IL_005c; } } IL_0047: { // Debug.LogWarning("[OVRNetworkTcpClient] header mismatch"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral0B5EC81DB3A7E99DD6ED84EECB633BAB54105865, /*hidden argument*/NULL); // Disconnect(); OVRNetworkTcpClient_Disconnect_m00B3B6A7FAF7405BAC4CBC295D3B1E4A3D9E3A62(__this, /*hidden argument*/NULL); // return; goto IL_0171; } IL_005c: { // if (header.payloadLength < 0 || header.payloadLength > OVRNetwork.MaxPayloadLength) FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_14 = V_2; int32_t L_15 = L_14.get_payloadLength_2(); if ((((int32_t)L_15) < ((int32_t)0))) { goto IL_0072; } } IL_0065: { FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_16 = V_2; int32_t L_17 = L_16.get_payloadLength_2(); if ((((int32_t)L_17) <= ((int32_t)((int32_t)65524)))) { goto IL_009b; } } IL_0072: { // Debug.LogWarningFormat("[OVRNetworkTcpClient] Sanity check failed. PayloadLength %d", header.payloadLength); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_18 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = L_18; FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_20 = V_2; int32_t L_21 = L_20.get_payloadLength_2(); int32_t L_22 = L_21; RuntimeObject * L_23 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_22); NullCheck(L_19); ArrayElementTypeCheck (L_19, L_23); (L_19)->SetAt(static_cast(0), (RuntimeObject *)L_23); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(_stringLiteral48E09DD514BBD4C9E4AF28ED8A23D87B4144126C, L_19, /*hidden argument*/NULL); // Disconnect(); OVRNetworkTcpClient_Disconnect_m00B3B6A7FAF7405BAC4CBC295D3B1E4A3D9E3A62(__this, /*hidden argument*/NULL); // return; goto IL_0171; } IL_009b: { // if (receivedBufferDataSize >= FrameHeader.StructSize + header.payloadLength) int32_t L_24 = __this->get_receivedBufferDataSize_5(); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_25 = V_2; int32_t L_26 = L_25.get_payloadLength_2(); if ((((int32_t)L_24) < ((int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)12), (int32_t)L_26))))) { goto IL_0132; } } IL_00af: { // if (payloadReceivedCallback != null) Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A * L_27 = __this->get_payloadReceivedCallback_1(); if (!L_27) { goto IL_00dd; } } IL_00b7: { // payloadReceivedCallback(header.payloadType, receivedBuffers[receivedBufferIndex], FrameHeader.StructSize, header.payloadLength); Action_4_t9C59DB1260BA332C4F3D50B1C76DA89196F3645A * L_28 = __this->get_payloadReceivedCallback_1(); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_29 = V_2; int32_t L_30 = L_29.get_payloadType_1(); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_31 = __this->get_receivedBuffers_3(); int32_t L_32 = __this->get_receivedBufferIndex_4(); NullCheck(L_31); int32_t L_33 = L_32; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_34 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(L_31)->GetAt(static_cast(L_33)); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_35 = V_2; int32_t L_36 = L_35.get_payloadLength_2(); NullCheck(L_28); Action_4_Invoke_m5C5575295FC53B71D731787F105081E0A41546F6(L_28, L_30, L_34, ((int32_t)12), L_36, /*hidden argument*/Action_4_Invoke_m5C5575295FC53B71D731787F105081E0A41546F6_RuntimeMethod_var); } IL_00dd: { // int newBufferIndex = 1 - receivedBufferIndex; int32_t L_37 = __this->get_receivedBufferIndex_4(); V_3 = ((int32_t)il2cpp_codegen_subtract((int32_t)1, (int32_t)L_37)); // int newBufferDataSize = receivedBufferDataSize - (FrameHeader.StructSize + header.payloadLength); int32_t L_38 = __this->get_receivedBufferDataSize_5(); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_39 = V_2; int32_t L_40 = L_39.get_payloadLength_2(); V_4 = ((int32_t)il2cpp_codegen_subtract((int32_t)L_38, (int32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)12), (int32_t)L_40)))); // if (newBufferDataSize > 0) int32_t L_41 = V_4; if ((((int32_t)L_41) <= ((int32_t)0))) { goto IL_0123; } } IL_00fd: { // Array.Copy(receivedBuffers[receivedBufferIndex], (FrameHeader.StructSize + header.payloadLength), receivedBuffers[newBufferIndex], 0, newBufferDataSize); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_42 = __this->get_receivedBuffers_3(); int32_t L_43 = __this->get_receivedBufferIndex_4(); NullCheck(L_42); int32_t L_44 = L_43; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_45 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(L_42)->GetAt(static_cast(L_44)); FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB L_46 = V_2; int32_t L_47 = L_46.get_payloadLength_2(); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_48 = __this->get_receivedBuffers_3(); int32_t L_49 = V_3; NullCheck(L_48); int32_t L_50 = L_49; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_51 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(L_48)->GetAt(static_cast(L_50)); int32_t L_52 = V_4; Array_Copy_m7EF35EEE2A8E2DC040222146974ADA2C3DACC229((RuntimeArray *)(RuntimeArray *)L_45, ((int32_t)il2cpp_codegen_add((int32_t)((int32_t)12), (int32_t)L_47)), (RuntimeArray *)(RuntimeArray *)L_51, 0, L_52, /*hidden argument*/NULL); } IL_0123: { // receivedBufferIndex = newBufferIndex; int32_t L_53 = V_3; __this->set_receivedBufferIndex_4(L_53); // receivedBufferDataSize = newBufferDataSize; int32_t L_54 = V_4; __this->set_receivedBufferDataSize_5(L_54); } IL_0132: { // while (receivedBufferDataSize >= FrameHeader.StructSize) int32_t L_55 = __this->get_receivedBufferDataSize_5(); if ((((int32_t)L_55) >= ((int32_t)((int32_t)12)))) { goto IL_0027; } } IL_013f: { // readyReceiveDataEvent.Set(); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_56 = __this->get_readyReceiveDataEvent_6(); NullCheck(L_56); bool L_57; L_57 = EventWaitHandle_Set_m81764C887F38A1153224557B26CD688B59987B38(L_56, /*hidden argument*/NULL); // } goto IL_0171; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_014d; } throw e; } CATCH_014d: { // begin catch(System.Net.Sockets.SocketException) // catch (SocketException e) V_5 = ((SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)IL2CPP_GET_ACTIVE_EXCEPTION(SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)); // Debug.LogErrorFormat("[OVRNetworkTcpClient] OnReadDataCallback: socket error: {0}", e.Message); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_58 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_59 = L_58; SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * L_60 = V_5; NullCheck(L_60); String_t* L_61; L_61 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_60); NullCheck(L_59); ArrayElementTypeCheck (L_59, L_61); (L_59)->SetAt(static_cast(0), (RuntimeObject *)L_61); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogErrorFormat_m92BE92B1C1EDD4B66E5D3CF9ED6480D7D3FFA0E9(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralDB16B4049DA2FFF96C66FAC35111911389DE0F60)), L_59, /*hidden argument*/NULL); // Disconnect(); OVRNetworkTcpClient_Disconnect_m00B3B6A7FAF7405BAC4CBC295D3B1E4A3D9E3A62(__this, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0171; } // end catch (depth: 1) IL_0171: { // } return; } } // System.Void OVRNetwork/OVRNetworkTcpClient::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpClient__ctor_m0D62409ED51EFC25FF78C67BFCB6E9604E2ED51E (OVRNetworkTcpClient_tF861D64916FB0EC722ADA823406E452D3DF654A8 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // byte[][] receivedBuffers = { new byte[OVRNetwork.MaxBufferLength], new byte[OVRNetwork.MaxBufferLength] }; ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_0 = (ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D*)(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D*)SZArrayNew(ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D_il2cpp_TypeInfo_var, (uint32_t)2); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_1 = L_0; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_2 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)65536)); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_2); (L_1)->SetAt(static_cast(0), (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_2); ByteU5BU5DU5BU5D_t95107DE217CCFA8CD77945AC2CB9492D4D01FE8D* L_3 = L_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_4 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)65536)); NullCheck(L_3); ArrayElementTypeCheck (L_3, L_4); (L_3)->SetAt(static_cast(1), (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)L_4); __this->set_receivedBuffers_3(L_3); // ManualResetEvent readyReceiveDataEvent = new ManualResetEvent(true); ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA * L_5 = (ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA *)il2cpp_codegen_object_new(ManualResetEvent_t9E2ED486907E3A16122ED4E946534E4DD6B5A7BA_il2cpp_TypeInfo_var); ManualResetEvent__ctor_mF80BD5B0955BDA8CD514F48EBFF48698E5D03850(L_5, (bool)1, /*hidden argument*/NULL); __this->set_readyReceiveDataEvent_6(L_5); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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 OVRNetwork/OVRNetworkTcpServer::StartListening(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_StartListening_mAB815C06C715674E7F81DDC2C346F9EF5A14DB55 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, int32_t ___listeningPort0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRNetworkTcpServer_DoAcceptTcpClientCallback_m061A9EA78D0C8DE70EF44DA32AD361DC90579EA0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5ECA8F6B262FF8111FA2C3AF66DB25099D9346AE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6351FEA72E6FEA64FAC0F16B623B66326E1F82FE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBE6207B57ACB2D3BF84DBA40B2F4C492644729E1); s_Il2CppMethodInitialized = true; } IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * V_0 = NULL; SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * V_1 = NULL; Exception_t * V_2 = NULL; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (tcpListener != null) TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_0 = __this->get_tcpListener_0(); if (!L_0) { goto IL_0013; } } { // Debug.LogWarning("[OVRNetworkTcpServer] tcpListener is not null"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6351FEA72E6FEA64FAC0F16B623B66326E1F82FE, /*hidden argument*/NULL); // return; return; } IL_0013: { // IPAddress localAddr = IPAddress.Any; IL2CPP_RUNTIME_CLASS_INIT(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_1 = ((IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_StaticFields*)il2cpp_codegen_static_fields_for(IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE_il2cpp_TypeInfo_var))->get_Any_0(); V_0 = L_1; // tcpListener = new TcpListener(localAddr, listeningPort); IPAddress_t2B5F1762B4B9935BA6CA8FB12C87282C72E035AE * L_2 = V_0; int32_t L_3 = ___listeningPort0; TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_4 = (TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B *)il2cpp_codegen_object_new(TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B_il2cpp_TypeInfo_var); TcpListener__ctor_mD4633F7821C1F6412EFE88DB42F8A6C7E1A914F0(L_4, L_2, L_3, /*hidden argument*/NULL); __this->set_tcpListener_0(L_4); } IL_0026: try { // begin try (depth: 1) // tcpListener.Start(); TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_5 = __this->get_tcpListener_0(); NullCheck(L_5); TcpListener_Start_m95F4F504E8BF63D90E857AF6C794AC25EF971C68(L_5, /*hidden argument*/NULL); // Debug.LogFormat("TcpListener started. Local endpoint: {0}", tcpListener.LocalEndpoint.ToString()); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_7 = L_6; TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_8 = __this->get_tcpListener_0(); NullCheck(L_8); EndPoint_t18D4AE8D03090A2B262136E59F95CE61418C34DA * L_9; L_9 = TcpListener_get_LocalEndpoint_m570747366FE29F08F5764B88245C0239634A74A3(L_8, /*hidden argument*/NULL); NullCheck(L_9); String_t* L_10; L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_10); (L_7)->SetAt(static_cast(0), (RuntimeObject *)L_10); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogFormat_m72BF100F3CFE21832B462EDDA71CF0FE28C0D093(_stringLiteralBE6207B57ACB2D3BF84DBA40B2F4C492644729E1, L_7, /*hidden argument*/NULL); // } goto IL_008d; } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0056; } throw e; } CATCH_0056: { // begin catch(System.Net.Sockets.SocketException) // catch (SocketException e) V_1 = ((SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)IL2CPP_GET_ACTIVE_EXCEPTION(SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)); // Debug.LogWarningFormat("[OVRNetworkTcpServer] Unsable to start TcpListener. Socket exception: {0}", e.Message); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_11 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_12 = L_11; SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * L_13 = V_1; NullCheck(L_13); String_t* L_14; L_14 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_13); NullCheck(L_12); ArrayElementTypeCheck (L_12, L_14); (L_12)->SetAt(static_cast(0), (RuntimeObject *)L_14); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralF816F55F5BBAF9B9CBB88B57A6B44DA56DF2FFD4)), L_12, /*hidden argument*/NULL); // Debug.LogWarning("It could be caused by multiple instances listening at the same port, or the port is forwarded to the Android device through ADB"); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteralC4BD9225A2C2C41626298E7DB8C48EC673EC32F7)), /*hidden argument*/NULL); // Debug.LogWarning("If the port is forwarded through ADB, use the Android Tools in Tools/Oculus/System Metrics Profiler to kill the server"); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral98164E7992D3EADAC7D117F47FF63DF04B28F689)), /*hidden argument*/NULL); // tcpListener = null; __this->set_tcpListener_0((TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B *)NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_008d; } // end catch (depth: 1) IL_008d: { // if (tcpListener != null) TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_15 = __this->get_tcpListener_0(); if (!L_15) { goto IL_00ea; } } { // Debug.LogFormat("[OVRNetworkTcpServer] Start Listening on port {0}", listeningPort); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_17 = L_16; int32_t L_18 = ___listeningPort0; int32_t L_19 = L_18; RuntimeObject * L_20 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_19); NullCheck(L_17); ArrayElementTypeCheck (L_17, L_20); (L_17)->SetAt(static_cast(0), (RuntimeObject *)L_20); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogFormat_m72BF100F3CFE21832B462EDDA71CF0FE28C0D093(_stringLiteral5ECA8F6B262FF8111FA2C3AF66DB25099D9346AE, L_17, /*hidden argument*/NULL); } IL_00ae: try { // begin try (depth: 1) // tcpListener.BeginAcceptTcpClient(new AsyncCallback(DoAcceptTcpClientCallback), tcpListener); TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_21 = __this->get_tcpListener_0(); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_22 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_22, __this, (intptr_t)((intptr_t)OVRNetworkTcpServer_DoAcceptTcpClientCallback_m061A9EA78D0C8DE70EF44DA32AD361DC90579EA0_RuntimeMethod_var), /*hidden argument*/NULL); TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_23 = __this->get_tcpListener_0(); NullCheck(L_21); RuntimeObject* L_24; L_24 = TcpListener_BeginAcceptTcpClient_mD026EBFD9527C042FAA26B9E6F04518B9763DE5F(L_21, L_22, L_23, /*hidden argument*/NULL); // } goto IL_00ea; } // end try (depth: 1) 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_00ce; } throw e; } CATCH_00ce: { // begin catch(System.Exception) // catch (Exception e) V_2 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogWarningFormat("[OVRNetworkTcpServer] can't accept new client: {0}", e.Message); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_25 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_26 = L_25; Exception_t * L_27 = V_2; NullCheck(L_27); String_t* L_28; L_28 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_27); NullCheck(L_26); ArrayElementTypeCheck (L_26, L_28); (L_26)->SetAt(static_cast(0), (RuntimeObject *)L_28); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral738B42EA58E92B8EC359A10DF5560ABCA16F1DA5)), L_26, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00ea; } // end catch (depth: 1) IL_00ea: { // } return; } } // System.Void OVRNetwork/OVRNetworkTcpServer::StopListening() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_StopListening_mD7626F4649211403BE352F5EDC40F627B7D9192A (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m80B8BBE459F9190E7AD8CD8E79E9713784B6664D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral4ED37E028DAF6A6051712ECF16D493541C0DE09C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral95674ED6468AAF938DEE1233C9550EDD41B8581E); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (tcpListener == null) TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_0 = __this->get_tcpListener_0(); if (L_0) { goto IL_0013; } } { // Debug.LogWarning("[OVRNetworkTcpServer] tcpListener is null"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral95674ED6468AAF938DEE1233C9550EDD41B8581E, /*hidden argument*/NULL); // return; return; } IL_0013: { // lock (clientsLock) RuntimeObject * L_1 = __this->get_clientsLock_1(); V_0 = L_1; V_1 = (bool)0; } IL_001c: try { // begin try (depth: 1) RuntimeObject * L_2 = V_0; Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD(L_2, (bool*)(&V_1), /*hidden argument*/NULL); // clients.Clear(); List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * L_3 = __this->get_clients_2(); NullCheck(L_3); List_1_Clear_m80B8BBE459F9190E7AD8CD8E79E9713784B6664D(L_3, /*hidden argument*/List_1_Clear_m80B8BBE459F9190E7AD8CD8E79E9713784B6664D_RuntimeMethod_var); // } IL2CPP_LEAVE(0x3B, FINALLY_0031); } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0031; } FINALLY_0031: { // begin finally (depth: 1) { bool L_4 = V_1; if (!L_4) { goto IL_003a; } } IL_0034: { RuntimeObject * L_5 = V_0; Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1(L_5, /*hidden argument*/NULL); } IL_003a: { IL2CPP_END_FINALLY(49) } } // end finally (depth: 1) IL2CPP_CLEANUP(49) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x3B, IL_003b) } IL_003b: { // tcpListener.Stop(); TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_6 = __this->get_tcpListener_0(); NullCheck(L_6); TcpListener_Stop_m113CEAB447C6BCDBCF91CEF94DCA602E4530C033(L_6, /*hidden argument*/NULL); // tcpListener = null; __this->set_tcpListener_0((TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B *)NULL); // Debug.Log("[OVRNetworkTcpServer] Stopped listening"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(_stringLiteral4ED37E028DAF6A6051712ECF16D493541C0DE09C, /*hidden argument*/NULL); // } return; } } // System.Void OVRNetwork/OVRNetworkTcpServer::DoAcceptTcpClientCallback(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_DoAcceptTcpClientCallback_m061A9EA78D0C8DE70EF44DA32AD361DC90579EA0 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Add_mF1161F60869367A62BE942BA993283E5CC883D74_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRNetworkTcpServer_DoAcceptTcpClientCallback_m061A9EA78D0C8DE70EF44DA32AD361DC90579EA0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral2608588C385D3CE01583F2D62DC89077A6A043AB); s_Il2CppMethodInitialized = true; } TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * V_0 = NULL; TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * V_1 = NULL; RuntimeObject * V_2 = NULL; bool V_3 = false; Exception_t * V_4 = NULL; Exception_t * V_5 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // TcpListener listener = ar.AsyncState as TcpListener; RuntimeObject* L_0 = ___ar0; NullCheck(L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, L_0); V_0 = ((TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B *)IsInstClass((RuntimeObject*)L_1, TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B_il2cpp_TypeInfo_var)); } IL_000c: try { // begin try (depth: 1) { // TcpClient client = listener.EndAcceptTcpClient(ar); TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_2 = V_0; RuntimeObject* L_3 = ___ar0; NullCheck(L_2); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_4; L_4 = TcpListener_EndAcceptTcpClient_m8CC22D3ACD902963F3F754628567A4EB8CF68785(L_2, L_3, /*hidden argument*/NULL); V_1 = L_4; // lock (clientsLock) RuntimeObject * L_5 = __this->get_clientsLock_1(); V_2 = L_5; V_3 = (bool)0; } IL_001d: try { // begin try (depth: 2) RuntimeObject * L_6 = V_2; Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD(L_6, (bool*)(&V_3), /*hidden argument*/NULL); // clients.Add(client); List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * L_7 = __this->get_clients_2(); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_8 = V_1; NullCheck(L_7); List_1_Add_mF1161F60869367A62BE942BA993283E5CC883D74(L_7, L_8, /*hidden argument*/List_1_Add_mF1161F60869367A62BE942BA993283E5CC883D74_RuntimeMethod_var); // Debug.Log("[OVRNetworkTcpServer] client added"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(_stringLiteral2608588C385D3CE01583F2D62DC89077A6A043AB, /*hidden argument*/NULL); // } IL2CPP_LEAVE(0x47, FINALLY_003d); } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003d; } FINALLY_003d: { // begin finally (depth: 2) { bool L_9 = V_3; if (!L_9) { goto IL_0046; } } IL_0040: { RuntimeObject * L_10 = V_2; Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1(L_10, /*hidden argument*/NULL); } IL_0046: { IL2CPP_END_FINALLY(61) } } // end finally (depth: 2) IL2CPP_CLEANUP(61) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x47, IL_0047) } IL_0047: { } IL_0048: try { // begin try (depth: 2) // tcpListener.BeginAcceptTcpClient(new AsyncCallback(DoAcceptTcpClientCallback), tcpListener); TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_11 = __this->get_tcpListener_0(); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_12 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_12, __this, (intptr_t)((intptr_t)OVRNetworkTcpServer_DoAcceptTcpClientCallback_m061A9EA78D0C8DE70EF44DA32AD361DC90579EA0_RuntimeMethod_var), /*hidden argument*/NULL); TcpListener_t96F905EC8A8737637341F4D6BC425E5188FDA14B * L_13 = __this->get_tcpListener_0(); NullCheck(L_11); RuntimeObject* L_14; L_14 = TcpListener_BeginAcceptTcpClient_mD026EBFD9527C042FAA26B9E6F04518B9763DE5F(L_11, L_12, L_13, /*hidden argument*/NULL); // } goto IL_0086; } // 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_0068; } throw e; } CATCH_0068: { // begin catch(System.Exception) // catch (Exception e) V_4 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogWarningFormat("[OVRNetworkTcpServer] can't accept new client: {0}", e.Message); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_15 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_16 = L_15; Exception_t * L_17 = V_4; NullCheck(L_17); String_t* L_18; L_18 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_17); NullCheck(L_16); ArrayElementTypeCheck (L_16, L_18); (L_16)->SetAt(static_cast(0), (RuntimeObject *)L_18); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral738B42EA58E92B8EC359A10DF5560ABCA16F1DA5)), L_16, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_0086; } // end catch (depth: 2) IL_0086: { // } goto IL_00a9; } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectDisposedException_t29EF6F519F16BA477EC682F23E8344BB1E9A958A_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_0088; } 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_008b; } throw e; } CATCH_0088: { // begin catch(System.ObjectDisposedException) // catch (ObjectDisposedException) // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00a9; } // end catch (depth: 1) CATCH_008b: { // begin catch(System.Exception) // catch (Exception e) V_5 = ((Exception_t *)IL2CPP_GET_ACTIVE_EXCEPTION(Exception_t *)); // Debug.LogWarningFormat("[OVRNetworkTcpServer] EndAcceptTcpClient failed: {0}", e.Message); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_19 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_20 = L_19; Exception_t * L_21 = V_5; NullCheck(L_21); String_t* L_22; L_22 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_21); NullCheck(L_20); ArrayElementTypeCheck (L_20, L_22); (L_20)->SetAt(static_cast(0), (RuntimeObject *)L_22); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral40F25CA0D76D9E8F556848E95592BC4241B2F76B)), L_20, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00a9; } // end catch (depth: 1) IL_00a9: { // } return; } } // System.Boolean OVRNetwork/OVRNetworkTcpServer::HasConnectedClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool OVRNetworkTcpServer_HasConnectedClient_m675644DD51D2F57248496CFA6A8C21F828161378 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756_RuntimeMethod_var); s_Il2CppMethodInitialized = true; } RuntimeObject * V_0 = NULL; bool V_1 = false; Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A V_2; memset((&V_2), 0, sizeof(V_2)); bool V_3 = false; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { // lock (clientsLock) RuntimeObject * L_0 = __this->get_clientsLock_1(); V_0 = L_0; V_1 = (bool)0; } IL_0009: try { // begin try (depth: 1) { RuntimeObject * L_1 = V_0; Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD(L_1, (bool*)(&V_1), /*hidden argument*/NULL); // foreach (TcpClient client in clients) List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * L_2 = __this->get_clients_2(); NullCheck(L_2); Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A L_3; L_3 = List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756(L_2, /*hidden argument*/List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756_RuntimeMethod_var); V_2 = L_3; } IL_001d: try { // begin try (depth: 2) { goto IL_0031; } IL_001f: { // foreach (TcpClient client in clients) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_4; L_4 = Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_inline((Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *)(&V_2), /*hidden argument*/Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_RuntimeMethod_var); // if (client.Connected) NullCheck(L_4); bool L_5; L_5 = TcpClient_get_Connected_m6F6E0D5E8CDF2D56756C34960B53D505640F481A(L_4, /*hidden argument*/NULL); if (!L_5) { goto IL_0031; } } IL_002d: { // return true; V_3 = (bool)1; IL2CPP_LEAVE(0x56, FINALLY_003c); } IL_0031: { // foreach (TcpClient client in clients) bool L_6; L_6 = Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83((Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *)(&V_2), /*hidden argument*/Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83_RuntimeMethod_var); if (L_6) { goto IL_001f; } } IL_003a: { IL2CPP_LEAVE(0x54, FINALLY_003c); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_003c; } FINALLY_003c: { // begin finally (depth: 2) Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294((Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *)(&V_2), /*hidden argument*/Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294_RuntimeMethod_var); IL2CPP_END_FINALLY(60) } // end finally (depth: 2) IL2CPP_CLEANUP(60) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_END_CLEANUP(0x56, FINALLY_004a); IL2CPP_END_CLEANUP(0x54, FINALLY_004a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_004a; } FINALLY_004a: { // begin finally (depth: 1) { bool L_7 = V_1; if (!L_7) { goto IL_0053; } } IL_004d: { RuntimeObject * L_8 = V_0; Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1(L_8, /*hidden argument*/NULL); } IL_0053: { IL2CPP_END_FINALLY(74) } } // end finally (depth: 1) IL2CPP_CLEANUP(74) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x56, IL_0056) IL2CPP_JUMP_TBL(0x54, IL_0054) } IL_0054: { // return false; return (bool)0; } IL_0056: { // } bool L_9 = V_3; return L_9; } } // System.Void OVRNetwork/OVRNetworkTcpServer::Broadcast(System.Int32,System.Byte[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_Broadcast_m275C9EBE5A710C20109CB24D15FC7A18B7D0F172 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, int32_t ___payloadType0, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* ___payload1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRNetworkTcpServer_DoWriteDataCallback_mB902BCBED044EC9449BC3E4FF1B107ADCA8A8699_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC27791D35D47A632E8E99033E2E23380DF718F72); s_Il2CppMethodInitialized = true; } FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB V_0; memset((&V_0), 0, sizeof(V_0)); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_2 = NULL; RuntimeObject * V_3 = NULL; bool V_4 = false; Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A V_5; memset((&V_5), 0, sizeof(V_5)); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * V_6 = NULL; SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * V_7 = NULL; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __active_exceptions; il2cpp::utils::ExceptionSupportStack __leave_targets; { // if (payload.Length > OVRNetwork.MaxPayloadLength) ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = ___payload1; NullCheck(L_0); if ((((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_0)->max_length)))) <= ((int32_t)((int32_t)65524)))) { goto IL_0025; } } { // Debug.LogWarningFormat("[OVRNetworkTcpServer] drop payload because it's too long: {0} bytes", payload.Length); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_3 = ___payload1; NullCheck(L_3); int32_t L_4 = ((int32_t)((int32_t)(((RuntimeArray*)L_3)->max_length))); RuntimeObject * L_5 = Box(Int32_tFDE5F8CD43D10453F6A2E0C77FE48C6CC7009046_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_5); (L_2)->SetAt(static_cast(0), (RuntimeObject *)L_5); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(_stringLiteralC27791D35D47A632E8E99033E2E23380DF718F72, L_2, /*hidden argument*/NULL); } IL_0025: { // FrameHeader header = new FrameHeader(); il2cpp_codegen_initobj((&V_0), sizeof(FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB )); // header.protocolIdentifier = FrameHeaderMagicIdentifier; (&V_0)->set_protocolIdentifier_0(((int32_t)1384359787)); // header.payloadType = payloadType; int32_t L_6 = ___payloadType0; (&V_0)->set_payloadType_1(L_6); // header.payloadLength = payload.Length; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_7 = ___payload1; NullCheck(L_7); (&V_0)->set_payloadLength_2(((int32_t)((int32_t)(((RuntimeArray*)L_7)->max_length)))); // byte[] headerBuffer = header.ToBytes(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8; L_8 = FrameHeader_ToBytes_m187B917D768BE8B47D94E45A2A565271217DB618((FrameHeader_t9D970A03D74922D19AFAA004389C7D3323FD7ADB *)(&V_0), /*hidden argument*/NULL); V_1 = L_8; // byte[] dataBuffer = new byte[headerBuffer.Length + payload.Length]; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_9 = V_1; NullCheck(L_9); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_10 = ___payload1; NullCheck(L_10); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_11 = (ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, (uint32_t)((int32_t)il2cpp_codegen_add((int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_9)->max_length))), (int32_t)((int32_t)((int32_t)(((RuntimeArray*)L_10)->max_length)))))); V_2 = L_11; // headerBuffer.CopyTo(dataBuffer, 0); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_12 = V_1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_13 = V_2; NullCheck((RuntimeArray *)(RuntimeArray *)L_12); Array_CopyTo_m6AF950973942E09BAB1F21B055BBD2CD58C980B2((RuntimeArray *)(RuntimeArray *)L_12, (RuntimeArray *)(RuntimeArray *)L_13, 0, /*hidden argument*/NULL); // payload.CopyTo(dataBuffer, headerBuffer.Length); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_14 = ___payload1; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_15 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_16 = V_1; NullCheck(L_16); NullCheck((RuntimeArray *)(RuntimeArray *)L_14); Array_CopyTo_m6AF950973942E09BAB1F21B055BBD2CD58C980B2((RuntimeArray *)(RuntimeArray *)L_14, (RuntimeArray *)(RuntimeArray *)L_15, ((int32_t)((int32_t)(((RuntimeArray*)L_16)->max_length))), /*hidden argument*/NULL); // lock (clientsLock) RuntimeObject * L_17 = __this->get_clientsLock_1(); V_3 = L_17; V_4 = (bool)0; } IL_007c: try { // begin try (depth: 1) { RuntimeObject * L_18 = V_3; Monitor_Enter_m588C16057E70F436C528A800D32546E987CAF1BD(L_18, (bool*)(&V_4), /*hidden argument*/NULL); // foreach (TcpClient client in clients) List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * L_19 = __this->get_clients_2(); NullCheck(L_19); Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A L_20; L_20 = List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756(L_19, /*hidden argument*/List_1_GetEnumerator_m64C888BBED90BE99F28626C50B8D0687C2DF3756_RuntimeMethod_var); V_5 = L_20; } IL_0091: try { // begin try (depth: 2) { goto IL_00fd; } IL_0093: { // foreach (TcpClient client in clients) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_21; L_21 = Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_inline((Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *)(&V_5), /*hidden argument*/Enumerator_get_Current_mB4C41E5EE31044B7ADE4B031DAA369380DC4C37B_RuntimeMethod_var); V_6 = L_21; // if (client.Connected) TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_22 = V_6; NullCheck(L_22); bool L_23; L_23 = TcpClient_get_Connected_m6F6E0D5E8CDF2D56756C34960B53D505640F481A(L_22, /*hidden argument*/NULL); if (!L_23) { goto IL_00fd; } } IL_00a5: try { // begin try (depth: 3) // client.GetStream().BeginWrite(dataBuffer, 0, dataBuffer.Length, new AsyncCallback(DoWriteDataCallback), client.GetStream()); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_24 = V_6; NullCheck(L_24); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_25; L_25 = TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC(L_24, /*hidden argument*/NULL); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_26 = V_2; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_27 = V_2; NullCheck(L_27); AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * L_28 = (AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *)il2cpp_codegen_object_new(AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA_il2cpp_TypeInfo_var); AsyncCallback__ctor_m90AB9820D2F8B0B06E5E51AF3E9086415A122D05(L_28, __this, (intptr_t)((intptr_t)OVRNetworkTcpServer_DoWriteDataCallback_mB902BCBED044EC9449BC3E4FF1B107ADCA8A8699_RuntimeMethod_var), /*hidden argument*/NULL); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_29 = V_6; NullCheck(L_29); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_30; L_30 = TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC(L_29, /*hidden argument*/NULL); NullCheck(L_25); RuntimeObject* L_31; L_31 = VirtFuncInvoker5< RuntimeObject*, ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, int32_t, int32_t, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA *, RuntimeObject * >::Invoke(22 /* System.IAsyncResult System.IO.Stream::BeginWrite(System.Byte[],System.Int32,System.Int32,System.AsyncCallback,System.Object) */, L_25, L_26, 0, ((int32_t)((int32_t)(((RuntimeArray*)L_27)->max_length))), L_28, L_30); // } goto IL_00fd; } // end try (depth: 3) catch(Il2CppExceptionWrapper& e) { if(il2cpp_codegen_class_is_assignable_from (((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88_il2cpp_TypeInfo_var)), il2cpp_codegen_object_class(e.ex))) { IL2CPP_PUSH_ACTIVE_EXCEPTION(e.ex); goto CATCH_00cc; } throw e; } CATCH_00cc: { // begin catch(System.Net.Sockets.SocketException) // catch (SocketException e) V_7 = ((SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)IL2CPP_GET_ACTIVE_EXCEPTION(SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 *)); // Debug.LogWarningFormat("[OVRNetworkTcpServer] close client because of socket error: {0}", e.Message); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_32 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var)), (uint32_t)1); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_33 = L_32; SocketException_tB04D4347A4A41DC1A8583BBAE5A7C990F78C1E88 * L_34 = V_7; NullCheck(L_34); String_t* L_35; L_35 = VirtFuncInvoker0< String_t* >::Invoke(5 /* System.String System.Exception::get_Message() */, L_34); NullCheck(L_33); ArrayElementTypeCheck (L_33, L_35); (L_33)->SetAt(static_cast(0), (RuntimeObject *)L_35); IL2CPP_RUNTIME_CLASS_INIT(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var))); Debug_LogWarningFormat_m0376DF1FA13FFF5290B9AB27F9808F6632E9A8C7(((String_t*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&_stringLiteral7A69078B1F3C8BF1B99BCA261B178909859DF28A)), L_33, /*hidden argument*/NULL); // client.GetStream().Close(); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_36 = V_6; NullCheck(L_36); NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 * L_37; L_37 = TcpClient_GetStream_mBBF27B06916830198E0E3BA323142793E9B2C5FC(L_36, /*hidden argument*/NULL); NullCheck(L_37); VirtActionInvoker0::Invoke(16 /* System.Void System.IO.Stream::Close() */, L_37); // client.Close(); TcpClient_t0EEB05EA031F6AFD93D46116F5E33A9C4E3350EE * L_38 = V_6; NullCheck(L_38); TcpClient_Close_mCF4B20FF3721D82A8C9F8136E5CB1F4C68AFD5B3(L_38, /*hidden argument*/NULL); // } IL2CPP_POP_ACTIVE_EXCEPTION(); goto IL_00fd; } // end catch (depth: 3) IL_00fd: { // foreach (TcpClient client in clients) bool L_39; L_39 = Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83((Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *)(&V_5), /*hidden argument*/Enumerator_MoveNext_m4EF166FE86EDCEC7F0A16F17513F77D7980C5A83_RuntimeMethod_var); if (L_39) { goto IL_0093; } } IL_0106: { IL2CPP_LEAVE(0x121, FINALLY_0108); } } // end try (depth: 2) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0108; } FINALLY_0108: { // begin finally (depth: 2) Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294((Enumerator_t438A782B098A01259E0BD6385E70E42A45F92C5A *)(&V_5), /*hidden argument*/Enumerator_Dispose_mF1084A101C39D4A2627D5B3C65C05F63DF49D294_RuntimeMethod_var); IL2CPP_END_FINALLY(264) } // end finally (depth: 2) IL2CPP_CLEANUP(264) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_END_CLEANUP(0x121, FINALLY_0116); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_0116; } FINALLY_0116: { // begin finally (depth: 1) { bool L_40 = V_4; if (!L_40) { goto IL_0120; } } IL_011a: { RuntimeObject * L_41 = V_3; Monitor_Exit_m62365CE1CF6AD0E7396CEEB926F7B0C3FA8CABA1(L_41, /*hidden argument*/NULL); } IL_0120: { IL2CPP_END_FINALLY(278) } } // end finally (depth: 1) IL2CPP_CLEANUP(278) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x121, IL_0121) } IL_0121: { // } return; } } // System.Void OVRNetwork/OVRNetworkTcpServer::DoWriteDataCallback(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer_DoWriteDataCallback_mB902BCBED044EC9449BC3E4FF1B107ADCA8A8699 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, RuntimeObject* ___ar0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // NetworkStream stream = ar.AsyncState as NetworkStream; RuntimeObject* L_0 = ___ar0; NullCheck(L_0); RuntimeObject * L_1; L_1 = InterfaceFuncInvoker0< RuntimeObject * >::Invoke(2 /* System.Object System.IAsyncResult::get_AsyncState() */, IAsyncResult_tC9F97BF36FCF122D29D3101D80642278297BF370_il2cpp_TypeInfo_var, L_0); // stream.EndWrite(ar); RuntimeObject* L_2 = ___ar0; NullCheck(((NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 *)IsInstClass((RuntimeObject*)L_1, NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48_il2cpp_TypeInfo_var))); VirtActionInvoker1< RuntimeObject* >::Invoke(23 /* System.Void System.IO.Stream::EndWrite(System.IAsyncResult) */, ((NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48 *)IsInstClass((RuntimeObject*)L_1, NetworkStream_t160A2538024FE3EC707872435D01F1C20B3B1A48_il2cpp_TypeInfo_var)), L_2); // } return; } } // System.Void OVRNetwork/OVRNetworkTcpServer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRNetworkTcpServer__ctor_m4ABCF8E5F4ACE160E9D21D6C3712F7CFA3AB6369 (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1__ctor_mA4C146613E9FC96772F1A41CE5AB7BE3C95DFED9_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RuntimeObject_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private readonly object clientsLock = new object(); RuntimeObject * L_0 = (RuntimeObject *)il2cpp_codegen_object_new(RuntimeObject_il2cpp_TypeInfo_var); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(L_0, /*hidden argument*/NULL); __this->set_clientsLock_1(L_0); // public readonly List clients = new List(); List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF * L_1 = (List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF *)il2cpp_codegen_object_new(List_1_tC3E5D84D8C34E838275BC7F954E37D1B9ABD1DAF_il2cpp_TypeInfo_var); List_1__ctor_mA4C146613E9FC96772F1A41CE5AB7BE3C95DFED9(L_1, /*hidden argument*/List_1__ctor_mA4C146613E9FC96772F1A41CE5AB7BE3C95DFED9_RuntimeMethod_var); __this->set_clients_2(L_1); Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif IL2CPP_EXTERN_C void DelegatePInvokeWrapper_ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 (ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * __this, const RuntimeMethod* method) { typedef void (DEFAULT_CALL *PInvokeFunc)(); PInvokeFunc il2cppPInvokeFunc = reinterpret_cast(((RuntimeDelegate*)__this)->method->nativeFunction); // Native function invocation il2cppPInvokeFunc(); } // System.Void OVROverlay/ExternalSurfaceObjectCreated::.ctor(System.Object,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalSurfaceObjectCreated__ctor_m9BBD8AAECD9A20118D8952E6AC331F191962B13C (ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * __this, RuntimeObject * ___object0, intptr_t ___method1, const RuntimeMethod* method) { if (___object0 == NULL && !MethodIsStatic((RuntimeMethod*)___method1)) { il2cpp_codegen_raise_exception(il2cpp_codegen_get_argument_exception(NULL, "Delegate to an instance method cannot have null 'this'."), NULL); } __this->set_method_ptr_0(il2cpp_codegen_get_method_pointer((RuntimeMethod*)___method1)); __this->set_method_3(___method1); __this->set_m_target_2(___object0); } // System.Void OVROverlay/ExternalSurfaceObjectCreated::Invoke() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalSurfaceObjectCreated_Invoke_m645CA3F51B003E810F830FB59FAC0533F51A72FD (ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * __this, const RuntimeMethod* method) { DelegateU5BU5D_t677D8FE08A5F99E8EE49150B73966CD6E9BF7DB8* delegateArrayToInvoke = __this->get_delegates_11(); Delegate_t** delegatesToInvoke; il2cpp_array_size_t length; if (delegateArrayToInvoke != NULL) { length = delegateArrayToInvoke->max_length; delegatesToInvoke = reinterpret_cast(delegateArrayToInvoke->GetAddressAtUnchecked(0)); } else { length = 1; delegatesToInvoke = reinterpret_cast(&__this); } for (il2cpp_array_size_t i = 0; i < length; i++) { Delegate_t* currentDelegate = delegatesToInvoke[i]; Il2CppMethodPointer targetMethodPointer = currentDelegate->get_method_ptr_0(); RuntimeObject* targetThis = currentDelegate->get_m_target_2(); RuntimeMethod* targetMethod = (RuntimeMethod*)(currentDelegate->get_method_3()); if (!il2cpp_codegen_method_is_virtual(targetMethod)) { il2cpp_codegen_raise_execution_engine_exception_if_method_is_not_found(targetMethod); } bool ___methodIsStatic = MethodIsStatic(targetMethod); int ___parameterCount = il2cpp_codegen_method_parameter_count(targetMethod); if (___methodIsStatic) { if (___parameterCount == 0) { // open typedef void (*FunctionPointerType) (const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetMethod); } else { // closed typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } else { // closed if (targetThis != NULL && il2cpp_codegen_method_is_virtual(targetMethod) && !il2cpp_codegen_object_is_of_sealed_type(targetThis) && il2cpp_codegen_delegate_has_invoker((Il2CppDelegate*)__this)) { if (il2cpp_codegen_method_is_generic_instance(targetMethod)) { if (il2cpp_codegen_method_is_interface_method(targetMethod)) GenericInterfaceActionInvoker0::Invoke(targetMethod, targetThis); else GenericVirtActionInvoker0::Invoke(targetMethod, targetThis); } else { if (il2cpp_codegen_method_is_interface_method(targetMethod)) InterfaceActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), il2cpp_codegen_method_get_declaring_type(targetMethod), targetThis); else VirtActionInvoker0::Invoke(il2cpp_codegen_method_get_slot(targetMethod), targetThis); } } else { typedef void (*FunctionPointerType) (void*, const RuntimeMethod*); ((FunctionPointerType)targetMethodPointer)(targetThis, targetMethod); } } } } // System.IAsyncResult OVROverlay/ExternalSurfaceObjectCreated::BeginInvoke(System.AsyncCallback,System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject* ExternalSurfaceObjectCreated_BeginInvoke_mE2B5D0DB5DE2AC1A1FFED62A9411778C7FDFC673 (ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * __this, AsyncCallback_tA7921BEF974919C46FF8F9D9867C567B200BB0EA * ___callback0, RuntimeObject * ___object1, const RuntimeMethod* method) { void *__d_args[1] = {0}; return (RuntimeObject*)il2cpp_codegen_delegate_begin_invoke((RuntimeDelegate*)__this, __d_args, (RuntimeDelegate*)___callback0, (RuntimeObject*)___object1);; } // System.Void OVROverlay/ExternalSurfaceObjectCreated::EndInvoke(System.IAsyncResult) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ExternalSurfaceObjectCreated_EndInvoke_m086802A8DF70EC39F1683740B6E943530223E830 (ExternalSurfaceObjectCreated_t8920C1D760358680EBF41C7DC7F9765475452D96 * __this, RuntimeObject* ___result0, const RuntimeMethod* method) { il2cpp_codegen_delegate_end_invoke((Il2CppAsyncResult*) ___result0, 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 // Conversion methods for marshalling of: OVROverlay/LayerTexture IL2CPP_EXTERN_C void LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshal_pinvoke(const LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E& unmarshaled, LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_pinvoke& marshaled) { Exception_t* ___appTexture_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'appTexture' of type 'LayerTexture': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___appTexture_0Exception, NULL); } IL2CPP_EXTERN_C void LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshal_pinvoke_back(const LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_pinvoke& marshaled, LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E& unmarshaled) { Exception_t* ___appTexture_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'appTexture' of type 'LayerTexture': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___appTexture_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVROverlay/LayerTexture IL2CPP_EXTERN_C void LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshal_pinvoke_cleanup(LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVROverlay/LayerTexture IL2CPP_EXTERN_C void LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshal_com(const LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E& unmarshaled, LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_com& marshaled) { Exception_t* ___appTexture_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'appTexture' of type 'LayerTexture': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___appTexture_0Exception, NULL); } IL2CPP_EXTERN_C void LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshal_com_back(const LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_com& marshaled, LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E& unmarshaled) { Exception_t* ___appTexture_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'appTexture' of type 'LayerTexture': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___appTexture_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVROverlay/LayerTexture IL2CPP_EXTERN_C void LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshal_com_cleanup(LayerTexture_t3BA5633FA68A094ACEC51BA1E9999CCABDCB571E_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 OVRPassthroughLayer/<>c__DisplayClass10_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass10_0__ctor_m3F9BEE9E640EFA77E5E6C31C2C9E67CE60478692 (U3CU3Ec__DisplayClass10_0_t315AFCB3B5BB2075D2D2616908508577B5525985 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Boolean OVRPassthroughLayer/<>c__DisplayClass10_0::b__0(OVRPassthroughLayer/DeferredPassthroughMeshAddition) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass10_0_U3CIsSurfaceGeometryU3Eb__0_m6B1B2119035B869F9E0151D71901EF05905F94B0 (U3CU3Ec__DisplayClass10_0_t315AFCB3B5BB2075D2D2616908508577B5525985 * __this, DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873 ___x0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return surfaceGameObjects.ContainsKey(obj) || deferredSurfaceGameObjects.Exists(x => x.gameObject == obj); DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873 L_0 = ___x0; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1 = L_0.get_gameObject_0(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = __this->get_obj_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_3; L_3 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_1, L_2, /*hidden argument*/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 // System.Void OVRPassthroughLayer/<>c__DisplayClass9_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass9_0__ctor_mB10973FCEFBACFE515788126D1CF1CD8BFB97FE2 (U3CU3Ec__DisplayClass9_0_tEAC6F88D667E0A40E71FEFDC036FE784B1CCCAEC * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Boolean OVRPassthroughLayer/<>c__DisplayClass9_0::b__0(OVRPassthroughLayer/DeferredPassthroughMeshAddition) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass9_0_U3CRemoveSurfaceGeometryU3Eb__0_m134C118C42ED940A697E167E86C015A0903E85A3 (U3CU3Ec__DisplayClass9_0_tEAC6F88D667E0A40E71FEFDC036FE784B1CCCAEC * __this, DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873 ___x0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // int count = deferredSurfaceGameObjects.RemoveAll(x => x.gameObject == obj); DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873 L_0 = ___x0; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1 = L_0.get_gameObject_0(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_2 = __this->get_obj_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_3; L_3 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_1, L_2, /*hidden argument*/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 #ifdef __clang__ #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: OVRPassthroughLayer/DeferredPassthroughMeshAddition IL2CPP_EXTERN_C void DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshal_pinvoke(const DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873& unmarshaled, DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshaled_pinvoke& marshaled) { Exception_t* ___gameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'gameObject' of type 'DeferredPassthroughMeshAddition': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___gameObject_0Exception, NULL); } IL2CPP_EXTERN_C void DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshal_pinvoke_back(const DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshaled_pinvoke& marshaled, DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873& unmarshaled) { Exception_t* ___gameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'gameObject' of type 'DeferredPassthroughMeshAddition': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___gameObject_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVRPassthroughLayer/DeferredPassthroughMeshAddition IL2CPP_EXTERN_C void DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshal_pinvoke_cleanup(DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPassthroughLayer/DeferredPassthroughMeshAddition IL2CPP_EXTERN_C void DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshal_com(const DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873& unmarshaled, DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshaled_com& marshaled) { Exception_t* ___gameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'gameObject' of type 'DeferredPassthroughMeshAddition': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___gameObject_0Exception, NULL); } IL2CPP_EXTERN_C void DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshal_com_back(const DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshaled_com& marshaled, DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873& unmarshaled) { Exception_t* ___gameObject_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'gameObject' of type 'DeferredPassthroughMeshAddition': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___gameObject_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVRPassthroughLayer/DeferredPassthroughMeshAddition IL2CPP_EXTERN_C void DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_marshal_com_cleanup(DeferredPassthroughMeshAddition_t45C528D4E05C488B1777B4CAE8A36B7BC23FE873_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: OVRPassthroughLayer/PassthroughMeshInstance IL2CPP_EXTERN_C void PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshal_pinvoke(const PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF& unmarshaled, PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_pinvoke& marshaled) { marshaled.___meshHandle_0 = unmarshaled.get_meshHandle_0(); marshaled.___instanceHandle_1 = unmarshaled.get_instanceHandle_1(); marshaled.___updateTransform_2 = static_cast(unmarshaled.get_updateTransform_2()); } IL2CPP_EXTERN_C void PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshal_pinvoke_back(const PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_pinvoke& marshaled, PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF& unmarshaled) { uint64_t unmarshaled_meshHandle_temp_0 = 0; unmarshaled_meshHandle_temp_0 = marshaled.___meshHandle_0; unmarshaled.set_meshHandle_0(unmarshaled_meshHandle_temp_0); uint64_t unmarshaled_instanceHandle_temp_1 = 0; unmarshaled_instanceHandle_temp_1 = marshaled.___instanceHandle_1; unmarshaled.set_instanceHandle_1(unmarshaled_instanceHandle_temp_1); bool unmarshaled_updateTransform_temp_2 = false; unmarshaled_updateTransform_temp_2 = static_cast(marshaled.___updateTransform_2); unmarshaled.set_updateTransform_2(unmarshaled_updateTransform_temp_2); } // Conversion method for clean up from marshalling of: OVRPassthroughLayer/PassthroughMeshInstance IL2CPP_EXTERN_C void PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshal_pinvoke_cleanup(PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPassthroughLayer/PassthroughMeshInstance IL2CPP_EXTERN_C void PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshal_com(const PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF& unmarshaled, PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_com& marshaled) { marshaled.___meshHandle_0 = unmarshaled.get_meshHandle_0(); marshaled.___instanceHandle_1 = unmarshaled.get_instanceHandle_1(); marshaled.___updateTransform_2 = static_cast(unmarshaled.get_updateTransform_2()); } IL2CPP_EXTERN_C void PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshal_com_back(const PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_com& marshaled, PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF& unmarshaled) { uint64_t unmarshaled_meshHandle_temp_0 = 0; unmarshaled_meshHandle_temp_0 = marshaled.___meshHandle_0; unmarshaled.set_meshHandle_0(unmarshaled_meshHandle_temp_0); uint64_t unmarshaled_instanceHandle_temp_1 = 0; unmarshaled_instanceHandle_temp_1 = marshaled.___instanceHandle_1; unmarshaled.set_instanceHandle_1(unmarshaled_instanceHandle_temp_1); bool unmarshaled_updateTransform_temp_2 = false; unmarshaled_updateTransform_temp_2 = static_cast(marshaled.___updateTransform_2); unmarshaled.set_updateTransform_2(unmarshaled_updateTransform_temp_2); } // Conversion method for clean up from marshalling of: OVRPassthroughLayer/PassthroughMeshInstance IL2CPP_EXTERN_C void PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshal_com_cleanup(PassthroughMeshInstance_tE7FF80851E9E9A5716598F6CF96E8C54A0AAECCF_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m0DC5CC791DACAFCF95F39E6A597F3C41E6C46745 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * L_0 = (U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B *)il2cpp_codegen_object_new(U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m4D54D236D5618565FCA068F63B2ED56EEDD1D5D5(L_0, /*hidden argument*/NULL); ((U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m4D54D236D5618565FCA068F63B2ED56EEDD1D5D5 (U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Int32 UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::b__15_0(UnityEngine.RaycastHit,UnityEngine.RaycastHit) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CRaycastU3Eb__15_0_m2A1D5005F42DF586254681A64FE3F98F5A7E9FC4 (U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * __this, RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___r10, RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___r21, const RuntimeMethod* method) { float V_0 = 0.0f; { // System.Array.Sort(hits, (r1, r2) => r1.distance.CompareTo(r2.distance)); float L_0; L_0 = RaycastHit_get_distance_m85FCA98D7957C3BF1D449CA1B48C116CCD6226FA((RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 *)(&___r10), /*hidden argument*/NULL); V_0 = L_0; float L_1; L_1 = RaycastHit_get_distance_m85FCA98D7957C3BF1D449CA1B48C116CCD6226FA((RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 *)(&___r21), /*hidden argument*/NULL); int32_t L_2; L_2 = Single_CompareTo_m80B5B5A70A2343C3A8673F35635EBED4458109B4((float*)(&V_0), L_1, /*hidden argument*/NULL); return L_2; } } // System.Int32 UnityEngine.EventSystems.OVRPhysicsRaycaster/<>c::b__16_0(UnityEngine.RaycastHit,UnityEngine.RaycastHit) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CSpherecastU3Eb__16_0_m6F3155429E1E080FD58977CD19B4D878DCE1F625 (U3CU3Ec_tE07379D5D65DFCC4ACACA0D64AD48BDE505C5D0B * __this, RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___r10, RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 ___r21, const RuntimeMethod* method) { float V_0 = 0.0f; { // System.Array.Sort(hits, (r1, r2) => r1.distance.CompareTo(r2.distance)); float L_0; L_0 = RaycastHit_get_distance_m85FCA98D7957C3BF1D449CA1B48C116CCD6226FA((RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 *)(&___r10), /*hidden argument*/NULL); V_0 = L_0; float L_1; L_1 = RaycastHit_get_distance_m85FCA98D7957C3BF1D449CA1B48C116CCD6226FA((RaycastHit_t59E5AEC8FE13BFA2ACBB6FFBDB7585FFB7288F89 *)(&___r21), /*hidden argument*/NULL); int32_t L_2; L_2 = Single_CompareTo_m80B5B5A70A2343C3A8673F35635EBED4458109B4((float*)(&V_0), L_1, /*hidden argument*/NULL); return L_2; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 // Conversion methods for marshalling of: OVRPlugin/AppPerfStats IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke(const AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5& unmarshaled, AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke& marshaled) { if (unmarshaled.get_FrameStats_0() != NULL) { if (5 > (unmarshaled.get_FrameStats_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(5); i++) { (marshaled.___FrameStats_0)[i] = (unmarshaled.get_FrameStats_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___FrameStatsCount_1 = unmarshaled.get_FrameStatsCount_1(); marshaled.___AnyFrameStatsDropped_2 = unmarshaled.get_AnyFrameStatsDropped_2(); marshaled.___AdaptiveGpuPerformanceScale_3 = unmarshaled.get_AdaptiveGpuPerformanceScale_3(); } IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke_back(const AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke& marshaled, AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_FrameStats_0(reinterpret_cast((AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A*)SZArrayNew(AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A_il2cpp_TypeInfo_var, 5))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(5); i++) { (unmarshaled.get_FrameStats_0())->SetAtUnchecked(static_cast(i), (marshaled.___FrameStats_0)[i]); } int32_t unmarshaled_FrameStatsCount_temp_1 = 0; unmarshaled_FrameStatsCount_temp_1 = marshaled.___FrameStatsCount_1; unmarshaled.set_FrameStatsCount_1(unmarshaled_FrameStatsCount_temp_1); int32_t unmarshaled_AnyFrameStatsDropped_temp_2 = 0; unmarshaled_AnyFrameStatsDropped_temp_2 = marshaled.___AnyFrameStatsDropped_2; unmarshaled.set_AnyFrameStatsDropped_2(unmarshaled_AnyFrameStatsDropped_temp_2); float unmarshaled_AdaptiveGpuPerformanceScale_temp_3 = 0.0f; unmarshaled_AdaptiveGpuPerformanceScale_temp_3 = marshaled.___AdaptiveGpuPerformanceScale_3; unmarshaled.set_AdaptiveGpuPerformanceScale_3(unmarshaled_AdaptiveGpuPerformanceScale_temp_3); } // Conversion method for clean up from marshalling of: OVRPlugin/AppPerfStats IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke_cleanup(AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/AppPerfStats IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_com(const AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5& unmarshaled, AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_com& marshaled) { if (unmarshaled.get_FrameStats_0() != NULL) { if (5 > (unmarshaled.get_FrameStats_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(5); i++) { (marshaled.___FrameStats_0)[i] = (unmarshaled.get_FrameStats_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___FrameStatsCount_1 = unmarshaled.get_FrameStatsCount_1(); marshaled.___AnyFrameStatsDropped_2 = unmarshaled.get_AnyFrameStatsDropped_2(); marshaled.___AdaptiveGpuPerformanceScale_3 = unmarshaled.get_AdaptiveGpuPerformanceScale_3(); } IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_com_back(const AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_com& marshaled, AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_FrameStats_0(reinterpret_cast((AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A*)SZArrayNew(AppPerfFrameStatsU5BU5D_tFCA0D0BBD5ADC79D31EB94317DFF1B3E090C361A_il2cpp_TypeInfo_var, 5))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(5); i++) { (unmarshaled.get_FrameStats_0())->SetAtUnchecked(static_cast(i), (marshaled.___FrameStats_0)[i]); } int32_t unmarshaled_FrameStatsCount_temp_1 = 0; unmarshaled_FrameStatsCount_temp_1 = marshaled.___FrameStatsCount_1; unmarshaled.set_FrameStatsCount_1(unmarshaled_FrameStatsCount_temp_1); int32_t unmarshaled_AnyFrameStatsDropped_temp_2 = 0; unmarshaled_AnyFrameStatsDropped_temp_2 = marshaled.___AnyFrameStatsDropped_2; unmarshaled.set_AnyFrameStatsDropped_2(unmarshaled_AnyFrameStatsDropped_temp_2); float unmarshaled_AdaptiveGpuPerformanceScale_temp_3 = 0.0f; unmarshaled_AdaptiveGpuPerformanceScale_temp_3 = marshaled.___AdaptiveGpuPerformanceScale_3; unmarshaled.set_AdaptiveGpuPerformanceScale_3(unmarshaled_AdaptiveGpuPerformanceScale_temp_3); } // Conversion method for clean up from marshalling of: OVRPlugin/AppPerfStats IL2CPP_EXTERN_C void AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_com_cleanup(AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 // Conversion methods for marshalling of: OVRPlugin/BoundaryGeometry IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke(const BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470& unmarshaled, BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke& marshaled) { marshaled.___BoundaryType_0 = unmarshaled.get_BoundaryType_0(); if (unmarshaled.get_Points_1() != NULL) { if (256 > (unmarshaled.get_Points_1())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(256); i++) { (marshaled.___Points_1)[i] = (unmarshaled.get_Points_1())->GetAtUnchecked(static_cast(i)); } } marshaled.___PointsCount_2 = unmarshaled.get_PointsCount_2(); } IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke_back(const BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke& marshaled, BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_BoundaryType_temp_0 = 0; unmarshaled_BoundaryType_temp_0 = marshaled.___BoundaryType_0; unmarshaled.set_BoundaryType_0(unmarshaled_BoundaryType_temp_0); unmarshaled.set_Points_1(reinterpret_cast((Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1*)SZArrayNew(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var, 256))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(256); i++) { (unmarshaled.get_Points_1())->SetAtUnchecked(static_cast(i), (marshaled.___Points_1)[i]); } int32_t unmarshaled_PointsCount_temp_2 = 0; unmarshaled_PointsCount_temp_2 = marshaled.___PointsCount_2; unmarshaled.set_PointsCount_2(unmarshaled_PointsCount_temp_2); } // Conversion method for clean up from marshalling of: OVRPlugin/BoundaryGeometry IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke_cleanup(BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/BoundaryGeometry IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_com(const BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470& unmarshaled, BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_com& marshaled) { marshaled.___BoundaryType_0 = unmarshaled.get_BoundaryType_0(); if (unmarshaled.get_Points_1() != NULL) { if (256 > (unmarshaled.get_Points_1())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(256); i++) { (marshaled.___Points_1)[i] = (unmarshaled.get_Points_1())->GetAtUnchecked(static_cast(i)); } } marshaled.___PointsCount_2 = unmarshaled.get_PointsCount_2(); } IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_com_back(const BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_com& marshaled, BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_BoundaryType_temp_0 = 0; unmarshaled_BoundaryType_temp_0 = marshaled.___BoundaryType_0; unmarshaled.set_BoundaryType_0(unmarshaled_BoundaryType_temp_0); unmarshaled.set_Points_1(reinterpret_cast((Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1*)SZArrayNew(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var, 256))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(256); i++) { (unmarshaled.get_Points_1())->SetAtUnchecked(static_cast(i), (marshaled.___Points_1)[i]); } int32_t unmarshaled_PointsCount_temp_2 = 0; unmarshaled_PointsCount_temp_2 = marshaled.___PointsCount_2; unmarshaled.set_PointsCount_2(unmarshaled_PointsCount_temp_2); } // Conversion method for clean up from marshalling of: OVRPlugin/BoundaryGeometry IL2CPP_EXTERN_C void BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_com_cleanup(BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 OVRPlugin/ControllerState2::.ctor(OVRPlugin/ControllerState) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ControllerState2__ctor_m5655787B8789EC447DB216CA3CA406CAF899574A (ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C * __this, ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 ___cs0, const RuntimeMethod* method) { Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 V_0; memset((&V_0), 0, sizeof(V_0)); { // ConnectedControllers = cs.ConnectedControllers; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_0 = ___cs0; uint32_t L_1 = L_0.get_ConnectedControllers_0(); __this->set_ConnectedControllers_0(L_1); // Buttons = cs.Buttons; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_2 = ___cs0; uint32_t L_3 = L_2.get_Buttons_1(); __this->set_Buttons_1(L_3); // Touches = cs.Touches; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_4 = ___cs0; uint32_t L_5 = L_4.get_Touches_2(); __this->set_Touches_2(L_5); // NearTouches = cs.NearTouches; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_6 = ___cs0; uint32_t L_7 = L_6.get_NearTouches_3(); __this->set_NearTouches_3(L_7); // LIndexTrigger = cs.LIndexTrigger; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_8 = ___cs0; float L_9 = L_8.get_LIndexTrigger_4(); __this->set_LIndexTrigger_4(L_9); // RIndexTrigger = cs.RIndexTrigger; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_10 = ___cs0; float L_11 = L_10.get_RIndexTrigger_5(); __this->set_RIndexTrigger_5(L_11); // LHandTrigger = cs.LHandTrigger; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_12 = ___cs0; float L_13 = L_12.get_LHandTrigger_6(); __this->set_LHandTrigger_6(L_13); // RHandTrigger = cs.RHandTrigger; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_14 = ___cs0; float L_15 = L_14.get_RHandTrigger_7(); __this->set_RHandTrigger_7(L_15); // LThumbstick = cs.LThumbstick; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_16 = ___cs0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_17 = L_16.get_LThumbstick_8(); __this->set_LThumbstick_8(L_17); // RThumbstick = cs.RThumbstick; ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 L_18 = ___cs0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_19 = L_18.get_RThumbstick_9(); __this->set_RThumbstick_9(L_19); // LTouchpad = new Vector2f() { x = 0.0f, y = 0.0f }; il2cpp_codegen_initobj((&V_0), sizeof(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 )); (&V_0)->set_x_0((0.0f)); (&V_0)->set_y_1((0.0f)); Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_20 = V_0; __this->set_LTouchpad_10(L_20); // RTouchpad = new Vector2f() { x = 0.0f, y = 0.0f }; il2cpp_codegen_initobj((&V_0), sizeof(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 )); (&V_0)->set_x_0((0.0f)); (&V_0)->set_y_1((0.0f)); Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_21 = V_0; __this->set_RTouchpad_11(L_21); // } return; } } IL2CPP_EXTERN_C void ControllerState2__ctor_m5655787B8789EC447DB216CA3CA406CAF899574A_AdjustorThunk (RuntimeObject * __this, ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 ___cs0, const RuntimeMethod* method) { int32_t _offset = 1; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C * _thisAdjusted = reinterpret_cast(__this + _offset); ControllerState2__ctor_m5655787B8789EC447DB216CA3CA406CAF899574A(_thisAdjusted, ___cs0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRPlugin/ControllerState4::.ctor(OVRPlugin/ControllerState2) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void ControllerState4__ctor_m99FE133E3BF2C62B323B0153F0D325941FD1CAC2 (ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * __this, ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C ___cs0, const RuntimeMethod* method) { { // ConnectedControllers = cs.ConnectedControllers; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_0 = ___cs0; uint32_t L_1 = L_0.get_ConnectedControllers_0(); __this->set_ConnectedControllers_0(L_1); // Buttons = cs.Buttons; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_2 = ___cs0; uint32_t L_3 = L_2.get_Buttons_1(); __this->set_Buttons_1(L_3); // Touches = cs.Touches; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_4 = ___cs0; uint32_t L_5 = L_4.get_Touches_2(); __this->set_Touches_2(L_5); // NearTouches = cs.NearTouches; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_6 = ___cs0; uint32_t L_7 = L_6.get_NearTouches_3(); __this->set_NearTouches_3(L_7); // LIndexTrigger = cs.LIndexTrigger; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_8 = ___cs0; float L_9 = L_8.get_LIndexTrigger_4(); __this->set_LIndexTrigger_4(L_9); // RIndexTrigger = cs.RIndexTrigger; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_10 = ___cs0; float L_11 = L_10.get_RIndexTrigger_5(); __this->set_RIndexTrigger_5(L_11); // LHandTrigger = cs.LHandTrigger; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_12 = ___cs0; float L_13 = L_12.get_LHandTrigger_6(); __this->set_LHandTrigger_6(L_13); // RHandTrigger = cs.RHandTrigger; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_14 = ___cs0; float L_15 = L_14.get_RHandTrigger_7(); __this->set_RHandTrigger_7(L_15); // LThumbstick = cs.LThumbstick; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_16 = ___cs0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_17 = L_16.get_LThumbstick_8(); __this->set_LThumbstick_8(L_17); // RThumbstick = cs.RThumbstick; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_18 = ___cs0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_19 = L_18.get_RThumbstick_9(); __this->set_RThumbstick_9(L_19); // LTouchpad = cs.LTouchpad; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_20 = ___cs0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_21 = L_20.get_LTouchpad_10(); __this->set_LTouchpad_10(L_21); // RTouchpad = cs.RTouchpad; ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C L_22 = ___cs0; Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 L_23 = L_22.get_RTouchpad_11(); __this->set_RTouchpad_11(L_23); // LBatteryPercentRemaining = 0; __this->set_LBatteryPercentRemaining_12((uint8_t)0); // RBatteryPercentRemaining = 0; __this->set_RBatteryPercentRemaining_13((uint8_t)0); // LRecenterCount = 0; __this->set_LRecenterCount_14((uint8_t)0); // RRecenterCount = 0; __this->set_RRecenterCount_15((uint8_t)0); // Reserved_27 = 0; __this->set_Reserved_27_16((uint8_t)0); // Reserved_26 = 0; __this->set_Reserved_26_17((uint8_t)0); // Reserved_25 = 0; __this->set_Reserved_25_18((uint8_t)0); // Reserved_24 = 0; __this->set_Reserved_24_19((uint8_t)0); // Reserved_23 = 0; __this->set_Reserved_23_20((uint8_t)0); // Reserved_22 = 0; __this->set_Reserved_22_21((uint8_t)0); // Reserved_21 = 0; __this->set_Reserved_21_22((uint8_t)0); // Reserved_20 = 0; __this->set_Reserved_20_23((uint8_t)0); // Reserved_19 = 0; __this->set_Reserved_19_24((uint8_t)0); // Reserved_18 = 0; __this->set_Reserved_18_25((uint8_t)0); // Reserved_17 = 0; __this->set_Reserved_17_26((uint8_t)0); // Reserved_16 = 0; __this->set_Reserved_16_27((uint8_t)0); // Reserved_15 = 0; __this->set_Reserved_15_28((uint8_t)0); // Reserved_14 = 0; __this->set_Reserved_14_29((uint8_t)0); // Reserved_13 = 0; __this->set_Reserved_13_30((uint8_t)0); // Reserved_12 = 0; __this->set_Reserved_12_31((uint8_t)0); // Reserved_11 = 0; __this->set_Reserved_11_32((uint8_t)0); // Reserved_10 = 0; __this->set_Reserved_10_33((uint8_t)0); // Reserved_09 = 0; __this->set_Reserved_09_34((uint8_t)0); // Reserved_08 = 0; __this->set_Reserved_08_35((uint8_t)0); // Reserved_07 = 0; __this->set_Reserved_07_36((uint8_t)0); // Reserved_06 = 0; __this->set_Reserved_06_37((uint8_t)0); // Reserved_05 = 0; __this->set_Reserved_05_38((uint8_t)0); // Reserved_04 = 0; __this->set_Reserved_04_39((uint8_t)0); // Reserved_03 = 0; __this->set_Reserved_03_40((uint8_t)0); // Reserved_02 = 0; __this->set_Reserved_02_41((uint8_t)0); // Reserved_01 = 0; __this->set_Reserved_01_42((uint8_t)0); // Reserved_00 = 0; __this->set_Reserved_00_43((uint8_t)0); // } return; } } IL2CPP_EXTERN_C void ControllerState4__ctor_m99FE133E3BF2C62B323B0153F0D325941FD1CAC2_AdjustorThunk (RuntimeObject * __this, ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C ___cs0, const RuntimeMethod* method) { int32_t _offset = 1; ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * _thisAdjusted = reinterpret_cast(__this + _offset); ControllerState4__ctor_m99FE133E3BF2C62B323B0153F0D325941FD1CAC2(_thisAdjusted, ___cs0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: OVRPlugin/EventDataBuffer IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke(const EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9& unmarshaled, EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke& marshaled) { marshaled.___EventType_0 = unmarshaled.get_EventType_0(); if (unmarshaled.get_EventData_1() != NULL) { if (4000 > (unmarshaled.get_EventData_1())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(4000); i++) { (marshaled.___EventData_1)[i] = (unmarshaled.get_EventData_1())->GetAtUnchecked(static_cast(i)); } } } IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke_back(const EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke& marshaled, EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_EventType_temp_0 = 0; unmarshaled_EventType_temp_0 = marshaled.___EventType_0; unmarshaled.set_EventType_0(unmarshaled_EventType_temp_0); unmarshaled.set_EventData_1(reinterpret_cast((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, 4000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(4000); i++) { (unmarshaled.get_EventData_1())->SetAtUnchecked(static_cast(i), (marshaled.___EventData_1)[i]); } } // Conversion method for clean up from marshalling of: OVRPlugin/EventDataBuffer IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke_cleanup(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/EventDataBuffer IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_com(const EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9& unmarshaled, EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_com& marshaled) { marshaled.___EventType_0 = unmarshaled.get_EventType_0(); if (unmarshaled.get_EventData_1() != NULL) { if (4000 > (unmarshaled.get_EventData_1())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(4000); i++) { (marshaled.___EventData_1)[i] = (unmarshaled.get_EventData_1())->GetAtUnchecked(static_cast(i)); } } } IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_com_back(const EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_com& marshaled, EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_EventType_temp_0 = 0; unmarshaled_EventType_temp_0 = marshaled.___EventType_0; unmarshaled.set_EventType_0(unmarshaled_EventType_temp_0); unmarshaled.set_EventData_1(reinterpret_cast((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, 4000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(4000); i++) { (unmarshaled.get_EventData_1())->SetAtUnchecked(static_cast(i), (marshaled.___EventData_1)[i]); } } // Conversion method for clean up from marshalling of: OVRPlugin/EventDataBuffer IL2CPP_EXTERN_C void EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_com_cleanup(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 // Conversion methods for marshalling of: OVRPlugin/GUID IL2CPP_EXTERN_C void GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshal_pinvoke(const GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC& unmarshaled, GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_pinvoke& marshaled) { marshaled.___a_0 = unmarshaled.get_a_0(); marshaled.___b_1 = unmarshaled.get_b_1(); marshaled.___c_2 = unmarshaled.get_c_2(); marshaled.___d0_3 = unmarshaled.get_d0_3(); marshaled.___d1_4 = unmarshaled.get_d1_4(); marshaled.___d2_5 = unmarshaled.get_d2_5(); marshaled.___d3_6 = unmarshaled.get_d3_6(); marshaled.___d4_7 = unmarshaled.get_d4_7(); marshaled.___d5_8 = unmarshaled.get_d5_8(); marshaled.___d6_9 = unmarshaled.get_d6_9(); marshaled.___d7_10 = unmarshaled.get_d7_10(); } IL2CPP_EXTERN_C void GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshal_pinvoke_back(const GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_pinvoke& marshaled, GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC& unmarshaled) { int32_t unmarshaled_a_temp_0 = 0; unmarshaled_a_temp_0 = marshaled.___a_0; unmarshaled.set_a_0(unmarshaled_a_temp_0); int16_t unmarshaled_b_temp_1 = 0; unmarshaled_b_temp_1 = marshaled.___b_1; unmarshaled.set_b_1(unmarshaled_b_temp_1); int16_t unmarshaled_c_temp_2 = 0; unmarshaled_c_temp_2 = marshaled.___c_2; unmarshaled.set_c_2(unmarshaled_c_temp_2); uint8_t unmarshaled_d0_temp_3 = 0x0; unmarshaled_d0_temp_3 = marshaled.___d0_3; unmarshaled.set_d0_3(unmarshaled_d0_temp_3); uint8_t unmarshaled_d1_temp_4 = 0x0; unmarshaled_d1_temp_4 = marshaled.___d1_4; unmarshaled.set_d1_4(unmarshaled_d1_temp_4); uint8_t unmarshaled_d2_temp_5 = 0x0; unmarshaled_d2_temp_5 = marshaled.___d2_5; unmarshaled.set_d2_5(unmarshaled_d2_temp_5); uint8_t unmarshaled_d3_temp_6 = 0x0; unmarshaled_d3_temp_6 = marshaled.___d3_6; unmarshaled.set_d3_6(unmarshaled_d3_temp_6); uint8_t unmarshaled_d4_temp_7 = 0x0; unmarshaled_d4_temp_7 = marshaled.___d4_7; unmarshaled.set_d4_7(unmarshaled_d4_temp_7); uint8_t unmarshaled_d5_temp_8 = 0x0; unmarshaled_d5_temp_8 = marshaled.___d5_8; unmarshaled.set_d5_8(unmarshaled_d5_temp_8); uint8_t unmarshaled_d6_temp_9 = 0x0; unmarshaled_d6_temp_9 = marshaled.___d6_9; unmarshaled.set_d6_9(unmarshaled_d6_temp_9); uint8_t unmarshaled_d7_temp_10 = 0x0; unmarshaled_d7_temp_10 = marshaled.___d7_10; unmarshaled.set_d7_10(unmarshaled_d7_temp_10); } // Conversion method for clean up from marshalling of: OVRPlugin/GUID IL2CPP_EXTERN_C void GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshal_pinvoke_cleanup(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/GUID IL2CPP_EXTERN_C void GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshal_com(const GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC& unmarshaled, GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_com& marshaled) { marshaled.___a_0 = unmarshaled.get_a_0(); marshaled.___b_1 = unmarshaled.get_b_1(); marshaled.___c_2 = unmarshaled.get_c_2(); marshaled.___d0_3 = unmarshaled.get_d0_3(); marshaled.___d1_4 = unmarshaled.get_d1_4(); marshaled.___d2_5 = unmarshaled.get_d2_5(); marshaled.___d3_6 = unmarshaled.get_d3_6(); marshaled.___d4_7 = unmarshaled.get_d4_7(); marshaled.___d5_8 = unmarshaled.get_d5_8(); marshaled.___d6_9 = unmarshaled.get_d6_9(); marshaled.___d7_10 = unmarshaled.get_d7_10(); } IL2CPP_EXTERN_C void GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshal_com_back(const GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_com& marshaled, GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC& unmarshaled) { int32_t unmarshaled_a_temp_0 = 0; unmarshaled_a_temp_0 = marshaled.___a_0; unmarshaled.set_a_0(unmarshaled_a_temp_0); int16_t unmarshaled_b_temp_1 = 0; unmarshaled_b_temp_1 = marshaled.___b_1; unmarshaled.set_b_1(unmarshaled_b_temp_1); int16_t unmarshaled_c_temp_2 = 0; unmarshaled_c_temp_2 = marshaled.___c_2; unmarshaled.set_c_2(unmarshaled_c_temp_2); uint8_t unmarshaled_d0_temp_3 = 0x0; unmarshaled_d0_temp_3 = marshaled.___d0_3; unmarshaled.set_d0_3(unmarshaled_d0_temp_3); uint8_t unmarshaled_d1_temp_4 = 0x0; unmarshaled_d1_temp_4 = marshaled.___d1_4; unmarshaled.set_d1_4(unmarshaled_d1_temp_4); uint8_t unmarshaled_d2_temp_5 = 0x0; unmarshaled_d2_temp_5 = marshaled.___d2_5; unmarshaled.set_d2_5(unmarshaled_d2_temp_5); uint8_t unmarshaled_d3_temp_6 = 0x0; unmarshaled_d3_temp_6 = marshaled.___d3_6; unmarshaled.set_d3_6(unmarshaled_d3_temp_6); uint8_t unmarshaled_d4_temp_7 = 0x0; unmarshaled_d4_temp_7 = marshaled.___d4_7; unmarshaled.set_d4_7(unmarshaled_d4_temp_7); uint8_t unmarshaled_d5_temp_8 = 0x0; unmarshaled_d5_temp_8 = marshaled.___d5_8; unmarshaled.set_d5_8(unmarshaled_d5_temp_8); uint8_t unmarshaled_d6_temp_9 = 0x0; unmarshaled_d6_temp_9 = marshaled.___d6_9; unmarshaled.set_d6_9(unmarshaled_d6_temp_9); uint8_t unmarshaled_d7_temp_10 = 0x0; unmarshaled_d7_temp_10 = marshaled.___d7_10; unmarshaled.set_d7_10(unmarshaled_d7_temp_10); } // Conversion method for clean up from marshalling of: OVRPlugin/GUID IL2CPP_EXTERN_C void GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshal_com_cleanup(GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC_marshaled_com& marshaled) { } // System.Void OVRPlugin/GUID::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void GUID__ctor_mED9906CAE201FE673BAABB1323928FBC4C5759A2 (GUID_tA04E8DA38237C3CE6248D4DC918C7F546FD2ACFC * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: OVRPlugin/HandState IL2CPP_EXTERN_C void HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshal_pinvoke(const HandState_t5377A12318B95003B2BB256777077FE3D05D0090& unmarshaled, HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_pinvoke& marshaled) { marshaled.___Status_0 = unmarshaled.get_Status_0(); marshaled.___RootPose_1 = unmarshaled.get_RootPose_1(); if (unmarshaled.get_BoneRotations_2() != NULL) { il2cpp_array_size_t _unmarshaled_BoneRotations_Length = (unmarshaled.get_BoneRotations_2())->max_length; marshaled.___BoneRotations_2 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_BoneRotations_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_BoneRotations_Length); i++) { (marshaled.___BoneRotations_2)[i] = (unmarshaled.get_BoneRotations_2())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___BoneRotations_2 = NULL; } marshaled.___Pinches_3 = unmarshaled.get_Pinches_3(); marshaled.___PinchStrength_4 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_R4, unmarshaled.get_PinchStrength_4()); marshaled.___PointerPose_5 = unmarshaled.get_PointerPose_5(); marshaled.___HandScale_6 = unmarshaled.get_HandScale_6(); marshaled.___HandConfidence_7 = unmarshaled.get_HandConfidence_7(); if (unmarshaled.get_FingerConfidences_8() != NULL) { il2cpp_array_size_t _unmarshaled_FingerConfidences_Length = (unmarshaled.get_FingerConfidences_8())->max_length; marshaled.___FingerConfidences_8 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_FingerConfidences_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_FingerConfidences_Length); i++) { (marshaled.___FingerConfidences_8)[i] = (unmarshaled.get_FingerConfidences_8())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___FingerConfidences_8 = NULL; } marshaled.___RequestedTimeStamp_9 = unmarshaled.get_RequestedTimeStamp_9(); marshaled.___SampleTimeStamp_10 = unmarshaled.get_SampleTimeStamp_10(); } IL2CPP_EXTERN_C void HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshal_pinvoke_back(const HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_pinvoke& marshaled, HandState_t5377A12318B95003B2BB256777077FE3D05D0090& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Status_temp_0 = 0; unmarshaled_Status_temp_0 = marshaled.___Status_0; unmarshaled.set_Status_0(unmarshaled_Status_temp_0); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_RootPose_temp_1; memset((&unmarshaled_RootPose_temp_1), 0, sizeof(unmarshaled_RootPose_temp_1)); unmarshaled_RootPose_temp_1 = marshaled.___RootPose_1; unmarshaled.set_RootPose_1(unmarshaled_RootPose_temp_1); if (marshaled.___BoneRotations_2 != NULL) { if (unmarshaled.get_BoneRotations_2() == NULL) { unmarshaled.set_BoneRotations_2(reinterpret_cast((QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5*)SZArrayNew(QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_BoneRotations_2())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_BoneRotations_2())->SetAtUnchecked(static_cast(i), (marshaled.___BoneRotations_2)[i]); } } int32_t unmarshaled_Pinches_temp_3 = 0; unmarshaled_Pinches_temp_3 = marshaled.___Pinches_3; unmarshaled.set_Pinches_3(unmarshaled_Pinches_temp_3); unmarshaled.set_PinchStrength_4((SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_R4, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, marshaled.___PinchStrength_4)); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_PointerPose_temp_5; memset((&unmarshaled_PointerPose_temp_5), 0, sizeof(unmarshaled_PointerPose_temp_5)); unmarshaled_PointerPose_temp_5 = marshaled.___PointerPose_5; unmarshaled.set_PointerPose_5(unmarshaled_PointerPose_temp_5); float unmarshaled_HandScale_temp_6 = 0.0f; unmarshaled_HandScale_temp_6 = marshaled.___HandScale_6; unmarshaled.set_HandScale_6(unmarshaled_HandScale_temp_6); int32_t unmarshaled_HandConfidence_temp_7 = 0; unmarshaled_HandConfidence_temp_7 = marshaled.___HandConfidence_7; unmarshaled.set_HandConfidence_7(unmarshaled_HandConfidence_temp_7); if (marshaled.___FingerConfidences_8 != NULL) { if (unmarshaled.get_FingerConfidences_8() == NULL) { unmarshaled.set_FingerConfidences_8(reinterpret_cast((TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322*)SZArrayNew(TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_FingerConfidences_8())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_FingerConfidences_8())->SetAtUnchecked(static_cast(i), (marshaled.___FingerConfidences_8)[i]); } } double unmarshaled_RequestedTimeStamp_temp_9 = 0.0; unmarshaled_RequestedTimeStamp_temp_9 = marshaled.___RequestedTimeStamp_9; unmarshaled.set_RequestedTimeStamp_9(unmarshaled_RequestedTimeStamp_temp_9); double unmarshaled_SampleTimeStamp_temp_10 = 0.0; unmarshaled_SampleTimeStamp_temp_10 = marshaled.___SampleTimeStamp_10; unmarshaled.set_SampleTimeStamp_10(unmarshaled_SampleTimeStamp_temp_10); } // Conversion method for clean up from marshalling of: OVRPlugin/HandState IL2CPP_EXTERN_C void HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshal_pinvoke_cleanup(HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_pinvoke& marshaled) { if (marshaled.___BoneRotations_2 != NULL) { il2cpp_codegen_marshal_free(marshaled.___BoneRotations_2); marshaled.___BoneRotations_2 = NULL; } il2cpp_codegen_com_destroy_safe_array(marshaled.___PinchStrength_4); marshaled.___PinchStrength_4 = NULL; if (marshaled.___FingerConfidences_8 != NULL) { il2cpp_codegen_marshal_free(marshaled.___FingerConfidences_8); marshaled.___FingerConfidences_8 = NULL; } } // Conversion methods for marshalling of: OVRPlugin/HandState IL2CPP_EXTERN_C void HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshal_com(const HandState_t5377A12318B95003B2BB256777077FE3D05D0090& unmarshaled, HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_com& marshaled) { marshaled.___Status_0 = unmarshaled.get_Status_0(); marshaled.___RootPose_1 = unmarshaled.get_RootPose_1(); if (unmarshaled.get_BoneRotations_2() != NULL) { il2cpp_array_size_t _unmarshaled_BoneRotations_Length = (unmarshaled.get_BoneRotations_2())->max_length; marshaled.___BoneRotations_2 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_BoneRotations_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_BoneRotations_Length); i++) { (marshaled.___BoneRotations_2)[i] = (unmarshaled.get_BoneRotations_2())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___BoneRotations_2 = NULL; } marshaled.___Pinches_3 = unmarshaled.get_Pinches_3(); marshaled.___PinchStrength_4 = il2cpp_codegen_com_marshal_safe_array(IL2CPP_VT_R4, unmarshaled.get_PinchStrength_4()); marshaled.___PointerPose_5 = unmarshaled.get_PointerPose_5(); marshaled.___HandScale_6 = unmarshaled.get_HandScale_6(); marshaled.___HandConfidence_7 = unmarshaled.get_HandConfidence_7(); if (unmarshaled.get_FingerConfidences_8() != NULL) { il2cpp_array_size_t _unmarshaled_FingerConfidences_Length = (unmarshaled.get_FingerConfidences_8())->max_length; marshaled.___FingerConfidences_8 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_FingerConfidences_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_FingerConfidences_Length); i++) { (marshaled.___FingerConfidences_8)[i] = (unmarshaled.get_FingerConfidences_8())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___FingerConfidences_8 = NULL; } marshaled.___RequestedTimeStamp_9 = unmarshaled.get_RequestedTimeStamp_9(); marshaled.___SampleTimeStamp_10 = unmarshaled.get_SampleTimeStamp_10(); } IL2CPP_EXTERN_C void HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshal_com_back(const HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_com& marshaled, HandState_t5377A12318B95003B2BB256777077FE3D05D0090& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Status_temp_0 = 0; unmarshaled_Status_temp_0 = marshaled.___Status_0; unmarshaled.set_Status_0(unmarshaled_Status_temp_0); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_RootPose_temp_1; memset((&unmarshaled_RootPose_temp_1), 0, sizeof(unmarshaled_RootPose_temp_1)); unmarshaled_RootPose_temp_1 = marshaled.___RootPose_1; unmarshaled.set_RootPose_1(unmarshaled_RootPose_temp_1); if (marshaled.___BoneRotations_2 != NULL) { if (unmarshaled.get_BoneRotations_2() == NULL) { unmarshaled.set_BoneRotations_2(reinterpret_cast((QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5*)SZArrayNew(QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_BoneRotations_2())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_BoneRotations_2())->SetAtUnchecked(static_cast(i), (marshaled.___BoneRotations_2)[i]); } } int32_t unmarshaled_Pinches_temp_3 = 0; unmarshaled_Pinches_temp_3 = marshaled.___Pinches_3; unmarshaled.set_Pinches_3(unmarshaled_Pinches_temp_3); unmarshaled.set_PinchStrength_4((SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA*)il2cpp_codegen_com_marshal_safe_array_result(IL2CPP_VT_R4, Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, marshaled.___PinchStrength_4)); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_PointerPose_temp_5; memset((&unmarshaled_PointerPose_temp_5), 0, sizeof(unmarshaled_PointerPose_temp_5)); unmarshaled_PointerPose_temp_5 = marshaled.___PointerPose_5; unmarshaled.set_PointerPose_5(unmarshaled_PointerPose_temp_5); float unmarshaled_HandScale_temp_6 = 0.0f; unmarshaled_HandScale_temp_6 = marshaled.___HandScale_6; unmarshaled.set_HandScale_6(unmarshaled_HandScale_temp_6); int32_t unmarshaled_HandConfidence_temp_7 = 0; unmarshaled_HandConfidence_temp_7 = marshaled.___HandConfidence_7; unmarshaled.set_HandConfidence_7(unmarshaled_HandConfidence_temp_7); if (marshaled.___FingerConfidences_8 != NULL) { if (unmarshaled.get_FingerConfidences_8() == NULL) { unmarshaled.set_FingerConfidences_8(reinterpret_cast((TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322*)SZArrayNew(TrackingConfidenceU5BU5D_t568C8F700A41BD4F365DD5A0155BEB20A3289322_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_FingerConfidences_8())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_FingerConfidences_8())->SetAtUnchecked(static_cast(i), (marshaled.___FingerConfidences_8)[i]); } } double unmarshaled_RequestedTimeStamp_temp_9 = 0.0; unmarshaled_RequestedTimeStamp_temp_9 = marshaled.___RequestedTimeStamp_9; unmarshaled.set_RequestedTimeStamp_9(unmarshaled_RequestedTimeStamp_temp_9); double unmarshaled_SampleTimeStamp_temp_10 = 0.0; unmarshaled_SampleTimeStamp_temp_10 = marshaled.___SampleTimeStamp_10; unmarshaled.set_SampleTimeStamp_10(unmarshaled_SampleTimeStamp_temp_10); } // Conversion method for clean up from marshalling of: OVRPlugin/HandState IL2CPP_EXTERN_C void HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshal_com_cleanup(HandState_t5377A12318B95003B2BB256777077FE3D05D0090_marshaled_com& marshaled) { if (marshaled.___BoneRotations_2 != NULL) { il2cpp_codegen_marshal_free(marshaled.___BoneRotations_2); marshaled.___BoneRotations_2 = NULL; } il2cpp_codegen_com_destroy_safe_array(marshaled.___PinchStrength_4); marshaled.___PinchStrength_4 = NULL; if (marshaled.___FingerConfidences_8 != NULL) { il2cpp_codegen_marshal_free(marshaled.___FingerConfidences_8); marshaled.___FingerConfidences_8 = NULL; } } #ifdef __clang__ #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 // Conversion methods for marshalling of: OVRPlugin/KeyboardDescription IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke(const KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E& unmarshaled, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke& marshaled) { if (unmarshaled.get_Name_0() != NULL) { if (128 > (unmarshaled.get_Name_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(128); i++) { (marshaled.___Name_0)[i] = (unmarshaled.get_Name_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___TrackedKeyboardId_1 = unmarshaled.get_TrackedKeyboardId_1(); marshaled.___Dimensions_2 = unmarshaled.get_Dimensions_2(); marshaled.___KeyboardFlags_3 = unmarshaled.get_KeyboardFlags_3(); marshaled.___SupportedPresentationStyles_4 = unmarshaled.get_SupportedPresentationStyles_4(); } IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke_back(const KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke& marshaled, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_Name_0(reinterpret_cast((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, 128))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(128); i++) { (unmarshaled.get_Name_0())->SetAtUnchecked(static_cast(i), (marshaled.___Name_0)[i]); } uint64_t unmarshaled_TrackedKeyboardId_temp_1 = 0; unmarshaled_TrackedKeyboardId_temp_1 = marshaled.___TrackedKeyboardId_1; unmarshaled.set_TrackedKeyboardId_1(unmarshaled_TrackedKeyboardId_temp_1); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 unmarshaled_Dimensions_temp_2; memset((&unmarshaled_Dimensions_temp_2), 0, sizeof(unmarshaled_Dimensions_temp_2)); unmarshaled_Dimensions_temp_2 = marshaled.___Dimensions_2; unmarshaled.set_Dimensions_2(unmarshaled_Dimensions_temp_2); int32_t unmarshaled_KeyboardFlags_temp_3 = 0; unmarshaled_KeyboardFlags_temp_3 = marshaled.___KeyboardFlags_3; unmarshaled.set_KeyboardFlags_3(unmarshaled_KeyboardFlags_temp_3); int32_t unmarshaled_SupportedPresentationStyles_temp_4 = 0; unmarshaled_SupportedPresentationStyles_temp_4 = marshaled.___SupportedPresentationStyles_4; unmarshaled.set_SupportedPresentationStyles_4(unmarshaled_SupportedPresentationStyles_temp_4); } // Conversion method for clean up from marshalling of: OVRPlugin/KeyboardDescription IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke_cleanup(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/KeyboardDescription IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_com(const KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E& unmarshaled, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_com& marshaled) { if (unmarshaled.get_Name_0() != NULL) { if (128 > (unmarshaled.get_Name_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(128); i++) { (marshaled.___Name_0)[i] = (unmarshaled.get_Name_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___TrackedKeyboardId_1 = unmarshaled.get_TrackedKeyboardId_1(); marshaled.___Dimensions_2 = unmarshaled.get_Dimensions_2(); marshaled.___KeyboardFlags_3 = unmarshaled.get_KeyboardFlags_3(); marshaled.___SupportedPresentationStyles_4 = unmarshaled.get_SupportedPresentationStyles_4(); } IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_com_back(const KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_com& marshaled, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_Name_0(reinterpret_cast((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, 128))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(128); i++) { (unmarshaled.get_Name_0())->SetAtUnchecked(static_cast(i), (marshaled.___Name_0)[i]); } uint64_t unmarshaled_TrackedKeyboardId_temp_1 = 0; unmarshaled_TrackedKeyboardId_temp_1 = marshaled.___TrackedKeyboardId_1; unmarshaled.set_TrackedKeyboardId_1(unmarshaled_TrackedKeyboardId_temp_1); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 unmarshaled_Dimensions_temp_2; memset((&unmarshaled_Dimensions_temp_2), 0, sizeof(unmarshaled_Dimensions_temp_2)); unmarshaled_Dimensions_temp_2 = marshaled.___Dimensions_2; unmarshaled.set_Dimensions_2(unmarshaled_Dimensions_temp_2); int32_t unmarshaled_KeyboardFlags_temp_3 = 0; unmarshaled_KeyboardFlags_temp_3 = marshaled.___KeyboardFlags_3; unmarshaled.set_KeyboardFlags_3(unmarshaled_KeyboardFlags_temp_3); int32_t unmarshaled_SupportedPresentationStyles_temp_4 = 0; unmarshaled_SupportedPresentationStyles_temp_4 = marshaled.___SupportedPresentationStyles_4; unmarshaled.set_SupportedPresentationStyles_4(unmarshaled_SupportedPresentationStyles_temp_4); } // Conversion method for clean up from marshalling of: OVRPlugin/KeyboardDescription IL2CPP_EXTERN_C void KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_com_cleanup(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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.IntPtr OVRPlugin/Ktx::LoadKtxFromMemory(System.IntPtr,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t Ktx_LoadKtxFromMemory_m3F676349E0FC73088E96866FAB983F770D29151C (intptr_t ___dataPtr0, uint32_t ___length1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862); s_Il2CppMethodInitialized = true; } intptr_t V_0; memset((&V_0), 0, sizeof(V_0)); { // if (nativeXrApi != XrApi.OpenXR) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0018; } } { // Debug.LogWarning("KTX features are only supported in OpenXR."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862, /*hidden argument*/NULL); // return IntPtr.Zero; return (intptr_t)(0); } IL_0018: { // if (version >= OVRP_1_65_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1; L_1 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2 = ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_3; L_3 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_003c; } } { // IntPtr texture = IntPtr.Zero; V_0 = (intptr_t)(0); // OVRP_1_65_0.ovrp_KtxLoadFromMemory(ref dataPtr, length, ref texture); uint32_t L_4 = ___length1; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); int32_t L_5; L_5 = OVRP_1_65_0_ovrp_KtxLoadFromMemory_mB1CB3239B3490B29B49F5DFBCAE3B6EDAF046020((intptr_t*)(&___dataPtr0), L_4, (intptr_t*)(&V_0), /*hidden argument*/NULL); // return texture; intptr_t L_6 = V_0; return (intptr_t)L_6; } IL_003c: { // return IntPtr.Zero; return (intptr_t)(0); } } // System.UInt32 OVRPlugin/Ktx::GetKtxTextureWidth(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Ktx_GetKtxTextureWidth_m1BFAAA68506D4EAAE1C7C4E9F38844DCF0A9E73A (intptr_t ___texture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; { // if (nativeXrApi != XrApi.OpenXR) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0014; } } { // Debug.LogWarning("KTX features are only supported in OpenXR."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862, /*hidden argument*/NULL); // return 0; return 0; } IL_0014: { // if (version >= OVRP_1_65_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1; L_1 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2 = ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_3; L_3 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0032; } } { // uint width = 0; V_0 = 0; // OVRP_1_65_0.ovrp_KtxTextureWidth(texture, ref width); intptr_t L_4 = ___texture0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); int32_t L_5; L_5 = OVRP_1_65_0_ovrp_KtxTextureWidth_m13EF0309AEB0EBFE244E91885BE28FF1B5E9223A((intptr_t)L_4, (uint32_t*)(&V_0), /*hidden argument*/NULL); // return width; uint32_t L_6 = V_0; return L_6; } IL_0032: { // return 0; return 0; } } // System.UInt32 OVRPlugin/Ktx::GetKtxTextureHeight(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Ktx_GetKtxTextureHeight_m68647CAE8F3239293230FA3601AB5A92256AADEB (intptr_t ___texture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; { // if (nativeXrApi != XrApi.OpenXR) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0014; } } { // Debug.LogWarning("KTX features are only supported in OpenXR."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862, /*hidden argument*/NULL); // return 0; return 0; } IL_0014: { // if (version >= OVRP_1_65_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1; L_1 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2 = ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_3; L_3 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0032; } } { // uint height = 0; V_0 = 0; // OVRP_1_65_0.ovrp_KtxTextureHeight(texture, ref height); intptr_t L_4 = ___texture0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); int32_t L_5; L_5 = OVRP_1_65_0_ovrp_KtxTextureHeight_m55A19AB9F85E5735DF54E78A93CDAF02D662D095((intptr_t)L_4, (uint32_t*)(&V_0), /*hidden argument*/NULL); // return height; uint32_t L_6 = V_0; return L_6; } IL_0032: { // return 0; return 0; } } // System.Boolean OVRPlugin/Ktx::TranscodeKtxTexture(System.IntPtr,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ktx_TranscodeKtxTexture_mEFA45F6C9B17A4513EAB253C98D459DFD0696FC3 (intptr_t ___texture0, uint32_t ___format1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862); s_Il2CppMethodInitialized = true; } { // if (nativeXrApi != XrApi.OpenXR) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0014; } } { // Debug.LogWarning("KTX features are only supported in OpenXR."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862, /*hidden argument*/NULL); // return false; return (bool)0; } IL_0014: { // if (version >= OVRP_1_65_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1; L_1 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2 = ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_3; L_3 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0030; } } { // return OVRP_1_65_0.ovrp_KtxTranscode(texture, format) == Result.Success; intptr_t L_4 = ___texture0; uint32_t L_5 = ___format1; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); int32_t L_6; L_6 = OVRP_1_65_0_ovrp_KtxTranscode_m299E6DA0BD38D2CA76BCEFCDC721518679364569((intptr_t)L_4, L_5, /*hidden argument*/NULL); return (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0); } IL_0030: { // return false; return (bool)0; } } // System.UInt32 OVRPlugin/Ktx::GetKtxTextureSize(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR uint32_t Ktx_GetKtxTextureSize_m6704434D9B60D8C9FE1176C61DB89FEB9B680F2E (intptr_t ___texture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862); s_Il2CppMethodInitialized = true; } uint32_t V_0 = 0; { // if (nativeXrApi != XrApi.OpenXR) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0014; } } { // Debug.LogWarning("KTX features are only supported in OpenXR."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862, /*hidden argument*/NULL); // return 0; return 0; } IL_0014: { // if (version >= OVRP_1_65_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1; L_1 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2 = ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_3; L_3 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0032; } } { // uint size = 0; V_0 = 0; // OVRP_1_65_0.ovrp_KtxTextureSize(texture, ref size); intptr_t L_4 = ___texture0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); int32_t L_5; L_5 = OVRP_1_65_0_ovrp_KtxTextureSize_mD7DAE763F450AA4CC9A790FF5C9B739B1E1D3F3D((intptr_t)L_4, (uint32_t*)(&V_0), /*hidden argument*/NULL); // return size; uint32_t L_6 = V_0; return L_6; } IL_0032: { // return 0; return 0; } } // System.Boolean OVRPlugin/Ktx::GetKtxTextureData(System.IntPtr,System.IntPtr,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ktx_GetKtxTextureData_mCA6D37CE33CF95076B8858DF690A4A530C54F7BB (intptr_t ___texture0, intptr_t ___textureData1, uint32_t ___bufferSize2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862); s_Il2CppMethodInitialized = true; } { // if (nativeXrApi != XrApi.OpenXR) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0014; } } { // Debug.LogWarning("KTX features are only supported in OpenXR."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862, /*hidden argument*/NULL); // return false; return (bool)0; } IL_0014: { // if (version >= OVRP_1_65_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1; L_1 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2 = ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_3; L_3 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_0031; } } { // return OVRP_1_65_0.ovrp_KtxGetTextureData(texture, textureData, bufferSize) == Result.Success; intptr_t L_4 = ___texture0; intptr_t L_5 = ___textureData1; uint32_t L_6 = ___bufferSize2; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); int32_t L_7; L_7 = OVRP_1_65_0_ovrp_KtxGetTextureData_mEA0666E8325E83A27AA7C92BAE58F7C5C264F24F((intptr_t)L_4, (intptr_t)L_5, L_6, /*hidden argument*/NULL); return (bool)((((int32_t)L_7) == ((int32_t)0))? 1 : 0); } IL_0031: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Ktx::DestroyKtxTexture(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Ktx_DestroyKtxTexture_mD3D84E691E94C1914AA0234BBA54EACA5132A5C5 (intptr_t ___texture0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862); s_Il2CppMethodInitialized = true; } { // if (nativeXrApi != XrApi.OpenXR) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); int32_t L_0; L_0 = OVRPlugin_get_nativeXrApi_m66F68B6CF24200B64ABDBBD21B0273DEC11F8218(/*hidden argument*/NULL); if ((((int32_t)L_0) == ((int32_t)3))) { goto IL_0014; } } { // Debug.LogWarning("KTX features are only supported in OpenXR."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral6ABF5DA6C52D3E12C46A86635D34472F275C1862, /*hidden argument*/NULL); // return false; return (bool)0; } IL_0014: { // if (version >= OVRP_1_65_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1; L_1 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2 = ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_3; L_3 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_1, L_2, /*hidden argument*/NULL); if (!L_3) { goto IL_002f; } } { // return OVRP_1_65_0.ovrp_KtxDestroy(texture) == Result.Success; intptr_t L_4 = ___texture0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); int32_t L_5; L_5 = OVRP_1_65_0_ovrp_KtxDestroy_m33AF3613A45A5D5812E76B3ADD0A14B7FB6C1941((intptr_t)L_4, /*hidden argument*/NULL); return (bool)((((int32_t)L_5) == ((int32_t)0))? 1 : 0); } IL_002f: { // return false; return (bool)0; } } // System.Void OVRPlugin/Ktx::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Ktx__ctor_mDEFBDA1F68F7FFE90AD40FD18BA1665D673BD291 (Ktx_t669F38C48356BFC8873F62B3B883E225D964410B * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: OVRPlugin/LayerDesc IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke(const LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780& unmarshaled, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke& marshaled) { marshaled.___Shape_0 = unmarshaled.get_Shape_0(); marshaled.___Layout_1 = unmarshaled.get_Layout_1(); marshaled.___TextureSize_2 = unmarshaled.get_TextureSize_2(); marshaled.___MipLevels_3 = unmarshaled.get_MipLevels_3(); marshaled.___SampleCount_4 = unmarshaled.get_SampleCount_4(); marshaled.___Format_5 = unmarshaled.get_Format_5(); marshaled.___LayerFlags_6 = unmarshaled.get_LayerFlags_6(); if (unmarshaled.get_Fov_7() != NULL) { if (2 > (unmarshaled.get_Fov_7())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (marshaled.___Fov_7)[i] = (unmarshaled.get_Fov_7())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_VisibleRect_8() != NULL) { if (2 > (unmarshaled.get_VisibleRect_8())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (marshaled.___VisibleRect_8)[i] = (unmarshaled.get_VisibleRect_8())->GetAtUnchecked(static_cast(i)); } } marshaled.___MaxViewportSize_9 = unmarshaled.get_MaxViewportSize_9(); marshaled.___DepthFormat_10 = unmarshaled.get_DepthFormat_10(); marshaled.___MotionVectorFormat_11 = unmarshaled.get_MotionVectorFormat_11(); marshaled.___MotionVectorDepthFormat_12 = unmarshaled.get_MotionVectorDepthFormat_12(); marshaled.___MotionVectorTextureSize_13 = unmarshaled.get_MotionVectorTextureSize_13(); } IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_back(const LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke& marshaled, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Shape_temp_0 = 0; unmarshaled_Shape_temp_0 = marshaled.___Shape_0; unmarshaled.set_Shape_0(unmarshaled_Shape_temp_0); int32_t unmarshaled_Layout_temp_1 = 0; unmarshaled_Layout_temp_1 = marshaled.___Layout_1; unmarshaled.set_Layout_1(unmarshaled_Layout_temp_1); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 unmarshaled_TextureSize_temp_2; memset((&unmarshaled_TextureSize_temp_2), 0, sizeof(unmarshaled_TextureSize_temp_2)); unmarshaled_TextureSize_temp_2 = marshaled.___TextureSize_2; unmarshaled.set_TextureSize_2(unmarshaled_TextureSize_temp_2); int32_t unmarshaled_MipLevels_temp_3 = 0; unmarshaled_MipLevels_temp_3 = marshaled.___MipLevels_3; unmarshaled.set_MipLevels_3(unmarshaled_MipLevels_temp_3); int32_t unmarshaled_SampleCount_temp_4 = 0; unmarshaled_SampleCount_temp_4 = marshaled.___SampleCount_4; unmarshaled.set_SampleCount_4(unmarshaled_SampleCount_temp_4); int32_t unmarshaled_Format_temp_5 = 0; unmarshaled_Format_temp_5 = marshaled.___Format_5; unmarshaled.set_Format_5(unmarshaled_Format_temp_5); int32_t unmarshaled_LayerFlags_temp_6 = 0; unmarshaled_LayerFlags_temp_6 = marshaled.___LayerFlags_6; unmarshaled.set_LayerFlags_6(unmarshaled_LayerFlags_temp_6); unmarshaled.set_Fov_7(reinterpret_cast((FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D*)SZArrayNew(FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D_il2cpp_TypeInfo_var, 2))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (unmarshaled.get_Fov_7())->SetAtUnchecked(static_cast(i), (marshaled.___Fov_7)[i]); } unmarshaled.set_VisibleRect_8(reinterpret_cast((RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F*)SZArrayNew(RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F_il2cpp_TypeInfo_var, 2))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (unmarshaled.get_VisibleRect_8())->SetAtUnchecked(static_cast(i), (marshaled.___VisibleRect_8)[i]); } Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 unmarshaled_MaxViewportSize_temp_9; memset((&unmarshaled_MaxViewportSize_temp_9), 0, sizeof(unmarshaled_MaxViewportSize_temp_9)); unmarshaled_MaxViewportSize_temp_9 = marshaled.___MaxViewportSize_9; unmarshaled.set_MaxViewportSize_9(unmarshaled_MaxViewportSize_temp_9); int32_t unmarshaled_DepthFormat_temp_10 = 0; unmarshaled_DepthFormat_temp_10 = marshaled.___DepthFormat_10; unmarshaled.set_DepthFormat_10(unmarshaled_DepthFormat_temp_10); int32_t unmarshaled_MotionVectorFormat_temp_11 = 0; unmarshaled_MotionVectorFormat_temp_11 = marshaled.___MotionVectorFormat_11; unmarshaled.set_MotionVectorFormat_11(unmarshaled_MotionVectorFormat_temp_11); int32_t unmarshaled_MotionVectorDepthFormat_temp_12 = 0; unmarshaled_MotionVectorDepthFormat_temp_12 = marshaled.___MotionVectorDepthFormat_12; unmarshaled.set_MotionVectorDepthFormat_12(unmarshaled_MotionVectorDepthFormat_temp_12); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 unmarshaled_MotionVectorTextureSize_temp_13; memset((&unmarshaled_MotionVectorTextureSize_temp_13), 0, sizeof(unmarshaled_MotionVectorTextureSize_temp_13)); unmarshaled_MotionVectorTextureSize_temp_13 = marshaled.___MotionVectorTextureSize_13; unmarshaled.set_MotionVectorTextureSize_13(unmarshaled_MotionVectorTextureSize_temp_13); } // Conversion method for clean up from marshalling of: OVRPlugin/LayerDesc IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_cleanup(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/LayerDesc IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_com(const LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780& unmarshaled, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_com& marshaled) { marshaled.___Shape_0 = unmarshaled.get_Shape_0(); marshaled.___Layout_1 = unmarshaled.get_Layout_1(); marshaled.___TextureSize_2 = unmarshaled.get_TextureSize_2(); marshaled.___MipLevels_3 = unmarshaled.get_MipLevels_3(); marshaled.___SampleCount_4 = unmarshaled.get_SampleCount_4(); marshaled.___Format_5 = unmarshaled.get_Format_5(); marshaled.___LayerFlags_6 = unmarshaled.get_LayerFlags_6(); if (unmarshaled.get_Fov_7() != NULL) { if (2 > (unmarshaled.get_Fov_7())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (marshaled.___Fov_7)[i] = (unmarshaled.get_Fov_7())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_VisibleRect_8() != NULL) { if (2 > (unmarshaled.get_VisibleRect_8())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (marshaled.___VisibleRect_8)[i] = (unmarshaled.get_VisibleRect_8())->GetAtUnchecked(static_cast(i)); } } marshaled.___MaxViewportSize_9 = unmarshaled.get_MaxViewportSize_9(); marshaled.___DepthFormat_10 = unmarshaled.get_DepthFormat_10(); marshaled.___MotionVectorFormat_11 = unmarshaled.get_MotionVectorFormat_11(); marshaled.___MotionVectorDepthFormat_12 = unmarshaled.get_MotionVectorDepthFormat_12(); marshaled.___MotionVectorTextureSize_13 = unmarshaled.get_MotionVectorTextureSize_13(); } IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_com_back(const LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_com& marshaled, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Shape_temp_0 = 0; unmarshaled_Shape_temp_0 = marshaled.___Shape_0; unmarshaled.set_Shape_0(unmarshaled_Shape_temp_0); int32_t unmarshaled_Layout_temp_1 = 0; unmarshaled_Layout_temp_1 = marshaled.___Layout_1; unmarshaled.set_Layout_1(unmarshaled_Layout_temp_1); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 unmarshaled_TextureSize_temp_2; memset((&unmarshaled_TextureSize_temp_2), 0, sizeof(unmarshaled_TextureSize_temp_2)); unmarshaled_TextureSize_temp_2 = marshaled.___TextureSize_2; unmarshaled.set_TextureSize_2(unmarshaled_TextureSize_temp_2); int32_t unmarshaled_MipLevels_temp_3 = 0; unmarshaled_MipLevels_temp_3 = marshaled.___MipLevels_3; unmarshaled.set_MipLevels_3(unmarshaled_MipLevels_temp_3); int32_t unmarshaled_SampleCount_temp_4 = 0; unmarshaled_SampleCount_temp_4 = marshaled.___SampleCount_4; unmarshaled.set_SampleCount_4(unmarshaled_SampleCount_temp_4); int32_t unmarshaled_Format_temp_5 = 0; unmarshaled_Format_temp_5 = marshaled.___Format_5; unmarshaled.set_Format_5(unmarshaled_Format_temp_5); int32_t unmarshaled_LayerFlags_temp_6 = 0; unmarshaled_LayerFlags_temp_6 = marshaled.___LayerFlags_6; unmarshaled.set_LayerFlags_6(unmarshaled_LayerFlags_temp_6); unmarshaled.set_Fov_7(reinterpret_cast((FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D*)SZArrayNew(FovfU5BU5D_tC75D0D986097FBCE693015FB2BF11B3D16CDE30D_il2cpp_TypeInfo_var, 2))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (unmarshaled.get_Fov_7())->SetAtUnchecked(static_cast(i), (marshaled.___Fov_7)[i]); } unmarshaled.set_VisibleRect_8(reinterpret_cast((RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F*)SZArrayNew(RectfU5BU5D_t64805D8B186B1FC8FEA942B8FFA908421F80F72F_il2cpp_TypeInfo_var, 2))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (unmarshaled.get_VisibleRect_8())->SetAtUnchecked(static_cast(i), (marshaled.___VisibleRect_8)[i]); } Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 unmarshaled_MaxViewportSize_temp_9; memset((&unmarshaled_MaxViewportSize_temp_9), 0, sizeof(unmarshaled_MaxViewportSize_temp_9)); unmarshaled_MaxViewportSize_temp_9 = marshaled.___MaxViewportSize_9; unmarshaled.set_MaxViewportSize_9(unmarshaled_MaxViewportSize_temp_9); int32_t unmarshaled_DepthFormat_temp_10 = 0; unmarshaled_DepthFormat_temp_10 = marshaled.___DepthFormat_10; unmarshaled.set_DepthFormat_10(unmarshaled_DepthFormat_temp_10); int32_t unmarshaled_MotionVectorFormat_temp_11 = 0; unmarshaled_MotionVectorFormat_temp_11 = marshaled.___MotionVectorFormat_11; unmarshaled.set_MotionVectorFormat_11(unmarshaled_MotionVectorFormat_temp_11); int32_t unmarshaled_MotionVectorDepthFormat_temp_12 = 0; unmarshaled_MotionVectorDepthFormat_temp_12 = marshaled.___MotionVectorDepthFormat_12; unmarshaled.set_MotionVectorDepthFormat_12(unmarshaled_MotionVectorDepthFormat_temp_12); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 unmarshaled_MotionVectorTextureSize_temp_13; memset((&unmarshaled_MotionVectorTextureSize_temp_13), 0, sizeof(unmarshaled_MotionVectorTextureSize_temp_13)); unmarshaled_MotionVectorTextureSize_temp_13 = marshaled.___MotionVectorTextureSize_13; unmarshaled.set_MotionVectorTextureSize_13(unmarshaled_MotionVectorTextureSize_temp_13); } // Conversion method for clean up from marshalling of: OVRPlugin/LayerDesc IL2CPP_EXTERN_C void LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_com_cleanup(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_com& marshaled) { } // System.String OVRPlugin/LayerDesc::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* LayerDesc_ToString_m1966675D96EB5347D2A7418084B4309E19BBDE3D (LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&EyeTextureFormat_tA6D50F360539FD57E20BCFB425C3E717E180A89E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&LayerLayout_t69210A1A9CCEF0BA738C09450D8AA2C9460F40DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OverlayShape_tF919BB207C80855BDF33A30CB464646F18826DB7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D); s_Il2CppMethodInitialized = true; } String_t* V_0 = NULL; { // string delim = ", "; V_0 = _stringLiteral758733BDBED83CBFF4F635AC26CA92AAE477F75D; // return Shape.ToString() // + delim + Layout.ToString() // + delim + TextureSize.w.ToString() + "x" + TextureSize.h.ToString() // + delim + MipLevels.ToString() // + delim + SampleCount.ToString() // + delim + Format.ToString() // + delim + LayerFlags.ToString(); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_0 = (StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A*)SZArrayNew(StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A_il2cpp_TypeInfo_var, (uint32_t)((int32_t)15)); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_1 = L_0; int32_t* L_2 = __this->get_address_of_Shape_0(); RuntimeObject * L_3 = Box(OverlayShape_tF919BB207C80855BDF33A30CB464646F18826DB7_il2cpp_TypeInfo_var, L_2); NullCheck(L_3); String_t* L_4; L_4 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_3); *L_2 = *(int32_t*)UnBox(L_3); NullCheck(L_1); ArrayElementTypeCheck (L_1, L_4); (L_1)->SetAt(static_cast(0), (String_t*)L_4); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_5 = L_1; String_t* L_6 = V_0; NullCheck(L_5); ArrayElementTypeCheck (L_5, L_6); (L_5)->SetAt(static_cast(1), (String_t*)L_6); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_7 = L_5; int32_t* L_8 = __this->get_address_of_Layout_1(); RuntimeObject * L_9 = Box(LayerLayout_t69210A1A9CCEF0BA738C09450D8AA2C9460F40DE_il2cpp_TypeInfo_var, L_8); NullCheck(L_9); String_t* L_10; L_10 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_9); *L_8 = *(int32_t*)UnBox(L_9); NullCheck(L_7); ArrayElementTypeCheck (L_7, L_10); (L_7)->SetAt(static_cast(2), (String_t*)L_10); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_11 = L_7; String_t* L_12 = V_0; NullCheck(L_11); ArrayElementTypeCheck (L_11, L_12); (L_11)->SetAt(static_cast(3), (String_t*)L_12); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_13 = L_11; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * L_14 = __this->get_address_of_TextureSize_2(); int32_t* L_15 = L_14->get_address_of_w_0(); String_t* L_16; L_16 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_15, /*hidden argument*/NULL); NullCheck(L_13); ArrayElementTypeCheck (L_13, L_16); (L_13)->SetAt(static_cast(4), (String_t*)L_16); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_17 = L_13; NullCheck(L_17); ArrayElementTypeCheck (L_17, _stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B); (L_17)->SetAt(static_cast(5), (String_t*)_stringLiteral062DB096C728515E033CF8C48A1C1F0B9A79384B); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_18 = L_17; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * L_19 = __this->get_address_of_TextureSize_2(); int32_t* L_20 = L_19->get_address_of_h_1(); String_t* L_21; L_21 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_20, /*hidden argument*/NULL); NullCheck(L_18); ArrayElementTypeCheck (L_18, L_21); (L_18)->SetAt(static_cast(6), (String_t*)L_21); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_22 = L_18; String_t* L_23 = V_0; NullCheck(L_22); ArrayElementTypeCheck (L_22, L_23); (L_22)->SetAt(static_cast(7), (String_t*)L_23); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_24 = L_22; int32_t* L_25 = __this->get_address_of_MipLevels_3(); String_t* L_26; L_26 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_25, /*hidden argument*/NULL); NullCheck(L_24); ArrayElementTypeCheck (L_24, L_26); (L_24)->SetAt(static_cast(8), (String_t*)L_26); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_27 = L_24; String_t* L_28 = V_0; NullCheck(L_27); ArrayElementTypeCheck (L_27, L_28); (L_27)->SetAt(static_cast(((int32_t)9)), (String_t*)L_28); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_29 = L_27; int32_t* L_30 = __this->get_address_of_SampleCount_4(); String_t* L_31; L_31 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_30, /*hidden argument*/NULL); NullCheck(L_29); ArrayElementTypeCheck (L_29, L_31); (L_29)->SetAt(static_cast(((int32_t)10)), (String_t*)L_31); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_32 = L_29; String_t* L_33 = V_0; NullCheck(L_32); ArrayElementTypeCheck (L_32, L_33); (L_32)->SetAt(static_cast(((int32_t)11)), (String_t*)L_33); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_34 = L_32; int32_t* L_35 = __this->get_address_of_Format_5(); RuntimeObject * L_36 = Box(EyeTextureFormat_tA6D50F360539FD57E20BCFB425C3E717E180A89E_il2cpp_TypeInfo_var, L_35); NullCheck(L_36); String_t* L_37; L_37 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_36); *L_35 = *(int32_t*)UnBox(L_36); NullCheck(L_34); ArrayElementTypeCheck (L_34, L_37); (L_34)->SetAt(static_cast(((int32_t)12)), (String_t*)L_37); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_38 = L_34; String_t* L_39 = V_0; NullCheck(L_38); ArrayElementTypeCheck (L_38, L_39); (L_38)->SetAt(static_cast(((int32_t)13)), (String_t*)L_39); StringU5BU5D_tACEBFEDE350025B554CD507C9AE8FFE49359549A* L_40 = L_38; int32_t* L_41 = __this->get_address_of_LayerFlags_6(); String_t* L_42; L_42 = Int32_ToString_m340C0A14D16799421EFDF8A81C8A16FA76D48411((int32_t*)L_41, /*hidden argument*/NULL); NullCheck(L_40); ArrayElementTypeCheck (L_40, L_42); (L_40)->SetAt(static_cast(((int32_t)14)), (String_t*)L_42); String_t* L_43; L_43 = String_Concat_m27B9C3007C7DABFABCC3726B37A3BE08CB40C417(L_40, /*hidden argument*/NULL); return L_43; } } IL2CPP_EXTERN_C String_t* LayerDesc_ToString_m1966675D96EB5347D2A7418084B4309E19BBDE3D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = LayerDesc_ToString_m1966675D96EB5347D2A7418084B4309E19BBDE3D(_thisAdjusted, method); return _returnValue; } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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: OVRPlugin/LayerSubmit IL2CPP_EXTERN_C void LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshal_pinvoke(const LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44& unmarshaled, LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshaled_pinvoke& marshaled) { marshaled.___LayerId_0 = unmarshaled.get_LayerId_0(); marshaled.___TextureStage_1 = unmarshaled.get_TextureStage_1(); if (unmarshaled.get_ViewportRect_2() != NULL) { if (2 > (unmarshaled.get_ViewportRect_2())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (marshaled.___ViewportRect_2)[i] = (unmarshaled.get_ViewportRect_2())->GetAtUnchecked(static_cast(i)); } } marshaled.___Pose_3 = unmarshaled.get_Pose_3(); marshaled.___LayerSubmitFlags_4 = unmarshaled.get_LayerSubmitFlags_4(); } IL2CPP_EXTERN_C void LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshal_pinvoke_back(const LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshaled_pinvoke& marshaled, LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_LayerId_temp_0 = 0; unmarshaled_LayerId_temp_0 = marshaled.___LayerId_0; unmarshaled.set_LayerId_0(unmarshaled_LayerId_temp_0); int32_t unmarshaled_TextureStage_temp_1 = 0; unmarshaled_TextureStage_temp_1 = marshaled.___TextureStage_1; unmarshaled.set_TextureStage_1(unmarshaled_TextureStage_temp_1); unmarshaled.set_ViewportRect_2(reinterpret_cast((RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00*)SZArrayNew(RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00_il2cpp_TypeInfo_var, 2))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (unmarshaled.get_ViewportRect_2())->SetAtUnchecked(static_cast(i), (marshaled.___ViewportRect_2)[i]); } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_Pose_temp_3; memset((&unmarshaled_Pose_temp_3), 0, sizeof(unmarshaled_Pose_temp_3)); unmarshaled_Pose_temp_3 = marshaled.___Pose_3; unmarshaled.set_Pose_3(unmarshaled_Pose_temp_3); int32_t unmarshaled_LayerSubmitFlags_temp_4 = 0; unmarshaled_LayerSubmitFlags_temp_4 = marshaled.___LayerSubmitFlags_4; unmarshaled.set_LayerSubmitFlags_4(unmarshaled_LayerSubmitFlags_temp_4); } // Conversion method for clean up from marshalling of: OVRPlugin/LayerSubmit IL2CPP_EXTERN_C void LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshal_pinvoke_cleanup(LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/LayerSubmit IL2CPP_EXTERN_C void LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshal_com(const LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44& unmarshaled, LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshaled_com& marshaled) { marshaled.___LayerId_0 = unmarshaled.get_LayerId_0(); marshaled.___TextureStage_1 = unmarshaled.get_TextureStage_1(); if (unmarshaled.get_ViewportRect_2() != NULL) { if (2 > (unmarshaled.get_ViewportRect_2())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (marshaled.___ViewportRect_2)[i] = (unmarshaled.get_ViewportRect_2())->GetAtUnchecked(static_cast(i)); } } marshaled.___Pose_3 = unmarshaled.get_Pose_3(); marshaled.___LayerSubmitFlags_4 = unmarshaled.get_LayerSubmitFlags_4(); } IL2CPP_EXTERN_C void LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshal_com_back(const LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshaled_com& marshaled, LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_LayerId_temp_0 = 0; unmarshaled_LayerId_temp_0 = marshaled.___LayerId_0; unmarshaled.set_LayerId_0(unmarshaled_LayerId_temp_0); int32_t unmarshaled_TextureStage_temp_1 = 0; unmarshaled_TextureStage_temp_1 = marshaled.___TextureStage_1; unmarshaled.set_TextureStage_1(unmarshaled_TextureStage_temp_1); unmarshaled.set_ViewportRect_2(reinterpret_cast((RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00*)SZArrayNew(RectiU5BU5D_tF299C9FD9296DE065821DE54EA299A97E07CAF00_il2cpp_TypeInfo_var, 2))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(2); i++) { (unmarshaled.get_ViewportRect_2())->SetAtUnchecked(static_cast(i), (marshaled.___ViewportRect_2)[i]); } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_Pose_temp_3; memset((&unmarshaled_Pose_temp_3), 0, sizeof(unmarshaled_Pose_temp_3)); unmarshaled_Pose_temp_3 = marshaled.___Pose_3; unmarshaled.set_Pose_3(unmarshaled_Pose_temp_3); int32_t unmarshaled_LayerSubmitFlags_temp_4 = 0; unmarshaled_LayerSubmitFlags_temp_4 = marshaled.___LayerSubmitFlags_4; unmarshaled.set_LayerSubmitFlags_4(unmarshaled_LayerSubmitFlags_temp_4); } // Conversion method for clean up from marshalling of: OVRPlugin/LayerSubmit IL2CPP_EXTERN_C void LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_marshal_com_cleanup(LayerSubmit_t6C022257B8C09C132680E872A606E02E5053EB44_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 OVRPlugin/Media::Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_Initialize_m2035EB1750CFACC30B07EC9923F8A2CC2783887B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001a; } } { // return OVRP_1_38_0.ovrp_Media_Initialize() == Result.Success; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_Initialize_mE698EEFC181B58047DD812670561F129213C0FD9(/*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_001a: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::Shutdown() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_Shutdown_m2833D641970B014C20D0481551C1490AF421DBE0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001a; } } { // return OVRP_1_38_0.ovrp_Media_Shutdown() == Result.Success; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_Shutdown_m62FBC7AB749BFC4DEBA3C09A894C585F03554B6F(/*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_001a: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::GetInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_GetInitialized_mC020A3CAF26E76506522CFF4BAD33BBEEBCF1C8B (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0026; } } { // Bool initialized = Bool.False; V_0 = 0; // Result result = OVRP_1_38_0.ovrp_Media_GetInitialized(out initialized); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_GetInitialized_mB6DAF092F0AF72A62BBF04CFF18B86852E3FAE07((int32_t*)(&V_0), /*hidden argument*/NULL); // if (result == Result.Success) if (L_3) { goto IL_0024; } } { // return initialized == Bool.True ? true : false; int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0022; } } { return (bool)0; } IL_0022: { return (bool)1; } IL_0024: { // return false; return (bool)0; } IL_0026: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_Update_m44AC519EB6E73AC4E4E5AF53162618F8D7728739 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001a; } } { // return OVRP_1_38_0.ovrp_Media_Update() == Result.Success; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_Update_m09BA36449E0FC2EA89C238DE58713267CD798CB1(/*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_001a: { // return false; return (bool)0; } } // OVRPlugin/Media/MrcActivationMode OVRPlugin/Media::GetMrcActivationMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Media_GetMrcActivationMode_m62EBEFE60BA550A84D8460A305A6EB9816226E57 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001e; } } { // if (OVRP_1_38_0.ovrp_Media_GetMrcActivationMode(out mode) == Result.Success) IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_GetMrcActivationMode_mFD871CE1B42BE02A5B0CF5FD68681153BA21CEEC((int32_t*)(&V_0), /*hidden argument*/NULL); if (L_3) { goto IL_001c; } } { // return mode; int32_t L_4 = V_0; return L_4; } IL_001c: { // return default(MrcActivationMode); return (int32_t)(0); } IL_001e: { // return default(MrcActivationMode); return (int32_t)(0); } } // System.Boolean OVRPlugin/Media::SetMrcActivationMode(OVRPlugin/Media/MrcActivationMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetMrcActivationMode_m7E6F5055984052FB3C667AE7A67733E66E878E20 (int32_t ___mode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001b; } } { // return OVRP_1_38_0.ovrp_Media_SetMrcActivationMode(mode) == Result.Success; int32_t L_3 = ___mode0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_4; L_4 = OVRP_1_38_0_ovrp_Media_SetMrcActivationMode_m90E3BA9787F7BCD9C68F5DBFF084FD8107F90DDA(L_3, /*hidden argument*/NULL); return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0); } IL_001b: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::SetPlatformInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetPlatformInitialized_mC7B2B4D448D09F26D4477F27623961AD7C463B3C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_54_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001a; } } { // return OVRP_1_54_0.ovrp_Media_SetPlatformInitialized() == Result.Success; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_54_0_ovrp_Media_SetPlatformInitialized_m9DAC8E67E6B4FA340939BE5B23B7456EB02291D8(/*hidden argument*/NULL); return (bool)((((int32_t)L_3) == ((int32_t)0))? 1 : 0); } IL_001a: { // return false; return (bool)0; } } // OVRPlugin/Media/PlatformCameraMode OVRPlugin/Media::GetPlatformCameraMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Media_GetPlatformCameraMode_mB6239F1C640068F992F1EC3F74D44AFA2B317FD9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_57_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001e; } } { // if (OVRP_1_57_0.ovrp_Media_GetPlatformCameraMode(out mode) == Result.Success) IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_57_0_ovrp_Media_GetPlatformCameraMode_m3E8CB0D24C644B03986E440794FEE8B63E494D16((int32_t*)(&V_0), /*hidden argument*/NULL); if (L_3) { goto IL_001c; } } { // return mode; int32_t L_4 = V_0; return L_4; } IL_001c: { // return default(PlatformCameraMode); return (int32_t)(0); } IL_001e: { // return default(PlatformCameraMode); return (int32_t)(0); } } // System.Boolean OVRPlugin/Media::SetPlatformCameraMode(OVRPlugin/Media/PlatformCameraMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetPlatformCameraMode_mA1022FB80222ED3DF8A79EAB785BA5EFBD76BD8B (int32_t ___mode0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_57_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001b; } } { // return OVRP_1_57_0.ovrp_Media_SetPlatformCameraMode(mode) == Result.Success; int32_t L_3 = ___mode0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var); int32_t L_4; L_4 = OVRP_1_57_0_ovrp_Media_SetPlatformCameraMode_m9799203D81E94E953ED4858154E419969C08580C(L_3, /*hidden argument*/NULL); return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0); } IL_001b: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::IsMrcEnabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_IsMrcEnabled_m7174A0D2D71BF0E980487A4EC723BBF38D0DB470 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0024; } } { // if (OVRP_1_38_0.ovrp_Media_IsMrcEnabled(out b) == Result.Success) IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_IsMrcEnabled_m2F4C363CCBA8F01DE12102FB44FC27947C457AB1((int32_t*)(&V_0), /*hidden argument*/NULL); if (L_3) { goto IL_0022; } } { // return b == Bool.True ? true : false; int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0020; } } { return (bool)0; } IL_0020: { return (bool)1; } IL_0022: { // return false; return (bool)0; } IL_0024: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::IsMrcActivated() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_IsMrcActivated_mFA5E1E417E28D1A1E56C4128C915C5ADB50B4B96 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0024; } } { // if (OVRP_1_38_0.ovrp_Media_IsMrcActivated(out b) == Result.Success) IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_IsMrcActivated_mCCA9BC630B9256809896168745640CE81A42F9D4((int32_t*)(&V_0), /*hidden argument*/NULL); if (L_3) { goto IL_0022; } } { // return b == Bool.True ? true : false; int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0020; } } { return (bool)0; } IL_0020: { return (bool)1; } IL_0022: { // return false; return (bool)0; } IL_0024: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::UseMrcDebugCamera() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_UseMrcDebugCamera_mD9E8EFE29F8F2519C84358780E1F81174573921D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0024; } } { // if (OVRP_1_38_0.ovrp_Media_UseMrcDebugCamera(out b) == Result.Success) IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_UseMrcDebugCamera_m6EE4528A77AF05CEF3C2624707AA7C0818CD00C6((int32_t*)(&V_0), /*hidden argument*/NULL); if (L_3) { goto IL_0022; } } { // return b == Bool.True ? true : false; int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0020; } } { return (bool)0; } IL_0020: { return (bool)1; } IL_0022: { // return false; return (bool)0; } IL_0024: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::SetMrcInputVideoBufferType(OVRPlugin/Media/InputVideoBufferType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetMrcInputVideoBufferType_m276B5417EA4E6CDD5B16BF194E6ABC04866FB5BC (int32_t ___videoBufferType0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001d; } } { // if (OVRP_1_38_0.ovrp_Media_SetMrcInputVideoBufferType(videoBufferType) == Result.Success) int32_t L_3 = ___videoBufferType0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_4; L_4 = OVRP_1_38_0_ovrp_Media_SetMrcInputVideoBufferType_m10334077D066D26FFD50A656545D9C88B15CF875(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_001b; } } { // return true; return (bool)1; } IL_001b: { // return false; return (bool)0; } IL_001d: { // return false; return (bool)0; } } // OVRPlugin/Media/InputVideoBufferType OVRPlugin/Media::GetMrcInputVideoBufferType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Media_GetMrcInputVideoBufferType_mAD9A9EE8B71C74A3D2B211B905A038685B10A022 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001d; } } { // InputVideoBufferType videoBufferType = InputVideoBufferType.Memory; V_0 = 0; // OVRP_1_38_0.ovrp_Media_GetMrcInputVideoBufferType(ref videoBufferType); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_GetMrcInputVideoBufferType_m70BA87E7BAB6B26AB479F5466F739EB3257E88E4((int32_t*)(&V_0), /*hidden argument*/NULL); // return videoBufferType; int32_t L_4 = V_0; return L_4; } IL_001d: { // return InputVideoBufferType.Memory; return (int32_t)(0); } } // System.Boolean OVRPlugin/Media::SetMrcFrameSize(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetMrcFrameSize_mFC2BA575AAB01F1525855A5D42F4A827F956A2BB (int32_t ___frameWidth0, int32_t ___frameHeight1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001e; } } { // if (OVRP_1_38_0.ovrp_Media_SetMrcFrameSize(frameWidth, frameHeight) == Result.Success) int32_t L_3 = ___frameWidth0; int32_t L_4 = ___frameHeight1; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_5; L_5 = OVRP_1_38_0_ovrp_Media_SetMrcFrameSize_m8A0FDD45F9347A1C27A1797DD8C1003120F9C3AE(L_3, L_4, /*hidden argument*/NULL); if (L_5) { goto IL_001c; } } { // return true; return (bool)1; } IL_001c: { // return false; return (bool)0; } IL_001e: { // return false; return (bool)0; } } // System.Void OVRPlugin/Media::GetMrcFrameSize(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Media_GetMrcFrameSize_m97E0681F433C6BA9CF19DE1BD454E29FE14710EF (int32_t* ___frameWidth0, int32_t* ___frameHeight1, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // frameWidth = -1; int32_t* L_0 = ___frameWidth0; *((int32_t*)L_0) = (int32_t)(-1); // frameHeight = -1; int32_t* L_1 = ___frameHeight1; *((int32_t*)L_1) = (int32_t)(-1); // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_2; L_2 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_3 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_4; L_4 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_2, L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_001f; } } { // OVRP_1_38_0.ovrp_Media_GetMrcFrameSize(ref frameWidth, ref frameHeight); int32_t* L_5 = ___frameWidth0; int32_t* L_6 = ___frameHeight1; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_7; L_7 = OVRP_1_38_0_ovrp_Media_GetMrcFrameSize_m916A02E29E2A4FEF3E16947918E5C70EC1560984((int32_t*)L_5, (int32_t*)L_6, /*hidden argument*/NULL); } IL_001f: { // } return; } } // System.Boolean OVRPlugin/Media::SetMrcAudioSampleRate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetMrcAudioSampleRate_mF6105AF5018D1827BCACE0439715D4A3370A4B69 (int32_t ___sampleRate0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001d; } } { // if (OVRP_1_38_0.ovrp_Media_SetMrcAudioSampleRate(sampleRate) == Result.Success) int32_t L_3 = ___sampleRate0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_4; L_4 = OVRP_1_38_0_ovrp_Media_SetMrcAudioSampleRate_mE676A1E4C10ADF00BC95A9C88532E74F20DCF065(L_3, /*hidden argument*/NULL); if (L_4) { goto IL_001b; } } { // return true; return (bool)1; } IL_001b: { // return false; return (bool)0; } IL_001d: { // return false; return (bool)0; } } // System.Int32 OVRPlugin/Media::GetMrcAudioSampleRate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Media_GetMrcAudioSampleRate_mF9D54413373B527D9264874260C64EC421AD5BAB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // int sampleRate = 0; V_0 = 0; // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001b; } } { // OVRP_1_38_0.ovrp_Media_GetMrcAudioSampleRate(ref sampleRate); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_GetMrcAudioSampleRate_mACB1845DE4336B93DD03F74EC80C2003D82A1918((int32_t*)(&V_0), /*hidden argument*/NULL); } IL_001b: { // return sampleRate; int32_t L_4 = V_0; return L_4; } } // System.Boolean OVRPlugin/Media::SetMrcFrameImageFlipped(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetMrcFrameImageFlipped_m1E4228ACF50559BEDBC80168ED6C9BA66AB77525 (bool ___imageFlipped0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t G_B4_0 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0023; } } { // Bool flipped = imageFlipped ? Bool.True : Bool.False; bool L_3 = ___imageFlipped0; if (L_3) { goto IL_0017; } } { G_B4_0 = 0; goto IL_0018; } IL_0017: { G_B4_0 = 1; } IL_0018: { // if (OVRP_1_38_0.ovrp_Media_SetMrcFrameImageFlipped(flipped) == Result.Success) IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_4; L_4 = OVRP_1_38_0_ovrp_Media_SetMrcFrameImageFlipped_mD4C62142F0D01870907CAF8AE5215C9FE5C4E7F4(G_B4_0, /*hidden argument*/NULL); if (L_4) { goto IL_0021; } } { // return true; return (bool)1; } IL_0021: { // return false; return (bool)0; } IL_0023: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::GetMrcFrameImageFlipped() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_GetMrcFrameImageFlipped_m2F57304CAFA0570A78F605CD3E3A552E61F08280 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // Bool flipped = 0; V_0 = 0; // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001b; } } { // OVRP_1_38_0.ovrp_Media_GetMrcFrameImageFlipped(ref flipped); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_38_0_ovrp_Media_GetMrcFrameImageFlipped_m753A68762974224E54E08E9A74AADFE144FFB5A1((int32_t*)(&V_0), /*hidden argument*/NULL); } IL_001b: { // return flipped == Bool.True ? true : false; int32_t L_4 = V_0; if ((((int32_t)L_4) == ((int32_t)1))) { goto IL_0021; } } { return (bool)0; } IL_0021: { return (bool)1; } } // System.Boolean OVRPlugin/Media::EncodeMrcFrame(System.IntPtr,System.IntPtr,System.Single[],System.Int32,System.Int32,System.Double,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_EncodeMrcFrame_mBBE1AD23013B28CE16308926EFF9DD29C8753ACD (intptr_t ___textureHandle0, intptr_t ___fgTextureHandle1, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData2, int32_t ___audioFrames3, int32_t ___audioChannels4, double ___timestamp5, double ___poseTime6, int32_t* ___outSyncId7, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CB541CC4DF753F79B44E64590960740240EFCF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE431ED0970BCA8CE9732F814C44CB9A9812E2781); s_Il2CppMethodInitialized = true; } GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 V_0; memset((&V_0), 0, sizeof(V_0)); intptr_t V_1; memset((&V_1), 0, sizeof(V_1)); int32_t V_2 = 0; int32_t V_3 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_00ee; } } { // if (textureHandle == System.IntPtr.Zero) intptr_t L_3 = ___textureHandle0; bool L_4; L_4 = IntPtr_op_Equality_m30958D875BACA94F48B6FF6D17B4CF5C36DACD48((intptr_t)L_3, (intptr_t)(0), /*hidden argument*/NULL); if (!L_4) { goto IL_002d; } } { // Debug.LogError("EncodeMrcFrame: textureHandle is null"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteralE431ED0970BCA8CE9732F814C44CB9A9812E2781, /*hidden argument*/NULL); // return false; return (bool)0; } IL_002d: { // InputVideoBufferType videoBufferType = GetMrcInputVideoBufferType(); IL2CPP_RUNTIME_CLASS_INIT(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); int32_t L_5; L_5 = Media_GetMrcInputVideoBufferType_mAD9A9EE8B71C74A3D2B211B905A038685B10A022(/*hidden argument*/NULL); // if (videoBufferType != InputVideoBufferType.TextureHandle) if ((((int32_t)L_5) == ((int32_t)1))) { goto IL_0041; } } { // Debug.LogError("EncodeMrcFrame: videoBufferType mismatch"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteral7CB541CC4DF753F79B44E64590960740240EFCF1, /*hidden argument*/NULL); // return false; return (bool)0; } IL_0041: { // GCHandle pinnedAudioData = new GCHandle(); il2cpp_codegen_initobj((&V_0), sizeof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 )); // IntPtr audioDataPtr = IntPtr.Zero; V_1 = (intptr_t)(0); // int audioDataLen = 0; V_2 = 0; // if (audioData != null) SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_6 = ___audioData2; if (!L_6) { goto IL_0068; } } { // pinnedAudioData = GCHandle.Alloc(audioData, GCHandleType.Pinned); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_7 = ___audioData2; GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_8; L_8 = GCHandle_Alloc_m51C5BC1D6902ADA3B9C297C1A96DB322A6403201((RuntimeObject *)(RuntimeObject *)L_7, 3, /*hidden argument*/NULL); V_0 = L_8; // audioDataPtr = pinnedAudioData.AddrOfPinnedObject(); intptr_t L_9; L_9 = GCHandle_AddrOfPinnedObject_m0604506F2BDCD2DC8C167FBC3BF3E965888F7589((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_0), /*hidden argument*/NULL); V_1 = (intptr_t)L_9; // audioDataLen = audioFrames * 4; int32_t L_10 = ___audioFrames3; V_2 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_10, (int32_t)4)); } IL_0068: { // if (fgTextureHandle == System.IntPtr.Zero) intptr_t L_11 = ___fgTextureHandle1; bool L_12; L_12 = IntPtr_op_Equality_m30958D875BACA94F48B6FF6D17B4CF5C36DACD48((intptr_t)L_11, (intptr_t)(0), /*hidden argument*/NULL); if (!L_12) { goto IL_00aa; } } { // if (version >= OVRP_1_49_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_13; L_13 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_14 = ((OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_15; L_15 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_13, L_14, /*hidden argument*/NULL); if (!L_15) { goto IL_0099; } } { // result = OVRP_1_49_0.ovrp_Media_EncodeMrcFrameWithPoseTime(textureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, poseTime, ref outSyncId); intptr_t L_16 = ___textureHandle0; intptr_t L_17 = V_1; int32_t L_18 = V_2; int32_t L_19 = ___audioChannels4; double L_20 = ___timestamp5; double L_21 = ___poseTime6; int32_t* L_22 = ___outSyncId7; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); int32_t L_23; L_23 = OVRP_1_49_0_ovrp_Media_EncodeMrcFrameWithPoseTime_mCCEBF5A19D4953B47D8FDAE9D075AA0314169F06((intptr_t)L_16, (intptr_t)L_17, L_18, L_19, L_20, L_21, (int32_t*)L_22, /*hidden argument*/NULL); V_3 = L_23; // } goto IL_00df; } IL_0099: { // result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrame(textureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); intptr_t L_24 = ___textureHandle0; intptr_t L_25 = V_1; int32_t L_26 = V_2; int32_t L_27 = ___audioChannels4; double L_28 = ___timestamp5; int32_t* L_29 = ___outSyncId7; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_30; L_30 = OVRP_1_38_0_ovrp_Media_EncodeMrcFrame_m8BA72BFC359A978F8C0496FCE0C3DE9FDA49EA19((intptr_t)L_24, (intptr_t)L_25, L_26, L_27, L_28, (int32_t*)L_29, /*hidden argument*/NULL); V_3 = L_30; // } goto IL_00df; } IL_00aa: { // if (version >= OVRP_1_49_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_31; L_31 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_32 = ((OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_33; L_33 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_31, L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_00cf; } } { // result = OVRP_1_49_0.ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime(textureHandle, fgTextureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, poseTime, ref outSyncId); intptr_t L_34 = ___textureHandle0; intptr_t L_35 = ___fgTextureHandle1; intptr_t L_36 = V_1; int32_t L_37 = V_2; int32_t L_38 = ___audioChannels4; double L_39 = ___timestamp5; double L_40 = ___poseTime6; int32_t* L_41 = ___outSyncId7; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); int32_t L_42; L_42 = OVRP_1_49_0_ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime_m98C771F41A80B6D5F9C0401B2ADF7B01D7A4EFB8((intptr_t)L_34, (intptr_t)L_35, (intptr_t)L_36, L_37, L_38, L_39, L_40, (int32_t*)L_41, /*hidden argument*/NULL); V_3 = L_42; // } goto IL_00df; } IL_00cf: { // result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrameWithDualTextures(textureHandle, fgTextureHandle, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); intptr_t L_43 = ___textureHandle0; intptr_t L_44 = ___fgTextureHandle1; intptr_t L_45 = V_1; int32_t L_46 = V_2; int32_t L_47 = ___audioChannels4; double L_48 = ___timestamp5; int32_t* L_49 = ___outSyncId7; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_50; L_50 = OVRP_1_38_0_ovrp_Media_EncodeMrcFrameWithDualTextures_mAF961F524475F9D20BB52470E4FF821FB4645346((intptr_t)L_43, (intptr_t)L_44, (intptr_t)L_45, L_46, L_47, L_48, (int32_t*)L_49, /*hidden argument*/NULL); V_3 = L_50; } IL_00df: { // if (audioData != null) SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_51 = ___audioData2; if (!L_51) { goto IL_00e9; } } { // pinnedAudioData.Free(); GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_0), /*hidden argument*/NULL); } IL_00e9: { // return result == Result.Success; int32_t L_52 = V_3; return (bool)((((int32_t)L_52) == ((int32_t)0))? 1 : 0); } IL_00ee: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::EncodeMrcFrame(UnityEngine.RenderTexture,System.Single[],System.Int32,System.Int32,System.Double,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_EncodeMrcFrame_m334D699E00CCA3A799C2129B1865903D6F226371 (RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * ___frame0, SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* ___audioData1, int32_t ___audioFrames2, int32_t ___audioChannels3, double ___timestamp4, double ___poseTime5, int32_t* ___outSyncId6, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&IntPtr_t_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7CB541CC4DF753F79B44E64590960740240EFCF1); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBF8DAE4DC7B77A925289E2FC828E8DDD7A20DA7A); s_Il2CppMethodInitialized = true; } GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 V_0; memset((&V_0), 0, sizeof(V_0)); intptr_t V_1; memset((&V_1), 0, sizeof(V_1)); GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 V_2; memset((&V_2), 0, sizeof(V_2)); intptr_t V_3; memset((&V_3), 0, sizeof(V_3)); int32_t V_4 = 0; int32_t V_5 = 0; { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_015b; } } { // if (frame == null) RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_3 = ___frame0; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_4; L_4 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_3, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_4) { goto IL_0029; } } { // Debug.LogError("EncodeMrcFrame: frame is null"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteralBF8DAE4DC7B77A925289E2FC828E8DDD7A20DA7A, /*hidden argument*/NULL); // return false; return (bool)0; } IL_0029: { // InputVideoBufferType videoBufferType = GetMrcInputVideoBufferType(); IL2CPP_RUNTIME_CLASS_INIT(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); int32_t L_5; L_5 = Media_GetMrcInputVideoBufferType_mAD9A9EE8B71C74A3D2B211B905A038685B10A022(/*hidden argument*/NULL); // if (videoBufferType != InputVideoBufferType.Memory) if (!L_5) { goto IL_003c; } } { // Debug.LogError("EncodeMrcFrame: videoBufferType mismatch"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteral7CB541CC4DF753F79B44E64590960740240EFCF1, /*hidden argument*/NULL); // return false; return (bool)0; } IL_003c: { // GCHandle pinnedArray = new GCHandle(); il2cpp_codegen_initobj((&V_0), sizeof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 )); // IntPtr pointer = IntPtr.Zero; V_1 = (intptr_t)(0); // if (cachedTexture == null || cachedTexture.width != frame.width || cachedTexture.height != frame.height) IL2CPP_RUNTIME_CLASS_INIT(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_6 = ((Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields*)il2cpp_codegen_static_fields_for(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var))->get_cachedTexture_0(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_7; L_7 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_6, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (L_7) { goto IL_007b; } } { IL2CPP_RUNTIME_CLASS_INIT(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_8 = ((Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields*)il2cpp_codegen_static_fields_for(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var))->get_cachedTexture_0(); NullCheck(L_8); int32_t L_9; L_9 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.Texture::get_width() */, L_8); RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_10 = ___frame0; NullCheck(L_10); int32_t L_11; L_11 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.Texture::get_width() */, L_10); if ((!(((uint32_t)L_9) == ((uint32_t)L_11)))) { goto IL_007b; } } { IL2CPP_RUNTIME_CLASS_INIT(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_12 = ((Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields*)il2cpp_codegen_static_fields_for(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var))->get_cachedTexture_0(); NullCheck(L_12); int32_t L_13; L_13 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.Texture::get_height() */, L_12); RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_14 = ___frame0; NullCheck(L_14); int32_t L_15; L_15 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.Texture::get_height() */, L_14); if ((((int32_t)L_13) == ((int32_t)L_15))) { goto IL_0093; } } IL_007b: { // cachedTexture = new Texture2D(frame.width, frame.height, TextureFormat.ARGB32, false); RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_16 = ___frame0; NullCheck(L_16); int32_t L_17; L_17 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.Texture::get_width() */, L_16); RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_18 = ___frame0; NullCheck(L_18); int32_t L_19; L_19 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.Texture::get_height() */, L_18); Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_20 = (Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF *)il2cpp_codegen_object_new(Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF_il2cpp_TypeInfo_var); Texture2D__ctor_mF138386223A07CBD4CE94672757E39D0EF718092(L_20, L_17, L_19, 5, (bool)0, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); ((Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields*)il2cpp_codegen_static_fields_for(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var))->set_cachedTexture_0(L_20); } IL_0093: { // RenderTexture lastActive = RenderTexture.active; RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_21; L_21 = RenderTexture_get_active_m0DF52E4F5B60DDEEA9387E51C2F463774EEF455C(/*hidden argument*/NULL); // RenderTexture.active = frame; RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_22 = ___frame0; RenderTexture_set_active_mD8A1E34F5284EAA3BD907001AB63CB0735C16BC1(L_22, /*hidden argument*/NULL); // cachedTexture.ReadPixels(new Rect(0, 0, frame.width, frame.height), 0, 0); IL2CPP_RUNTIME_CLASS_INIT(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var); Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_23 = ((Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields*)il2cpp_codegen_static_fields_for(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var))->get_cachedTexture_0(); RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_24 = ___frame0; NullCheck(L_24); int32_t L_25; L_25 = VirtFuncInvoker0< int32_t >::Invoke(5 /* System.Int32 UnityEngine.Texture::get_width() */, L_24); RenderTexture_t5FE7A5B47EF962A0E8D7BEBA05E9FC87D49A1849 * L_26 = ___frame0; NullCheck(L_26); int32_t L_27; L_27 = VirtFuncInvoker0< int32_t >::Invoke(7 /* System.Int32 UnityEngine.Texture::get_height() */, L_26); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_28; memset((&L_28), 0, sizeof(L_28)); Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70((&L_28), (0.0f), (0.0f), ((float)((float)L_25)), ((float)((float)L_27)), /*hidden argument*/NULL); NullCheck(L_23); Texture2D_ReadPixels_m4C6FE8C2798C39C20A14DAFC963C720D17F4F987(L_23, L_28, 0, 0, /*hidden argument*/NULL); // RenderTexture.active = lastActive; RenderTexture_set_active_mD8A1E34F5284EAA3BD907001AB63CB0735C16BC1(L_21, /*hidden argument*/NULL); // Color32[] bytes = cachedTexture.GetPixels32(0); Texture2D_t9B604D0D8E28032123641A7E7338FA872E2698BF * L_29 = ((Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_StaticFields*)il2cpp_codegen_static_fields_for(Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637_il2cpp_TypeInfo_var))->get_cachedTexture_0(); NullCheck(L_29); Color32U5BU5D_t7FEB526973BF84608073B85CF2D581427F0235E2* L_30; L_30 = Texture2D_GetPixels32_mA4E2C09B4077716ECEFC0162ABEB8C3A66F623FA(L_29, 0, /*hidden argument*/NULL); // pinnedArray = GCHandle.Alloc(bytes, GCHandleType.Pinned); GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_31; L_31 = GCHandle_Alloc_m51C5BC1D6902ADA3B9C297C1A96DB322A6403201((RuntimeObject *)(RuntimeObject *)L_30, 3, /*hidden argument*/NULL); V_0 = L_31; // pointer = pinnedArray.AddrOfPinnedObject(); intptr_t L_32; L_32 = GCHandle_AddrOfPinnedObject_m0604506F2BDCD2DC8C167FBC3BF3E965888F7589((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_0), /*hidden argument*/NULL); V_1 = (intptr_t)L_32; // GCHandle pinnedAudioData = new GCHandle(); il2cpp_codegen_initobj((&V_2), sizeof(GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 )); // IntPtr audioDataPtr = IntPtr.Zero; V_3 = (intptr_t)(0); // int audioDataLen = 0; V_4 = 0; // if (audioData != null) SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_33 = ___audioData1; if (!L_33) { goto IL_010f; } } { // pinnedAudioData = GCHandle.Alloc(audioData, GCHandleType.Pinned); SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_34 = ___audioData1; GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 L_35; L_35 = GCHandle_Alloc_m51C5BC1D6902ADA3B9C297C1A96DB322A6403201((RuntimeObject *)(RuntimeObject *)L_34, 3, /*hidden argument*/NULL); V_2 = L_35; // audioDataPtr = pinnedAudioData.AddrOfPinnedObject(); intptr_t L_36; L_36 = GCHandle_AddrOfPinnedObject_m0604506F2BDCD2DC8C167FBC3BF3E965888F7589((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); V_3 = (intptr_t)L_36; // audioDataLen = audioFrames * 4; int32_t L_37 = ___audioFrames2; V_4 = ((int32_t)il2cpp_codegen_multiply((int32_t)L_37, (int32_t)4)); } IL_010f: { // if (version >= OVRP_1_49_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_38; L_38 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_39 = ((OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_40; L_40 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_38, L_39, /*hidden argument*/NULL); if (!L_40) { goto IL_0134; } } { // result = OVRP_1_49_0.ovrp_Media_EncodeMrcFrameWithPoseTime(pointer, audioDataPtr, audioDataLen, audioChannels, timestamp, poseTime, ref outSyncId); intptr_t L_41 = V_1; intptr_t L_42 = V_3; int32_t L_43 = V_4; int32_t L_44 = ___audioChannels3; double L_45 = ___timestamp4; double L_46 = ___poseTime5; int32_t* L_47 = ___outSyncId6; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); int32_t L_48; L_48 = OVRP_1_49_0_ovrp_Media_EncodeMrcFrameWithPoseTime_mCCEBF5A19D4953B47D8FDAE9D075AA0314169F06((intptr_t)L_41, (intptr_t)L_42, L_43, L_44, L_45, L_46, (int32_t*)L_47, /*hidden argument*/NULL); V_5 = L_48; // } goto IL_0144; } IL_0134: { // result = OVRP_1_38_0.ovrp_Media_EncodeMrcFrame(pointer, audioDataPtr, audioDataLen, audioChannels, timestamp, ref outSyncId); intptr_t L_49 = V_1; intptr_t L_50 = V_3; int32_t L_51 = V_4; int32_t L_52 = ___audioChannels3; double L_53 = ___timestamp4; int32_t* L_54 = ___outSyncId6; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_55; L_55 = OVRP_1_38_0_ovrp_Media_EncodeMrcFrame_m8BA72BFC359A978F8C0496FCE0C3DE9FDA49EA19((intptr_t)L_49, (intptr_t)L_50, L_51, L_52, L_53, (int32_t*)L_54, /*hidden argument*/NULL); V_5 = L_55; } IL_0144: { // pinnedArray.Free(); GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_0), /*hidden argument*/NULL); // if (audioData != null) SingleU5BU5D_t47E8DBF5B597C122478D1FFBD9DD57399A0650FA* L_56 = ___audioData1; if (!L_56) { goto IL_0155; } } { // pinnedAudioData.Free(); GCHandle_Free_mB4E9415544FC9F0075C02AB17E270E49AF006025((GCHandle_t757890BC4BBBEDE5A623A3C110013EDD24613603 *)(&V_2), /*hidden argument*/NULL); } IL_0155: { // return result == Result.Success; int32_t L_57 = V_5; return (bool)((((int32_t)L_57) == ((int32_t)0))? 1 : 0); } IL_015b: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::SyncMrcFrame(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SyncMrcFrame_mEB90790946760C5AFE5452794BEFB7E9B132EE8B (int32_t ___syncId0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_38_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001b; } } { // return OVRP_1_38_0.ovrp_Media_SyncMrcFrame(syncId) == Result.Success; int32_t L_3 = ___syncId0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); int32_t L_4; L_4 = OVRP_1_38_0_ovrp_Media_SyncMrcFrame_mF658ADE0657A8624DC12DC44B2927A09B9DE5959(L_3, /*hidden argument*/NULL); return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0); } IL_001b: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::SetAvailableQueueIndexVulkan(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetAvailableQueueIndexVulkan_m82B67072B269179A06FE7AACECA3C8B0677B3104 (uint32_t ___queueIndexVk0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_45_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001b; } } { // return OVRP_1_45_0.ovrp_Media_SetAvailableQueueIndexVulkan(queueIndexVk) == Result.Success; uint32_t L_3 = ___queueIndexVk0; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_il2cpp_TypeInfo_var); int32_t L_4; L_4 = OVRP_1_45_0_ovrp_Media_SetAvailableQueueIndexVulkan_m099E2663873D587927C7880FBFA0C7FAB0283FC7(L_3, /*hidden argument*/NULL); return (bool)((((int32_t)L_4) == ((int32_t)0))? 1 : 0); } IL_001b: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::SetMrcHeadsetControllerPose(OVRPlugin/Posef,OVRPlugin/Posef,OVRPlugin/Posef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_SetMrcHeadsetControllerPose_mFA3F5A152D7EE448C08386E6119BBD60D3F747CA (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___headsetPose0, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___leftControllerPose1, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___rightControllerPose2, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (version >= OVRP_1_49_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_001d; } } { // Result res = OVRP_1_49_0.ovrp_Media_SetHeadsetControllerPose(headsetPose, leftControllerPose, rightControllerPose); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_3 = ___headsetPose0; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_4 = ___leftControllerPose1; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_5 = ___rightControllerPose2; IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); int32_t L_6; L_6 = OVRP_1_49_0_ovrp_Media_SetHeadsetControllerPose_m1D750736F054DD57CE47A84232AA6F2E73E35906(L_3, L_4, L_5, /*hidden argument*/NULL); // return res == Result.Success; return (bool)((((int32_t)L_6) == ((int32_t)0))? 1 : 0); } IL_001d: { // return false; return (bool)0; } } // System.Boolean OVRPlugin/Media::IsCastingToRemoteClient() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Media_IsCastingToRemoteClient_mE01A742237982E39D158A61B150A3663AFFFB3C6 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { // if (version >= OVRP_1_66_0.version) IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0; L_0 = OVRPlugin_get_version_mE1C88A23E158291E2369887F06BFCCF51BFEB6EC(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_il2cpp_TypeInfo_var); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_1 = ((OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_il2cpp_TypeInfo_var))->get_version_0(); IL2CPP_RUNTIME_CLASS_INIT(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); bool L_2; L_2 = Version_op_GreaterThanOrEqual_m0C8A5AC72FD23D7DE3C3852C0B2259C8D546AFAE(L_0, L_1, /*hidden argument*/NULL); if (!L_2) { goto IL_0023; } } { // Bool isCasting = Bool.False; V_0 = 0; // Result result = OVRP_1_66_0.ovrp_Media_IsCastingToRemoteClient(out isCasting); IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_il2cpp_TypeInfo_var); int32_t L_3; L_3 = OVRP_1_66_0_ovrp_Media_IsCastingToRemoteClient_m63888DE9F088701A41085FDE0BD41F0A9E5C54D5((int32_t*)(&V_0), /*hidden argument*/NULL); // if (result == Result.Success) if (L_3) { goto IL_0021; } } { // return isCasting == Bool.True; int32_t L_4 = V_0; return (bool)((((int32_t)L_4) == ((int32_t)1))? 1 : 0); } IL_0021: { // return false; return (bool)0; } IL_0023: { // return false; return (bool)0; } } // System.Void OVRPlugin/Media::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Media__ctor_m06C2C6CE8B0819B6788B7AB2BE173577CE7CA847 (Media_tCA9C3477E2D876C93D851889E3958D8BD6FDF637 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void OVRPlugin/Media::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Media__cctor_mE1FBD6467719A0317E5A00E03912E93AF47F3DA2 (const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: OVRPlugin/Mesh IL2CPP_EXTERN_C void Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshal_pinvoke(const Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E& unmarshaled, Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_pinvoke& marshaled) { marshaled.___Type_0 = unmarshaled.get_Type_0(); marshaled.___NumVertices_1 = unmarshaled.get_NumVertices_1(); marshaled.___NumIndices_2 = unmarshaled.get_NumIndices_2(); if (unmarshaled.get_VertexPositions_3() != NULL) { if (3000 > (unmarshaled.get_VertexPositions_3())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___VertexPositions_3)[i] = (unmarshaled.get_VertexPositions_3())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_Indices_4() != NULL) { if (18000 > (unmarshaled.get_Indices_4())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(18000); i++) { (marshaled.___Indices_4)[i] = (unmarshaled.get_Indices_4())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_VertexNormals_5() != NULL) { if (3000 > (unmarshaled.get_VertexNormals_5())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___VertexNormals_5)[i] = (unmarshaled.get_VertexNormals_5())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_VertexUV0_6() != NULL) { if (3000 > (unmarshaled.get_VertexUV0_6())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___VertexUV0_6)[i] = (unmarshaled.get_VertexUV0_6())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_BlendIndices_7() != NULL) { if (3000 > (unmarshaled.get_BlendIndices_7())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___BlendIndices_7)[i] = (unmarshaled.get_BlendIndices_7())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_BlendWeights_8() != NULL) { if (3000 > (unmarshaled.get_BlendWeights_8())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___BlendWeights_8)[i] = (unmarshaled.get_BlendWeights_8())->GetAtUnchecked(static_cast(i)); } } } IL2CPP_EXTERN_C void Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshal_pinvoke_back(const Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_pinvoke& marshaled, Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Type_temp_0 = 0; unmarshaled_Type_temp_0 = marshaled.___Type_0; unmarshaled.set_Type_0(unmarshaled_Type_temp_0); uint32_t unmarshaled_NumVertices_temp_1 = 0; unmarshaled_NumVertices_temp_1 = marshaled.___NumVertices_1; unmarshaled.set_NumVertices_1(unmarshaled_NumVertices_temp_1); uint32_t unmarshaled_NumIndices_temp_2 = 0; unmarshaled_NumIndices_temp_2 = marshaled.___NumIndices_2; unmarshaled.set_NumIndices_2(unmarshaled_NumIndices_temp_2); unmarshaled.set_VertexPositions_3(reinterpret_cast((Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1*)SZArrayNew(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_VertexPositions_3())->SetAtUnchecked(static_cast(i), (marshaled.___VertexPositions_3)[i]); } unmarshaled.set_Indices_4(reinterpret_cast((Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)SZArrayNew(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var, 18000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(18000); i++) { (unmarshaled.get_Indices_4())->SetAtUnchecked(static_cast(i), (marshaled.___Indices_4)[i]); } unmarshaled.set_VertexNormals_5(reinterpret_cast((Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1*)SZArrayNew(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_VertexNormals_5())->SetAtUnchecked(static_cast(i), (marshaled.___VertexNormals_5)[i]); } unmarshaled.set_VertexUV0_6(reinterpret_cast((Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81*)SZArrayNew(Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_VertexUV0_6())->SetAtUnchecked(static_cast(i), (marshaled.___VertexUV0_6)[i]); } unmarshaled.set_BlendIndices_7(reinterpret_cast((Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4*)SZArrayNew(Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_BlendIndices_7())->SetAtUnchecked(static_cast(i), (marshaled.___BlendIndices_7)[i]); } unmarshaled.set_BlendWeights_8(reinterpret_cast((Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4*)SZArrayNew(Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_BlendWeights_8())->SetAtUnchecked(static_cast(i), (marshaled.___BlendWeights_8)[i]); } } // Conversion method for clean up from marshalling of: OVRPlugin/Mesh IL2CPP_EXTERN_C void Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshal_pinvoke_cleanup(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/Mesh IL2CPP_EXTERN_C void Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshal_com(const Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E& unmarshaled, Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_com& marshaled) { marshaled.___Type_0 = unmarshaled.get_Type_0(); marshaled.___NumVertices_1 = unmarshaled.get_NumVertices_1(); marshaled.___NumIndices_2 = unmarshaled.get_NumIndices_2(); if (unmarshaled.get_VertexPositions_3() != NULL) { if (3000 > (unmarshaled.get_VertexPositions_3())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___VertexPositions_3)[i] = (unmarshaled.get_VertexPositions_3())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_Indices_4() != NULL) { if (18000 > (unmarshaled.get_Indices_4())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(18000); i++) { (marshaled.___Indices_4)[i] = (unmarshaled.get_Indices_4())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_VertexNormals_5() != NULL) { if (3000 > (unmarshaled.get_VertexNormals_5())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___VertexNormals_5)[i] = (unmarshaled.get_VertexNormals_5())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_VertexUV0_6() != NULL) { if (3000 > (unmarshaled.get_VertexUV0_6())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___VertexUV0_6)[i] = (unmarshaled.get_VertexUV0_6())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_BlendIndices_7() != NULL) { if (3000 > (unmarshaled.get_BlendIndices_7())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___BlendIndices_7)[i] = (unmarshaled.get_BlendIndices_7())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_BlendWeights_8() != NULL) { if (3000 > (unmarshaled.get_BlendWeights_8())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (marshaled.___BlendWeights_8)[i] = (unmarshaled.get_BlendWeights_8())->GetAtUnchecked(static_cast(i)); } } } IL2CPP_EXTERN_C void Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshal_com_back(const Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_com& marshaled, Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Type_temp_0 = 0; unmarshaled_Type_temp_0 = marshaled.___Type_0; unmarshaled.set_Type_0(unmarshaled_Type_temp_0); uint32_t unmarshaled_NumVertices_temp_1 = 0; unmarshaled_NumVertices_temp_1 = marshaled.___NumVertices_1; unmarshaled.set_NumVertices_1(unmarshaled_NumVertices_temp_1); uint32_t unmarshaled_NumIndices_temp_2 = 0; unmarshaled_NumIndices_temp_2 = marshaled.___NumIndices_2; unmarshaled.set_NumIndices_2(unmarshaled_NumIndices_temp_2); unmarshaled.set_VertexPositions_3(reinterpret_cast((Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1*)SZArrayNew(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_VertexPositions_3())->SetAtUnchecked(static_cast(i), (marshaled.___VertexPositions_3)[i]); } unmarshaled.set_Indices_4(reinterpret_cast((Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD*)SZArrayNew(Int16U5BU5D_tD134F1E6F746D4C09C987436805256C210C2FFCD_il2cpp_TypeInfo_var, 18000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(18000); i++) { (unmarshaled.get_Indices_4())->SetAtUnchecked(static_cast(i), (marshaled.___Indices_4)[i]); } unmarshaled.set_VertexNormals_5(reinterpret_cast((Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1*)SZArrayNew(Vector3fU5BU5D_tF46AAFD7783CD588B90BD2005671A9CB63F305F1_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_VertexNormals_5())->SetAtUnchecked(static_cast(i), (marshaled.___VertexNormals_5)[i]); } unmarshaled.set_VertexUV0_6(reinterpret_cast((Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81*)SZArrayNew(Vector2fU5BU5D_tDFE631EB0CA3AD9641ACB54877BE5021D4503D81_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_VertexUV0_6())->SetAtUnchecked(static_cast(i), (marshaled.___VertexUV0_6)[i]); } unmarshaled.set_BlendIndices_7(reinterpret_cast((Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4*)SZArrayNew(Vector4sU5BU5D_t0843A693C8D2BBD9A66BA8F3EBF4773C2ECE39C4_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_BlendIndices_7())->SetAtUnchecked(static_cast(i), (marshaled.___BlendIndices_7)[i]); } unmarshaled.set_BlendWeights_8(reinterpret_cast((Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4*)SZArrayNew(Vector4fU5BU5D_t878402FA8B2D0257AABBD8FAC22B10791B6E8EC4_il2cpp_TypeInfo_var, 3000))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(3000); i++) { (unmarshaled.get_BlendWeights_8())->SetAtUnchecked(static_cast(i), (marshaled.___BlendWeights_8)[i]); } } // Conversion method for clean up from marshalling of: OVRPlugin/Mesh IL2CPP_EXTERN_C void Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshal_com_cleanup(Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E_marshaled_com& marshaled) { } // System.Void OVRPlugin/Mesh::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Mesh__ctor_mC55AC9EC6278881FECC7418D19868FC7BDD9EC70 (Mesh_t5FE313505A44F65F8EA6B794D2713A900CDEFA3E * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // OVRPlugin/Sizei OVRPlugin/OVRP_0_1_0::ovrp_GetEyeTextureSize(OVRPlugin/Eye) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 OVRP_0_1_0_ovrp_GetEyeTextureSize_m2975274BBA83CE25C20FE674D41C7F3DC9BB8923 (int32_t ___eyeId0, const RuntimeMethod* method) { typedef Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetEyeTextureSize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 returnValue = reinterpret_cast(ovrp_GetEyeTextureSize)(___eyeId0); #else Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 returnValue = il2cppPInvokeFunc(___eyeId0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_0_1_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_0_1_0__cctor_m4462D3EBD930B94D54D117990F35C67CE29301EA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_0_1_0_tCA0A91720B4965A49CFBDE2BB8B46C45C0506363_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(0, 1, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 0, 1, 0, /*hidden argument*/NULL); ((OVRP_0_1_0_tCA0A91720B4965A49CFBDE2BB8B46C45C0506363_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_0_1_0_tCA0A91720B4965A49CFBDE2BB8B46C45C0506363_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_0_1_1::ovrp_SetOverlayQuad2(OVRPlugin/Bool,OVRPlugin/Bool,System.IntPtr,System.IntPtr,OVRPlugin/Posef,OVRPlugin/Vector3f) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_0_1_1_ovrp_SetOverlayQuad2_m4F611DFB8637DCE6A40A5AB41CE6AB88199C3848 (int32_t ___onTop0, int32_t ___headLocked1, intptr_t ___texture2, intptr_t ___device3, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___pose4, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___scale5, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, intptr_t, intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(intptr_t) + sizeof(intptr_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ) + sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetOverlayQuad2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetOverlayQuad2)(___onTop0, ___headLocked1, ___texture2, ___device3, ___pose4, ___scale5); #else int32_t returnValue = il2cppPInvokeFunc(___onTop0, ___headLocked1, ___texture2, ___device3, ___pose4, ___scale5); #endif return returnValue; } // System.Void OVRPlugin/OVRP_0_1_1::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_0_1_1__cctor_mC82E9CA467FB79688D873765CB120D1455D07AB4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_0_1_1_tDBA6AC71AD154F15B030DA727A007698955CAC35_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(0, 1, 1); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 0, 1, 1, /*hidden argument*/NULL); ((OVRP_0_1_1_tDBA6AC71AD154F15B030DA727A007698955CAC35_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_0_1_1_tDBA6AC71AD154F15B030DA727A007698955CAC35_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Posef OVRPlugin/OVRP_0_1_2::ovrp_GetNodePose(OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 OVRP_0_1_2_ovrp_GetNodePose_m505A921B953664F701C4E1E9F5849CDA8ED64994 (int32_t ___nodeId0, const RuntimeMethod* method) { typedef Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = reinterpret_cast(ovrp_GetNodePose)(___nodeId0); #else Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = il2cppPInvokeFunc(___nodeId0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_0_1_2::ovrp_SetControllerVibration(System.UInt32,System.Single,System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_0_1_2_ovrp_SetControllerVibration_mDE4B45370D02F2BB802B558435E59C77C733A8A6 (uint32_t ___controllerMask0, float ___frequency1, float ___amplitude2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t, float, float); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(float) + sizeof(float); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetControllerVibration", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetControllerVibration)(___controllerMask0, ___frequency1, ___amplitude2); #else int32_t returnValue = il2cppPInvokeFunc(___controllerMask0, ___frequency1, ___amplitude2); #endif return returnValue; } // System.Void OVRPlugin/OVRP_0_1_2::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_0_1_2__cctor_m305FFB775517DD102A35FB73013F11420E9EF5A3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_0_1_2_t9F1777A7676D69850A9FCE246B828AF39B37B21F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(0, 1, 2); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 0, 1, 2, /*hidden argument*/NULL); ((OVRP_0_1_2_t9F1777A7676D69850A9FCE246B828AF39B37B21F_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_0_1_2_t9F1777A7676D69850A9FCE246B828AF39B37B21F_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Posef OVRPlugin/OVRP_0_1_3::ovrp_GetNodeVelocity(OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 OVRP_0_1_3_ovrp_GetNodeVelocity_m33B274978EFEA7F557C85A35364E1856EF40920D (int32_t ___nodeId0, const RuntimeMethod* method) { typedef Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeVelocity", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = reinterpret_cast(ovrp_GetNodeVelocity)(___nodeId0); #else Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = il2cppPInvokeFunc(___nodeId0); #endif return returnValue; } // OVRPlugin/Posef OVRPlugin/OVRP_0_1_3::ovrp_GetNodeAcceleration(OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 OVRP_0_1_3_ovrp_GetNodeAcceleration_mB946A14B23F630D62348130837B9E88C5F73816A (int32_t ___nodeId0, const RuntimeMethod* method) { typedef Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeAcceleration", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = reinterpret_cast(ovrp_GetNodeAcceleration)(___nodeId0); #else Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = il2cppPInvokeFunc(___nodeId0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_0_1_3::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_0_1_3__cctor_mFEEA729C507ABDBE6E3DEE318F2042C4C65853F8 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_0_1_3_t02842C0873561109CAACB9DFB89EA536B03CE6DB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(0, 1, 3); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 0, 1, 3, /*hidden argument*/NULL); ((OVRP_0_1_3_t02842C0873561109CAACB9DFB89EA536B03CE6DB_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_0_1_3_t02842C0873561109CAACB9DFB89EA536B03CE6DB_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_0_5_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_0_5_0__cctor_m370C0097B43E2DDABCE69F434CB235FFD5C6FC54 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_0_5_0_tC3F2B3F8B4CB16E8BA1CBF6523368CD534A8FC6B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(0, 5, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 0, 5, 0, /*hidden argument*/NULL); ((OVRP_0_5_0_tC3F2B3F8B4CB16E8BA1CBF6523368CD534A8FC6B_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_0_5_0_tC3F2B3F8B4CB16E8BA1CBF6523368CD534A8FC6B_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/TrackingOrigin OVRPlugin/OVRP_1_0_0::ovrp_GetTrackingOriginType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_0_0_ovrp_GetTrackingOriginType_m8853C2ACE4993C6EB72B5ACA0DF75D1586DECF1B (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingOriginType", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingOriginType)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_0_0::ovrp_SetTrackingOriginType(OVRPlugin/TrackingOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_0_0_ovrp_SetTrackingOriginType_m65AA2ECDD071619729B50C49CDAEB0AD26BC53C7 (int32_t ___originType0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetTrackingOriginType", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetTrackingOriginType)(___originType0); #else int32_t returnValue = il2cppPInvokeFunc(___originType0); #endif return returnValue; } // OVRPlugin/Posef OVRPlugin/OVRP_1_0_0::ovrp_GetTrackingCalibratedOrigin() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 OVRP_1_0_0_ovrp_GetTrackingCalibratedOrigin_m4724009D70D4D403572B8B549EFC9D6F38634446 (const RuntimeMethod* method) { typedef Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingCalibratedOrigin", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = reinterpret_cast(ovrp_GetTrackingCalibratedOrigin)(); #else Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_0_0::ovrp_RecenterTrackingOrigin(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_0_0_ovrp_RecenterTrackingOrigin_mA5537A157A2E0AB2073022B7C557A244264C8E47 (uint32_t ___flags0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_RecenterTrackingOrigin", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_RecenterTrackingOrigin)(___flags0); #else int32_t returnValue = il2cppPInvokeFunc(___flags0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_0_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_0_0__cctor_mFB1DB1D259B622EC9823297C7745C2C377DBE68D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_0_0_t7A7165DD6675CECD30E91119E2C52E21FE6511EA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 0, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 0, 0, /*hidden argument*/NULL); ((OVRP_1_0_0_t7A7165DD6675CECD30E91119E2C52E21FE6511EA_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_0_0_t7A7165DD6675CECD30E91119E2C52E21FE6511EA_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_10_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_10_0__cctor_m2ED636D21274939A27A6BFA8A1BE85578DF54DF7 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_10_0_t0DB86A7DDD12A1BA29B958F15F2D2BEA2B8ACA78_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 10, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)10), 0, /*hidden argument*/NULL); ((OVRP_1_10_0_t0DB86A7DDD12A1BA29B958F15F2D2BEA2B8ACA78_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_10_0_t0DB86A7DDD12A1BA29B958F15F2D2BEA2B8ACA78_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_1_11_0::ovrp_SetDesiredEyeTextureFormat(OVRPlugin/EyeTextureFormat) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_11_0_ovrp_SetDesiredEyeTextureFormat_mC1C4CE698F8A312FE263C00EE1EC33E6CDB0D15E (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetDesiredEyeTextureFormat", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetDesiredEyeTextureFormat)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/EyeTextureFormat OVRPlugin/OVRP_1_11_0::ovrp_GetDesiredEyeTextureFormat() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_11_0_ovrp_GetDesiredEyeTextureFormat_mEC79286F824DDCBA675A04A9538F52034606806D (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetDesiredEyeTextureFormat", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetDesiredEyeTextureFormat)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_11_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_11_0__cctor_m2C92CAAF1E9DCFCE8969DE57FE580141412795AC (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_11_0_t78D9B40FC078D1401B97BAF10425F4FD166FF515_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 11, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)11), 0, /*hidden argument*/NULL); ((OVRP_1_11_0_t78D9B40FC078D1401B97BAF10425F4FD166FF515_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_11_0_t78D9B40FC078D1401B97BAF10425F4FD166FF515_il2cpp_TypeInfo_var))->set_version_0(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.Single OVRPlugin/OVRP_1_12_0::ovrp_GetAppFramerate() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_12_0_ovrp_GetAppFramerate_mC0218F765A50FDDC959ACF4980FC907C9C2D012A (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppFramerate", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetAppFramerate)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/PoseStatef OVRPlugin/OVRP_1_12_0::ovrp_GetNodePoseState(OVRPlugin/Step,OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 OVRP_1_12_0_ovrp_GetNodePoseState_mF1A7E7A82D63035CA55BB466B2833767F8235C18 (int32_t ___stepId0, int32_t ___nodeId1, const RuntimeMethod* method) { typedef PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePoseState", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 returnValue = reinterpret_cast(ovrp_GetNodePoseState)(___stepId0, ___nodeId1); #else PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 returnValue = il2cppPInvokeFunc(___stepId0, ___nodeId1); #endif return returnValue; } // OVRPlugin/ControllerState2 OVRPlugin/OVRP_1_12_0::ovrp_GetControllerState2(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C OVRP_1_12_0_ovrp_GetControllerState2_m0B27744998870DCCD517C1DECA64F3DD327F50CA (uint32_t ___controllerMask0, const RuntimeMethod* method) { typedef ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C (CDECL *PInvokeFunc) (uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetControllerState2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C returnValue = reinterpret_cast(ovrp_GetControllerState2)(___controllerMask0); #else ControllerState2_tCC86CC6786A5412F00F6069AE11423117C5E582C returnValue = il2cppPInvokeFunc(___controllerMask0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_12_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_12_0__cctor_m6CFEEB83F32B99D711E609269C2DA8F2D7D554ED (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_12_0_tED05232B37787981D9EFBC2FF6D9B09B63F179E8_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 12, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)12), 0, /*hidden argument*/NULL); ((OVRP_1_12_0_tED05232B37787981D9EFBC2FF6D9B09B63F179E8_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_12_0_tED05232B37787981D9EFBC2FF6D9B09B63F179E8_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_InitializeMixedReality() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_InitializeMixedReality_m9A861F5AA0B74BDE4E481590305F0DF03FFE3068 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_InitializeMixedReality", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_InitializeMixedReality)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_ShutdownMixedReality() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_ShutdownMixedReality_m84003F52C6505FF9F35707A88BDFD81EAFC5E687 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_ShutdownMixedReality", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_ShutdownMixedReality)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_15_0::ovrp_GetMixedRealityInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetMixedRealityInitialized_m76D25B1FE66BC86AAA12D199AC047ED662E1BDB0 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetMixedRealityInitialized", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetMixedRealityInitialized)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_UpdateExternalCamera() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_UpdateExternalCamera_m7B2584258993A4C391500D12AA9E44EBCDF69870 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_UpdateExternalCamera", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_UpdateExternalCamera)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_GetExternalCameraCount(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetExternalCameraCount_m609ED3312C5D2E7E585CDD3268AED23F99EFDFD7 (int32_t* ___cameraCount0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetExternalCameraCount", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetExternalCameraCount)(___cameraCount0); #else int32_t returnValue = il2cppPInvokeFunc(___cameraCount0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_GetExternalCameraName(System.Int32,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetExternalCameraName_m6BE63A49383EFDFA232D25C57F5CAC423D69CFD0 (int32_t ___cameraId0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___cameraName1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, uint8_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(void*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetExternalCameraName", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___cameraName1' to native representation uint8_t* ____cameraName1_marshaled = NULL; if (___cameraName1 != NULL) { il2cpp_array_size_t ____cameraName1_Length = (___cameraName1)->max_length; ____cameraName1_marshaled = il2cpp_codegen_marshal_allocate_array(____cameraName1_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(____cameraName1_Length); i++) { (____cameraName1_marshaled)[i] = static_cast((___cameraName1)->GetAtUnchecked(static_cast(i))); } } else { ____cameraName1_marshaled = NULL; } // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetExternalCameraName)(___cameraId0, ____cameraName1_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(___cameraId0, ____cameraName1_marshaled); #endif // Marshaling cleanup of parameter '___cameraName1' native representation if (____cameraName1_marshaled != NULL) { il2cpp_codegen_marshal_free(____cameraName1_marshaled); ____cameraName1_marshaled = NULL; } return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_GetExternalCameraIntrinsics(System.Int32,OVRPlugin/CameraIntrinsics&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetExternalCameraIntrinsics_m944EA94FA6623BBCED99E23B1247EFB15E94A1AD (int32_t ___cameraId0, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA * ___cameraIntrinsics1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetExternalCameraIntrinsics", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetExternalCameraIntrinsics)(___cameraId0, ___cameraIntrinsics1); #else int32_t returnValue = il2cppPInvokeFunc(___cameraId0, ___cameraIntrinsics1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_GetExternalCameraExtrinsics(System.Int32,OVRPlugin/CameraExtrinsics&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetExternalCameraExtrinsics_m0C0B761C3A446556B8372B1ABB2D569CA43F0B2E (int32_t ___cameraId0, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF * ___cameraExtrinsics1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetExternalCameraExtrinsics", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetExternalCameraExtrinsics)(___cameraId0, ___cameraExtrinsics1); #else int32_t returnValue = il2cppPInvokeFunc(___cameraId0, ___cameraExtrinsics1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_CalculateLayerDesc(OVRPlugin/OverlayShape,OVRPlugin/LayerLayout,OVRPlugin/Sizei&,System.Int32,System.Int32,OVRPlugin/EyeTextureFormat,System.Int32,OVRPlugin/LayerDesc&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_CalculateLayerDesc_m198585C4663617CA2FC1CBEE620A1B8E1C9874D7 (int32_t ___shape0, int32_t ___layout1, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * ___textureSize2, int32_t ___mipLevels3, int32_t ___sampleCount4, int32_t ___format5, int32_t ___layerFlags6, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 * ___layerDesc7, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *, int32_t, int32_t, int32_t, int32_t, LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *) + sizeof(int32_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_CalculateLayerDesc", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___layerDesc7' to native representation LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke* ____layerDesc7_marshaled = NULL; LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke ____layerDesc7_marshaled_dereferenced = {}; LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke(*___layerDesc7, ____layerDesc7_marshaled_dereferenced); ____layerDesc7_marshaled = &____layerDesc7_marshaled_dereferenced; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_CalculateLayerDesc)(___shape0, ___layout1, ___textureSize2, ___mipLevels3, ___sampleCount4, ___format5, ___layerFlags6, ____layerDesc7_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(___shape0, ___layout1, ___textureSize2, ___mipLevels3, ___sampleCount4, ___format5, ___layerFlags6, ____layerDesc7_marshaled); #endif // Marshaling of parameter '___layerDesc7' back from native representation LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 _____layerDesc7_marshaled_unmarshaled_dereferenced; memset((&_____layerDesc7_marshaled_unmarshaled_dereferenced), 0, sizeof(_____layerDesc7_marshaled_unmarshaled_dereferenced)); LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_back(*____layerDesc7_marshaled, _____layerDesc7_marshaled_unmarshaled_dereferenced); LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_cleanup(*____layerDesc7_marshaled); *___layerDesc7 = _____layerDesc7_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___layerDesc7)->___Fov_7), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___layerDesc7)->___VisibleRect_8), (void*)NULL); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_EnqueueSetupLayer(OVRPlugin/LayerDesc&,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_EnqueueSetupLayer_m306C683CB8D72197457E7FFBB572E0232848C06A (LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 * ___desc0, intptr_t ___layerId1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*, intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*) + sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_EnqueueSetupLayer", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___desc0' to native representation LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke* ____desc0_marshaled = NULL; LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke ____desc0_marshaled_dereferenced = {}; LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke(*___desc0, ____desc0_marshaled_dereferenced); ____desc0_marshaled = &____desc0_marshaled_dereferenced; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_EnqueueSetupLayer)(____desc0_marshaled, ___layerId1); #else int32_t returnValue = il2cppPInvokeFunc(____desc0_marshaled, ___layerId1); #endif // Marshaling of parameter '___desc0' back from native representation LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 _____desc0_marshaled_unmarshaled_dereferenced; memset((&_____desc0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____desc0_marshaled_unmarshaled_dereferenced)); LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_back(*____desc0_marshaled, _____desc0_marshaled_unmarshaled_dereferenced); LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_cleanup(*____desc0_marshaled); *___desc0 = _____desc0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___desc0)->___Fov_7), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___desc0)->___VisibleRect_8), (void*)NULL); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_EnqueueDestroyLayer(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_EnqueueDestroyLayer_mD173E11F7128444E617A32F95C6A56B19266AE0B (intptr_t ___layerId0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_EnqueueDestroyLayer", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_EnqueueDestroyLayer)(___layerId0); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_GetLayerTextureStageCount(System.Int32,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetLayerTextureStageCount_mEE0D2AF0DAD856FF6647F1877F7B1B2486FDA667 (int32_t ___layerId0, int32_t* ___layerTextureStageCount1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetLayerTextureStageCount", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetLayerTextureStageCount)(___layerId0, ___layerTextureStageCount1); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0, ___layerTextureStageCount1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_GetLayerTexturePtr(System.Int32,System.Int32,OVRPlugin/Eye,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetLayerTexturePtr_m340743B269CEA12A0594C8F7AE261DCEA484029D (int32_t ___layerId0, int32_t ___stage1, int32_t ___eyeId2, intptr_t* ___textureHandle3, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, int32_t, intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetLayerTexturePtr", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetLayerTexturePtr)(___layerId0, ___stage1, ___eyeId2, ___textureHandle3); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0, ___stage1, ___eyeId2, ___textureHandle3); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_EnqueueSubmitLayer(System.UInt32,System.IntPtr,System.IntPtr,System.Int32,System.Int32,OVRPlugin/Posef&,OVRPlugin/Vector3f&,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_EnqueueSubmitLayer_m980462D9F4A07FE1566B09BB3976775B096EDFBA (uint32_t ___flags0, intptr_t ___textureLeft1, intptr_t ___textureRight2, int32_t ___layerId3, int32_t ___frameIndex4, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___pose5, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * ___scale6, int32_t ___layerIndex7, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t, intptr_t, intptr_t, int32_t, int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(intptr_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *) + sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_EnqueueSubmitLayer", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_EnqueueSubmitLayer)(___flags0, ___textureLeft1, ___textureRight2, ___layerId3, ___frameIndex4, ___pose5, ___scale6, ___layerIndex7); #else int32_t returnValue = il2cppPInvokeFunc(___flags0, ___textureLeft1, ___textureRight2, ___layerId3, ___frameIndex4, ___pose5, ___scale6, ___layerIndex7); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_15_0::ovrp_GetNodeFrustum2(OVRPlugin/Node,OVRPlugin/Frustumf2&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetNodeFrustum2_mAE84CD9E18436B1D74694143F81050A9E430C939 (int32_t ___nodeId0, Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA * ___nodeFrustum1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Frustumf2_tC9BC49D38B65DCF27D06B910BB4FF3AF31CB38EA *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeFrustum2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodeFrustum2)(___nodeId0, ___nodeFrustum1); #else int32_t returnValue = il2cppPInvokeFunc(___nodeId0, ___nodeFrustum1); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_15_0::ovrp_GetEyeTextureArrayEnabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_15_0_ovrp_GetEyeTextureArrayEnabled_m847CA7878D4766AB3D316DA319696852A93DF4CA (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetEyeTextureArrayEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetEyeTextureArrayEnabled)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_15_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_15_0__cctor_m33E239E2FC3C8AAE7755A89DC6AD49A28B7C8F74 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_15_0_t33D48C3749C0197D1B6487D5D5AAF37377115C91_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 15, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)15), 0, /*hidden argument*/NULL); ((OVRP_1_15_0_t33D48C3749C0197D1B6487D5D5AAF37377115C91_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_15_0_t33D48C3749C0197D1B6487D5D5AAF37377115C91_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_16_0::ovrp_UpdateCameraDevices() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_UpdateCameraDevices_m63D74BB8A1DE1B8103E91B87A1CC40241697D5B0 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_UpdateCameraDevices", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_UpdateCameraDevices)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_16_0::ovrp_IsCameraDeviceAvailable(OVRPlugin/CameraDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_IsCameraDeviceAvailable_mB9F10528F2A383CD23087A96E8E553F0E67072E0 (int32_t ___cameraDevice0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_IsCameraDeviceAvailable", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_IsCameraDeviceAvailable)(___cameraDevice0); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_16_0::ovrp_SetCameraDevicePreferredColorFrameSize(OVRPlugin/CameraDevice,OVRPlugin/Sizei) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_SetCameraDevicePreferredColorFrameSize_mFCADDD92862A4195884F6F23EE8CCC3C97104354 (int32_t ___cameraDevice0, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___preferredColorFrameSize1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetCameraDevicePreferredColorFrameSize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetCameraDevicePreferredColorFrameSize)(___cameraDevice0, ___preferredColorFrameSize1); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0, ___preferredColorFrameSize1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_16_0::ovrp_OpenCameraDevice(OVRPlugin/CameraDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_OpenCameraDevice_m25EB1FFAF3559B6BCA8FAA83AA2E9263F038803A (int32_t ___cameraDevice0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_OpenCameraDevice", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_OpenCameraDevice)(___cameraDevice0); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_16_0::ovrp_CloseCameraDevice(OVRPlugin/CameraDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_CloseCameraDevice_m5FF85702609CB1E44A5469A706AC42A86C6328EA (int32_t ___cameraDevice0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_CloseCameraDevice", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_CloseCameraDevice)(___cameraDevice0); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_16_0::ovrp_HasCameraDeviceOpened(OVRPlugin/CameraDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_HasCameraDeviceOpened_mFE9025323D90DAD77FC7B74386AE1F7C2D66FAF3 (int32_t ___cameraDevice0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_HasCameraDeviceOpened", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_HasCameraDeviceOpened)(___cameraDevice0); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_16_0::ovrp_IsCameraDeviceColorFrameAvailable(OVRPlugin/CameraDevice) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_IsCameraDeviceColorFrameAvailable_m1E0196769B3AAA2FE0BEA84A2A683A340B4363A0 (int32_t ___cameraDevice0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_IsCameraDeviceColorFrameAvailable", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_IsCameraDeviceColorFrameAvailable)(___cameraDevice0); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_16_0::ovrp_GetCameraDeviceColorFrameSize(OVRPlugin/CameraDevice,OVRPlugin/Sizei&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_GetCameraDeviceColorFrameSize_m752D33DDDE6C779DB12B96AA53DA5F30E918C0D5 (int32_t ___cameraDevice0, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * ___colorFrameSize1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDeviceColorFrameSize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDeviceColorFrameSize)(___cameraDevice0, ___colorFrameSize1); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0, ___colorFrameSize1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_16_0::ovrp_GetCameraDeviceColorFrameBgraPixels(OVRPlugin/CameraDevice,System.IntPtr&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_GetCameraDeviceColorFrameBgraPixels_m6CE08D37ECC6B177A88813879BB54F4EE56CC1B8 (int32_t ___cameraDevice0, intptr_t* ___colorFrameBgraPixels1, int32_t* ___colorFrameRowPitch2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, intptr_t*, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(intptr_t*) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDeviceColorFrameBgraPixels", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDeviceColorFrameBgraPixels)(___cameraDevice0, ___colorFrameBgraPixels1, ___colorFrameRowPitch2); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0, ___colorFrameBgraPixels1, ___colorFrameRowPitch2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_16_0::ovrp_GetControllerState4(System.UInt32,OVRPlugin/ControllerState4&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_16_0_ovrp_GetControllerState4_m1DDA78CC21C7695D2CEEE0F353561CB1D2D4BC2C (uint32_t ___controllerMask0, ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE * ___controllerState1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t, ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(ControllerState4_t9EE0F6F3818537037265284389D084C40E41E1FE *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetControllerState4", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetControllerState4)(___controllerMask0, ___controllerState1); #else int32_t returnValue = il2cppPInvokeFunc(___controllerMask0, ___controllerState1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_16_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_16_0__cctor_m393891BDAB920409F692C78C11E864EE86C2F83C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_16_0_tA9EB48CC4CAB14D7009355FA1AA70D079D7F924C_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 16, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)16), 0, /*hidden argument*/NULL); ((OVRP_1_16_0_tA9EB48CC4CAB14D7009355FA1AA70D079D7F924C_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_16_0_tA9EB48CC4CAB14D7009355FA1AA70D079D7F924C_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_GetExternalCameraPose(OVRPlugin/CameraDevice,OVRPlugin/Posef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_GetExternalCameraPose_m47742823645F64A7ADFB15C91AA75D56E673FEDA (int32_t ___camera0, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___cameraPose1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetExternalCameraPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetExternalCameraPose)(___camera0, ___cameraPose1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___cameraPose1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_ConvertPoseToCameraSpace(OVRPlugin/CameraDevice,OVRPlugin/Posef&,OVRPlugin/Posef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_ConvertPoseToCameraSpace_mCD936FC7B34A04CBB710B8652860DEFA3A71E421 (int32_t ___camera0, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___trackingSpacePose1, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___cameraSpacePose2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_ConvertPoseToCameraSpace", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_ConvertPoseToCameraSpace)(___camera0, ___trackingSpacePose1, ___cameraSpacePose2); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___trackingSpacePose1, ___cameraSpacePose2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_GetCameraDeviceIntrinsicsParameters(OVRPlugin/CameraDevice,OVRPlugin/Bool&,OVRPlugin/CameraDeviceIntrinsicsParameters&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_GetCameraDeviceIntrinsicsParameters_m68B2B7CF6D6EFBFDBAAFC3682CD481E126C50C2F (int32_t ___camera0, int32_t* ___supportIntrinsics1, CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5 * ___intrinsicsParameters2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*, CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*) + sizeof(CameraDeviceIntrinsicsParameters_t2C854ECAF08DDB03D5C07A6733C36225BA779FC5 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDeviceIntrinsicsParameters", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDeviceIntrinsicsParameters)(___camera0, ___supportIntrinsics1, ___intrinsicsParameters2); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___supportIntrinsics1, ___intrinsicsParameters2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_DoesCameraDeviceSupportDepth(OVRPlugin/CameraDevice,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_DoesCameraDeviceSupportDepth_mBA76C15945A49B75DCCE2A88FE32A59B7826D86E (int32_t ___camera0, int32_t* ___supportDepth1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_DoesCameraDeviceSupportDepth", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_DoesCameraDeviceSupportDepth)(___camera0, ___supportDepth1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___supportDepth1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_GetCameraDeviceDepthSensingMode(OVRPlugin/CameraDevice,OVRPlugin/CameraDeviceDepthSensingMode&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_GetCameraDeviceDepthSensingMode_m67080C4B2FA63B5E9D1C053C0042EB9CC67233E9 (int32_t ___camera0, int32_t* ___depthSensoringMode1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDeviceDepthSensingMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDeviceDepthSensingMode)(___camera0, ___depthSensoringMode1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___depthSensoringMode1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_SetCameraDeviceDepthSensingMode(OVRPlugin/CameraDevice,OVRPlugin/CameraDeviceDepthSensingMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_SetCameraDeviceDepthSensingMode_m6BEBA6600DA38D270C730BC4AB6BECC5A7826A22 (int32_t ___camera0, int32_t ___depthSensoringMode1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetCameraDeviceDepthSensingMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetCameraDeviceDepthSensingMode)(___camera0, ___depthSensoringMode1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___depthSensoringMode1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_GetCameraDevicePreferredDepthQuality(OVRPlugin/CameraDevice,OVRPlugin/CameraDeviceDepthQuality&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_GetCameraDevicePreferredDepthQuality_m1DA505E3B9614F39FA3C343F10BCCB6096A43CD8 (int32_t ___camera0, int32_t* ___depthQuality1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDevicePreferredDepthQuality", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDevicePreferredDepthQuality)(___camera0, ___depthQuality1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___depthQuality1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_SetCameraDevicePreferredDepthQuality(OVRPlugin/CameraDevice,OVRPlugin/CameraDeviceDepthQuality) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_SetCameraDevicePreferredDepthQuality_mF1C3F1DC43309990DA1B8C94A1D55C7ABAD0A553 (int32_t ___camera0, int32_t ___depthQuality1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetCameraDevicePreferredDepthQuality", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetCameraDevicePreferredDepthQuality)(___camera0, ___depthQuality1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___depthQuality1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_IsCameraDeviceDepthFrameAvailable(OVRPlugin/CameraDevice,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_IsCameraDeviceDepthFrameAvailable_m2A24DB4BD6F4B1F785612AB87966B45EFC1640D1 (int32_t ___camera0, int32_t* ___available1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_IsCameraDeviceDepthFrameAvailable", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_IsCameraDeviceDepthFrameAvailable)(___camera0, ___available1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___available1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_GetCameraDeviceDepthFrameSize(OVRPlugin/CameraDevice,OVRPlugin/Sizei&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_GetCameraDeviceDepthFrameSize_m7FE6F8FB1C24DE678E894C0A21F2C7E49653F36D (int32_t ___camera0, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * ___depthFrameSize1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDeviceDepthFrameSize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDeviceDepthFrameSize)(___camera0, ___depthFrameSize1); #else int32_t returnValue = il2cppPInvokeFunc(___camera0, ___depthFrameSize1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_GetCameraDeviceDepthFramePixels(OVRPlugin/CameraDevice,System.IntPtr&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_GetCameraDeviceDepthFramePixels_m5B1711CBF410B49125C8CA28B87EC1DDA1EDB5CA (int32_t ___cameraDevice0, intptr_t* ___depthFramePixels1, int32_t* ___depthFrameRowPitch2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, intptr_t*, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(intptr_t*) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDeviceDepthFramePixels", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDeviceDepthFramePixels)(___cameraDevice0, ___depthFramePixels1, ___depthFrameRowPitch2); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0, ___depthFramePixels1, ___depthFrameRowPitch2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_17_0::ovrp_GetCameraDeviceDepthConfidencePixels(OVRPlugin/CameraDevice,System.IntPtr&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_17_0_ovrp_GetCameraDeviceDepthConfidencePixels_mF5C5A21C77E707EF088FC71353159A24311DD3B1 (int32_t ___cameraDevice0, intptr_t* ___depthConfidencePixels1, int32_t* ___depthConfidenceRowPitch2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, intptr_t*, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(intptr_t*) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCameraDeviceDepthConfidencePixels", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCameraDeviceDepthConfidencePixels)(___cameraDevice0, ___depthConfidencePixels1, ___depthConfidenceRowPitch2); #else int32_t returnValue = il2cppPInvokeFunc(___cameraDevice0, ___depthConfidencePixels1, ___depthConfidenceRowPitch2); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_17_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_17_0__cctor_m707EAA833D4D780FC536776C94A0DA497CB6C4E1 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_17_0_t04D4429D59A774AB70E76FCB013083375ACDA6A5_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 17, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)17), 0, /*hidden argument*/NULL); ((OVRP_1_17_0_t04D4429D59A774AB70E76FCB013083375ACDA6A5_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_17_0_t04D4429D59A774AB70E76FCB013083375ACDA6A5_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_18_0::ovrp_SetHandNodePoseStateLatency(System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_18_0_ovrp_SetHandNodePoseStateLatency_m23006D552CDD71D441772565D382B8537E16B06B (double ___latencyInSeconds0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (double); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(double); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetHandNodePoseStateLatency", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetHandNodePoseStateLatency)(___latencyInSeconds0); #else int32_t returnValue = il2cppPInvokeFunc(___latencyInSeconds0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_18_0::ovrp_GetHandNodePoseStateLatency(System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_18_0_ovrp_GetHandNodePoseStateLatency_mA65CE0B1D56443D75C39F3E88A8A22E2FBB5D6D9 (double* ___latencyInSeconds0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (double*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(double*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetHandNodePoseStateLatency", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetHandNodePoseStateLatency)(___latencyInSeconds0); #else int32_t returnValue = il2cppPInvokeFunc(___latencyInSeconds0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_18_0::ovrp_GetAppHasInputFocus(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_18_0_ovrp_GetAppHasInputFocus_mBD5F77ECA6501D827D432D3EC831CC3BD030707C (int32_t* ___appHasInputFocus0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppHasInputFocus", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAppHasInputFocus)(___appHasInputFocus0); #else int32_t returnValue = il2cppPInvokeFunc(___appHasInputFocus0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_18_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_18_0__cctor_mB4A05F9D00C75AE64C18F6FCB57C2E0B101B8C56 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_18_0_t6554FAD6B9EF4306F89E47B14D3D2FFF0759B4D0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 18, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)18), 0, /*hidden argument*/NULL); ((OVRP_1_18_0_t6554FAD6B9EF4306F89E47B14D3D2FFF0759B4D0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_18_0_t6554FAD6B9EF4306F89E47B14D3D2FFF0759B4D0_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_19_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_19_0__cctor_m474543E3EED0B5A65A10A7BD7F279CC7C4F739DB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_19_0_tE0652374D565ADA545D322BA86725747DD2C0F18_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 19, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)19), 0, /*hidden argument*/NULL); ((OVRP_1_19_0_tE0652374D565ADA545D322BA86725747DD2C0F18_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_19_0_tE0652374D565ADA545D322BA86725747DD2C0F18_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetInitialized_m1936FC46AA22397F70B5C188B329FF0CBC851FFF (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetInitialized", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetInitialized)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetVersion_m031181476D3DCD437BDB8B02A6A3FA99203EF8D2 (const RuntimeMethod* method) { typedef intptr_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetVersion", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL intptr_t returnValue = reinterpret_cast(ovrp_GetVersion)(); #else intptr_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.String OVRPlugin/OVRP_1_1_0::ovrp_GetVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OVRP_1_1_0_ovrp_GetVersion_mEBD129025613AE968421BA949172336EFC6373FF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static string ovrp_GetVersion() { return Marshal.PtrToStringAnsi(_ovrp_GetVersion()); } IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); intptr_t L_0; L_0 = OVRP_1_1_0__ovrp_GetVersion_m031181476D3DCD437BDB8B02A6A3FA99203EF8D2(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Marshal_PtrToStringAnsi_m8A04D9B38C53580B609A2A3179BDAA28FEC85F0E((intptr_t)L_0, /*hidden argument*/NULL); return L_1; } } // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetNativeSDKVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetNativeSDKVersion_m30FB184CF14ECACC30D3E7776D095B0C21D11FF4 (const RuntimeMethod* method) { typedef intptr_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNativeSDKVersion", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL intptr_t returnValue = reinterpret_cast(ovrp_GetNativeSDKVersion)(); #else intptr_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.String OVRPlugin/OVRP_1_1_0::ovrp_GetNativeSDKVersion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OVRP_1_1_0_ovrp_GetNativeSDKVersion_m7BE951E7FF7464EA829ACD4026D48B19FAB12880 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static string ovrp_GetNativeSDKVersion() { return Marshal.PtrToStringAnsi(_ovrp_GetNativeSDKVersion()); } IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); intptr_t L_0; L_0 = OVRP_1_1_0__ovrp_GetNativeSDKVersion_m30FB184CF14ECACC30D3E7776D095B0C21D11FF4(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Marshal_PtrToStringAnsi_m8A04D9B38C53580B609A2A3179BDAA28FEC85F0E((intptr_t)L_0, /*hidden argument*/NULL); return L_1; } } // System.IntPtr OVRPlugin/OVRP_1_1_0::ovrp_GetAudioOutId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0_ovrp_GetAudioOutId_m6C3A0A772E970EB07B148EA5D17724AA15EE1D32 (const RuntimeMethod* method) { typedef intptr_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAudioOutId", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL intptr_t returnValue = reinterpret_cast(ovrp_GetAudioOutId)(); #else intptr_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.IntPtr OVRPlugin/OVRP_1_1_0::ovrp_GetAudioInId() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0_ovrp_GetAudioInId_mFF3B457D4D709C63CFCAA66C8D47B3318AF5C40D (const RuntimeMethod* method) { typedef intptr_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAudioInId", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL intptr_t returnValue = reinterpret_cast(ovrp_GetAudioInId)(); #else intptr_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetEyeTextureScale() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetEyeTextureScale_m6A4DAC60195F2627030C4D7294CDED6387B467F9 (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetEyeTextureScale", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetEyeTextureScale)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetEyeTextureScale(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetEyeTextureScale_mD9518CEE29B361E477B7999EA198AF93C90A8101 (float ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetEyeTextureScale", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetEyeTextureScale)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetTrackingOrientationSupported() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetTrackingOrientationSupported_mECCB7157FAA60DDCA19AC49BEEB983BAD85C2AF4 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingOrientationSupported", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingOrientationSupported)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetTrackingOrientationEnabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetTrackingOrientationEnabled_m5BB35E8A2892700E37DE14F624F050F862278C4C (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingOrientationEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingOrientationEnabled)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetTrackingOrientationEnabled(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetTrackingOrientationEnabled_m0B60D6AFE4C6B3BA88F13C92EC63AEF1DFCF324D (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetTrackingOrientationEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetTrackingOrientationEnabled)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetTrackingPositionSupported() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetTrackingPositionSupported_m5A2C0C677F5D92E9401E7F4742DBB409747098B2 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingPositionSupported", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingPositionSupported)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetTrackingPositionEnabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetTrackingPositionEnabled_m7107B85DDCC0D5C72B1F1704285316E660732D03 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingPositionEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingPositionEnabled)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetTrackingPositionEnabled(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetTrackingPositionEnabled_m4AFC478BA288E64DA9A929B32FE940D39167E315 (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetTrackingPositionEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetTrackingPositionEnabled)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetNodePresent(OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetNodePresent_mD21CFFC3E7E78B7F5F364CD64C91BA1FA26B0BFC (int32_t ___nodeId0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePresent", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodePresent)(___nodeId0); #else int32_t returnValue = il2cppPInvokeFunc(___nodeId0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetNodeOrientationTracked(OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetNodeOrientationTracked_m8126AC549167631BB95E79F9E24D2C838B31CA86 (int32_t ___nodeId0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeOrientationTracked", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodeOrientationTracked)(___nodeId0); #else int32_t returnValue = il2cppPInvokeFunc(___nodeId0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetNodePositionTracked(OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetNodePositionTracked_m6037C2A23BA2A8AB4BFEB030CB914253C520A7E9 (int32_t ___nodeId0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePositionTracked", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodePositionTracked)(___nodeId0); #else int32_t returnValue = il2cppPInvokeFunc(___nodeId0); #endif return returnValue; } // OVRPlugin/Frustumf OVRPlugin/OVRP_1_1_0::ovrp_GetNodeFrustum(OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F OVRP_1_1_0_ovrp_GetNodeFrustum_m8B4A4F1AEDC33B01AF917C995E948CD1C151680C (int32_t ___nodeId0, const RuntimeMethod* method) { typedef Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeFrustum", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F returnValue = reinterpret_cast(ovrp_GetNodeFrustum)(___nodeId0); #else Frustumf_tE86F2748A7E52D2600C7F9F2A462260423C6E79F returnValue = il2cppPInvokeFunc(___nodeId0); #endif return returnValue; } // OVRPlugin/ControllerState OVRPlugin/OVRP_1_1_0::ovrp_GetControllerState(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 OVRP_1_1_0_ovrp_GetControllerState_mBB23558282F245ECF0E7FFCABF46CC69A3EF3EED (uint32_t ___controllerMask0, const RuntimeMethod* method) { typedef ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 (CDECL *PInvokeFunc) (uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetControllerState", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 returnValue = reinterpret_cast(ovrp_GetControllerState)(___controllerMask0); #else ControllerState_t699A6C8C369BF424A907C29DB8CF32B8080F6E24 returnValue = il2cppPInvokeFunc(___controllerMask0); #endif return returnValue; } // System.Int32 OVRPlugin/OVRP_1_1_0::ovrp_GetSystemCpuLevel() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetSystemCpuLevel_mDCA361B104A5BDC50C0EF3A28234E889F043FB07 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemCpuLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemCpuLevel)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetSystemCpuLevel(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetSystemCpuLevel_mDB3510833AFC7E5D612CC095B83F0EF3EAD5AE6C (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetSystemCpuLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetSystemCpuLevel)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // System.Int32 OVRPlugin/OVRP_1_1_0::ovrp_GetSystemGpuLevel() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetSystemGpuLevel_m9E5762BB0ACDE89C99549C53256BF785100AFBB5 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemGpuLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemGpuLevel)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetSystemGpuLevel(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetSystemGpuLevel_m626D7818DDFD1366685F0CFC759892E1F6EF5DC5 (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetSystemGpuLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetSystemGpuLevel)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetSystemPowerSavingMode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetSystemPowerSavingMode_mE57FE362B03002A799EE50D892B79B9C04AED976 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemPowerSavingMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemPowerSavingMode)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetSystemDisplayFrequency() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetSystemDisplayFrequency_m0B985408AA6C32604CD8132CED84BDC8A484BADE (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemDisplayFrequency", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetSystemDisplayFrequency)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Int32 OVRPlugin/OVRP_1_1_0::ovrp_GetSystemVSyncCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetSystemVSyncCount_m968C93D58DB46C0D3773540C813A268F146AE0E2 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemVSyncCount", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemVSyncCount)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetSystemVolume() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetSystemVolume_mA3EE7973F05C63B6C28F487AC74FFE98BD0E7613 (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemVolume", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetSystemVolume)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/BatteryStatus OVRPlugin/OVRP_1_1_0::ovrp_GetSystemBatteryStatus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetSystemBatteryStatus_m526818D93597A767EA8403198C8275525E15EBB8 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemBatteryStatus", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemBatteryStatus)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetSystemBatteryLevel() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetSystemBatteryLevel_mF0848B606CE468FCDACEC6B69DDA6C295F546155 (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemBatteryLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetSystemBatteryLevel)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetSystemBatteryTemperature() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetSystemBatteryTemperature_m909563CC47153ED6F0BD23724241C591F1EF784D (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemBatteryTemperature", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetSystemBatteryTemperature)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetSystemProductName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetSystemProductName_mFC0AC21023D7EAA7C7A74D47700F0CC3AD9BF442 (const RuntimeMethod* method) { typedef intptr_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemProductName", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL intptr_t returnValue = reinterpret_cast(ovrp_GetSystemProductName)(); #else intptr_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.String OVRPlugin/OVRP_1_1_0::ovrp_GetSystemProductName() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OVRP_1_1_0_ovrp_GetSystemProductName_m30CDDC1891B4753D7ADA67E04DB74BD99E219E29 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static string ovrp_GetSystemProductName() { return Marshal.PtrToStringAnsi(_ovrp_GetSystemProductName()); } IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); intptr_t L_0; L_0 = OVRP_1_1_0__ovrp_GetSystemProductName_mFC0AC21023D7EAA7C7A74D47700F0CC3AD9BF442(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Marshal_PtrToStringAnsi_m8A04D9B38C53580B609A2A3179BDAA28FEC85F0E((intptr_t)L_0, /*hidden argument*/NULL); return L_1; } } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_ShowSystemUI(OVRPlugin/PlatformUI) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_ShowSystemUI_m6751D8C00CB987FDFBC31294319AA56454D7D700 (int32_t ___ui0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_ShowSystemUI", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_ShowSystemUI)(___ui0); #else int32_t returnValue = il2cppPInvokeFunc(___ui0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetAppMonoscopic() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetAppMonoscopic_mE00F378AACAD1FE8A3D8CF1F3263167870F160E5 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppMonoscopic", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAppMonoscopic)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetAppMonoscopic(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetAppMonoscopic_m4B96701619E347E848E8FE7101B8319AB30E1F8F (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetAppMonoscopic", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetAppMonoscopic)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetAppHasVrFocus() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetAppHasVrFocus_m4FEC06167C89E0192170688A0FB85275745B9432 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppHasVrFocus", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAppHasVrFocus)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetAppShouldQuit() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetAppShouldQuit_mFB5CBD25B839BA05F88F1E8DC89B4F0A4C55206E (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppShouldQuit", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAppShouldQuit)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetAppShouldRecenter() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetAppShouldRecenter_mC775657916B5CA0A23B735E01FAC259DDBADDDF3 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppShouldRecenter", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAppShouldRecenter)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.IntPtr OVRPlugin/OVRP_1_1_0::_ovrp_GetAppLatencyTimings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR intptr_t OVRP_1_1_0__ovrp_GetAppLatencyTimings_mDAE0B8EC9019B46B0324252728FBA9A7809A25B7 (const RuntimeMethod* method) { typedef intptr_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppLatencyTimings", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL intptr_t returnValue = reinterpret_cast(ovrp_GetAppLatencyTimings)(); #else intptr_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.String OVRPlugin/OVRP_1_1_0::ovrp_GetAppLatencyTimings() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* OVRP_1_1_0_ovrp_GetAppLatencyTimings_m618E80D76D978EDD53B0414ABB3F466A33D01A98 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static string ovrp_GetAppLatencyTimings() { return Marshal.PtrToStringAnsi(_ovrp_GetAppLatencyTimings()); } IL2CPP_RUNTIME_CLASS_INIT(OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); intptr_t L_0; L_0 = OVRP_1_1_0__ovrp_GetAppLatencyTimings_mDAE0B8EC9019B46B0324252728FBA9A7809A25B7(/*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Marshal_tEBAFAE20369FCB1B38C49C4E27A8D8C2C4B55058_il2cpp_TypeInfo_var); String_t* L_1; L_1 = Marshal_PtrToStringAnsi_m8A04D9B38C53580B609A2A3179BDAA28FEC85F0E((intptr_t)L_0, /*hidden argument*/NULL); return L_1; } } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_GetUserPresent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_GetUserPresent_m733DFB915A418F6B3F9B9E9149986B54E503F604 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetUserPresent", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetUserPresent)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetUserIPD() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetUserIPD_mB5E14BC1DF059FC8D7B5918DF454BF5D51F8CBEC (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetUserIPD", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetUserIPD)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetUserIPD(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetUserIPD_m85212460971C6308D2245C73E117C764B5D11F2C (float ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetUserIPD", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetUserIPD)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetUserEyeDepth() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetUserEyeDepth_m4BB95D053C45FC7AF07A68F8DA1BE01C4EE09000 (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetUserEyeDepth", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetUserEyeDepth)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetUserEyeDepth(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetUserEyeDepth_m294306277CCAD636B90C7AE9B078FC475CD1B890 (float ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetUserEyeDepth", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetUserEyeDepth)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_1_0::ovrp_GetUserEyeHeight() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_1_0_ovrp_GetUserEyeHeight_m65DC5CB5F6DDC3D615691F0F7824FF62051C4AEE (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetUserEyeHeight", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetUserEyeHeight)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_1_0::ovrp_SetUserEyeHeight(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_1_0_ovrp_SetUserEyeHeight_m1E83D6BD53904AC56857DEDED9CAC48C7D271037 (float ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetUserEyeHeight", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetUserEyeHeight)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_1_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_1_0__cctor_m189BD42151079AF9DF31CC4DABC5F77B98900418 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 1, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 1, 0, /*hidden argument*/NULL); ((OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_1_0_tFFA96549F4A9EECB6BC6DE3B0E55CCA313848300_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_GetTiledMultiResSupported(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_GetTiledMultiResSupported_m7F26D689D65ECF7AF12BFD325CF993064D55D316 (int32_t* ___foveationSupported0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTiledMultiResSupported", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTiledMultiResSupported)(___foveationSupported0); #else int32_t returnValue = il2cppPInvokeFunc(___foveationSupported0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_GetTiledMultiResLevel(OVRPlugin/FixedFoveatedRenderingLevel&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_GetTiledMultiResLevel_m041B21F8F531C44F16E899074CE640C11038B7C4 (int32_t* ___level0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTiledMultiResLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTiledMultiResLevel)(___level0); #else int32_t returnValue = il2cppPInvokeFunc(___level0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_SetTiledMultiResLevel(OVRPlugin/FixedFoveatedRenderingLevel) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_SetTiledMultiResLevel_m459FF2A73285CFBEA28BF21FB9DD9F0961BCFD90 (int32_t ___level0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetTiledMultiResLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetTiledMultiResLevel)(___level0); #else int32_t returnValue = il2cppPInvokeFunc(___level0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_GetGPUUtilSupported(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_GetGPUUtilSupported_m2F68948C5A1467DB8225FE4961FEEB854C789695 (int32_t* ___gpuUtilSupported0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetGPUUtilSupported", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetGPUUtilSupported)(___gpuUtilSupported0); #else int32_t returnValue = il2cppPInvokeFunc(___gpuUtilSupported0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_GetGPUUtilLevel(System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_GetGPUUtilLevel_m39490E5863298EE7C16D1DCCCA48B786A7025C2B (float* ___gpuUtil0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetGPUUtilLevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetGPUUtilLevel)(___gpuUtil0); #else int32_t returnValue = il2cppPInvokeFunc(___gpuUtil0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_GetSystemDisplayFrequency2(System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_GetSystemDisplayFrequency2_mA9FD6C0521F4A9E11F11722E6A172DF5E56162B5 (float* ___systemDisplayFrequency0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemDisplayFrequency2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemDisplayFrequency2)(___systemDisplayFrequency0); #else int32_t returnValue = il2cppPInvokeFunc(___systemDisplayFrequency0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_GetSystemDisplayAvailableFrequencies(System.IntPtr,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_GetSystemDisplayAvailableFrequencies_mF2A76FC17B1F75E126DAD6B775AD212E9DC72495 (intptr_t ___systemDisplayAvailableFrequencies0, int32_t* ___numFrequencies1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemDisplayAvailableFrequencies", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemDisplayAvailableFrequencies)(___systemDisplayAvailableFrequencies0, ___numFrequencies1); #else int32_t returnValue = il2cppPInvokeFunc(___systemDisplayAvailableFrequencies0, ___numFrequencies1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_SetSystemDisplayFrequency(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_SetSystemDisplayFrequency_m0EDE5E0759B0B66405A2D6D9B7D1FA3CCDEC8802 (float ___requestedFrequency0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetSystemDisplayFrequency", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetSystemDisplayFrequency)(___requestedFrequency0); #else int32_t returnValue = il2cppPInvokeFunc(___requestedFrequency0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_21_0::ovrp_GetAppAsymmetricFov(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_21_0_ovrp_GetAppAsymmetricFov_mA3349B24616C0BBD0D2571074DF9BB838930827F (int32_t* ___useAsymmetricFov0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppAsymmetricFov", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAppAsymmetricFov)(___useAsymmetricFov0); #else int32_t returnValue = il2cppPInvokeFunc(___useAsymmetricFov0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_21_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_21_0__cctor_m935F2908D94D01530814D545A24669F61EE7D8D9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_21_0_tB9C80014C524327C3350066E149A543AE1EF619D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 21, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)21), 0, /*hidden argument*/NULL); ((OVRP_1_21_0_tB9C80014C524327C3350066E149A543AE1EF619D_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_21_0_tB9C80014C524327C3350066E149A543AE1EF619D_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_28_0::ovrp_GetDominantHand(OVRPlugin/Handedness&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_28_0_ovrp_GetDominantHand_m57A0A5F1D8636BED9E1E7B84DE4E39A9FCCAC1E8 (int32_t* ___dominantHand0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetDominantHand", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetDominantHand)(___dominantHand0); #else int32_t returnValue = il2cppPInvokeFunc(___dominantHand0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_28_0::ovrp_SendEvent(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_28_0_ovrp_SendEvent_m452DDABA95F6236E98CA4AC3AEB13D620A6A43B0 (String_t* ___name0, String_t* ___param1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (char*, char*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(char*) + sizeof(char*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SendEvent", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___name0' to native representation char* ____name0_marshaled = NULL; ____name0_marshaled = il2cpp_codegen_marshal_string(___name0); // Marshaling of parameter '___param1' to native representation char* ____param1_marshaled = NULL; ____param1_marshaled = il2cpp_codegen_marshal_string(___param1); // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SendEvent)(____name0_marshaled, ____param1_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(____name0_marshaled, ____param1_marshaled); #endif // Marshaling cleanup of parameter '___name0' native representation il2cpp_codegen_marshal_free(____name0_marshaled); ____name0_marshaled = NULL; // Marshaling cleanup of parameter '___param1' native representation il2cpp_codegen_marshal_free(____param1_marshaled); ____param1_marshaled = NULL; return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_28_0::ovrp_EnqueueSetupLayer2(OVRPlugin/LayerDesc&,System.Int32,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_28_0_ovrp_EnqueueSetupLayer2_mC713C933C1198680D52940A53AE9DDD446C63AF2 (LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 * ___desc0, int32_t ___compositionDepth1, intptr_t ___layerId2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*, int32_t, intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke*) + sizeof(int32_t) + sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_EnqueueSetupLayer2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___desc0' to native representation LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke* ____desc0_marshaled = NULL; LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshaled_pinvoke ____desc0_marshaled_dereferenced = {}; LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke(*___desc0, ____desc0_marshaled_dereferenced); ____desc0_marshaled = &____desc0_marshaled_dereferenced; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_EnqueueSetupLayer2)(____desc0_marshaled, ___compositionDepth1, ___layerId2); #else int32_t returnValue = il2cppPInvokeFunc(____desc0_marshaled, ___compositionDepth1, ___layerId2); #endif // Marshaling of parameter '___desc0' back from native representation LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780 _____desc0_marshaled_unmarshaled_dereferenced; memset((&_____desc0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____desc0_marshaled_unmarshaled_dereferenced)); LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_back(*____desc0_marshaled, _____desc0_marshaled_unmarshaled_dereferenced); LayerDesc_tA2A3A7D0365DE17DD63C22B479B974526AEC6780_marshal_pinvoke_cleanup(*____desc0_marshaled); *___desc0 = _____desc0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___desc0)->___Fov_7), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___desc0)->___VisibleRect_8), (void*)NULL); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_28_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_28_0__cctor_m189A3127D87C501728C1288A94F7018A4C07431D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_28_0_tF0B7D50816EA5B6A633C6C428992573947320565_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 28, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)28), 0, /*hidden argument*/NULL); ((OVRP_1_28_0_tF0B7D50816EA5B6A633C6C428992573947320565_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_28_0_tF0B7D50816EA5B6A633C6C428992573947320565_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_29_0::ovrp_GetLayerAndroidSurfaceObject(System.Int32,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_29_0_ovrp_GetLayerAndroidSurfaceObject_m8166ED5DD9FC19F2C54B4160B5F657719FAFD499 (int32_t ___layerId0, intptr_t* ___surfaceObject1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetLayerAndroidSurfaceObject", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetLayerAndroidSurfaceObject)(___layerId0, ___surfaceObject1); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0, ___surfaceObject1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_29_0::ovrp_SetHeadPoseModifier(OVRPlugin/Quatf&,OVRPlugin/Vector3f&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_29_0_ovrp_SetHeadPoseModifier_m768344F77AD57BB79463651317E0042ABACEAAD7 (Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * ___relativeRotation0, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * ___relativeTranslation1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D *) + sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetHeadPoseModifier", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetHeadPoseModifier)(___relativeRotation0, ___relativeTranslation1); #else int32_t returnValue = il2cppPInvokeFunc(___relativeRotation0, ___relativeTranslation1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_29_0::ovrp_GetHeadPoseModifier(OVRPlugin/Quatf&,OVRPlugin/Vector3f&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_29_0_ovrp_GetHeadPoseModifier_m5C97BE400F98B06CCF61251B43910E3E83F0BD10 (Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * ___relativeRotation0, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * ___relativeTranslation1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D *) + sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetHeadPoseModifier", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetHeadPoseModifier)(___relativeRotation0, ___relativeTranslation1); #else int32_t returnValue = il2cppPInvokeFunc(___relativeRotation0, ___relativeTranslation1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_29_0::ovrp_GetNodePoseStateRaw(OVRPlugin/Step,System.Int32,OVRPlugin/Node,OVRPlugin/PoseStatef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_29_0_ovrp_GetNodePoseStateRaw_mFEA77E398681D7C0928AC9A364A6CDB83708438B (int32_t ___stepId0, int32_t ___frameIndex1, int32_t ___nodeId2, PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 * ___nodePoseState3, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, int32_t, PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePoseStateRaw", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodePoseStateRaw)(___stepId0, ___frameIndex1, ___nodeId2, ___nodePoseState3); #else int32_t returnValue = il2cppPInvokeFunc(___stepId0, ___frameIndex1, ___nodeId2, ___nodePoseState3); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_29_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_29_0__cctor_mC73D0C08114F074E426643D8A5BA14A1D0A9B690 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_29_0_t918278FFDFD85AAB45BDD32748CB748326A99CDB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 29, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)29), 0, /*hidden argument*/NULL); ((OVRP_1_29_0_t918278FFDFD85AAB45BDD32748CB748326A99CDB_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_29_0_t918278FFDFD85AAB45BDD32748CB748326A99CDB_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_1_2_0::ovrp_SetSystemVSyncCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_2_0_ovrp_SetSystemVSyncCount_m8AFF53E5B232C24B2583326C6C4F5C5F85139BD4 (int32_t ___vsyncCount0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetSystemVSyncCount", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetSystemVSyncCount)(___vsyncCount0); #else int32_t returnValue = il2cppPInvokeFunc(___vsyncCount0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_2_0::ovrpi_SetTrackingCalibratedOrigin() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_2_0_ovrpi_SetTrackingCalibratedOrigin_m290A5901D84D0C7BA77D8FCD5255C4C2A40A58D0 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrpi_SetTrackingCalibratedOrigin", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrpi_SetTrackingCalibratedOrigin)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_2_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_2_0__cctor_m98C9E6B1C9575A1F1CAC29947216D209882CC454 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_2_0_t86480FE48DC2A17D54962BE5255652B2CAE172FC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 2, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 2, 0, /*hidden argument*/NULL); ((OVRP_1_2_0_t86480FE48DC2A17D54962BE5255652B2CAE172FC_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_2_0_t86480FE48DC2A17D54962BE5255652B2CAE172FC_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_30_0::ovrp_GetCurrentTrackingTransformPose(OVRPlugin/Posef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_30_0_ovrp_GetCurrentTrackingTransformPose_m8D0D7CB4B09D4BFF79F95995919FE07D0B5EA6FB (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___trackingTransformPose0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetCurrentTrackingTransformPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetCurrentTrackingTransformPose)(___trackingTransformPose0); #else int32_t returnValue = il2cppPInvokeFunc(___trackingTransformPose0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_30_0::ovrp_GetTrackingTransformRawPose(OVRPlugin/Posef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_30_0_ovrp_GetTrackingTransformRawPose_mE849FAD8B81ADAF6520BF9C6116DF6089F40F581 (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___trackingTransformRawPose0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingTransformRawPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingTransformRawPose)(___trackingTransformRawPose0); #else int32_t returnValue = il2cppPInvokeFunc(___trackingTransformRawPose0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_30_0::ovrp_SendEvent2(System.String,System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_30_0_ovrp_SendEvent2_mB61816D5DA5D4320E70DB535A5D73D1CC816AAC9 (String_t* ___name0, String_t* ___param1, String_t* ___source2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (char*, char*, char*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(char*) + sizeof(char*) + sizeof(char*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SendEvent2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___name0' to native representation char* ____name0_marshaled = NULL; ____name0_marshaled = il2cpp_codegen_marshal_string(___name0); // Marshaling of parameter '___param1' to native representation char* ____param1_marshaled = NULL; ____param1_marshaled = il2cpp_codegen_marshal_string(___param1); // Marshaling of parameter '___source2' to native representation char* ____source2_marshaled = NULL; ____source2_marshaled = il2cpp_codegen_marshal_string(___source2); // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SendEvent2)(____name0_marshaled, ____param1_marshaled, ____source2_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(____name0_marshaled, ____param1_marshaled, ____source2_marshaled); #endif // Marshaling cleanup of parameter '___name0' native representation il2cpp_codegen_marshal_free(____name0_marshaled); ____name0_marshaled = NULL; // Marshaling cleanup of parameter '___param1' native representation il2cpp_codegen_marshal_free(____param1_marshaled); ____param1_marshaled = NULL; // Marshaling cleanup of parameter '___source2' native representation il2cpp_codegen_marshal_free(____source2_marshaled); ____source2_marshaled = NULL; return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_30_0::ovrp_IsPerfMetricsSupported(OVRPlugin/PerfMetrics,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_30_0_ovrp_IsPerfMetricsSupported_mCC930562F7865E6ABBA229ACCD24644DC123C6AF (int32_t ___perfMetrics0, int32_t* ___isSupported1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_IsPerfMetricsSupported", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_IsPerfMetricsSupported)(___perfMetrics0, ___isSupported1); #else int32_t returnValue = il2cppPInvokeFunc(___perfMetrics0, ___isSupported1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_30_0::ovrp_GetPerfMetricsFloat(OVRPlugin/PerfMetrics,System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_30_0_ovrp_GetPerfMetricsFloat_mCBA3511F4EB3C4D766327599BB0DA3722DB9BBB0 (int32_t ___perfMetrics0, float* ___value1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, float*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(float*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetPerfMetricsFloat", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetPerfMetricsFloat)(___perfMetrics0, ___value1); #else int32_t returnValue = il2cppPInvokeFunc(___perfMetrics0, ___value1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_30_0::ovrp_GetPerfMetricsInt(OVRPlugin/PerfMetrics,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_30_0_ovrp_GetPerfMetricsInt_mD1A0038EDA61C3A120DA5726AD41C6099027D2AD (int32_t ___perfMetrics0, int32_t* ___value1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetPerfMetricsInt", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetPerfMetricsInt)(___perfMetrics0, ___value1); #else int32_t returnValue = il2cppPInvokeFunc(___perfMetrics0, ___value1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_30_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_30_0__cctor_mB56D1E434F74D3CE995F310FC2C9DFB4C64275C0 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_30_0_t4D250C144546622A0795A2F91B99E8E77BB5EDC2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 30, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)30), 0, /*hidden argument*/NULL); ((OVRP_1_30_0_t4D250C144546622A0795A2F91B99E8E77BB5EDC2_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_30_0_t4D250C144546622A0795A2F91B99E8E77BB5EDC2_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_31_0::ovrp_GetTimeInSeconds(System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_31_0_ovrp_GetTimeInSeconds_m50E1AFDDF3F5DDAF7AF7D0D279DD2391FE8B8F55 (double* ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (double*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(double*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTimeInSeconds", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTimeInSeconds)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_31_0::ovrp_SetColorScaleAndOffset(UnityEngine.Vector4,UnityEngine.Vector4,OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_31_0_ovrp_SetColorScaleAndOffset_mC12F50CDBD9D3B73303C4DB7F285D13944F25648 (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___colorScale0, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ___colorOffset1, int32_t ___applyToAllLayers2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 , int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ) + sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 ) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetColorScaleAndOffset", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetColorScaleAndOffset)(___colorScale0, ___colorOffset1, ___applyToAllLayers2); #else int32_t returnValue = il2cppPInvokeFunc(___colorScale0, ___colorOffset1, ___applyToAllLayers2); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_31_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_31_0__cctor_mAFE007B28CCA2BB1ADC079666470B2C3D4A85FC9 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_31_0_t8C43CCA8BA64FB271C032EDD8AF604AC7DA07D46_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 31, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)31), 0, /*hidden argument*/NULL); ((OVRP_1_31_0_t8C43CCA8BA64FB271C032EDD8AF604AC7DA07D46_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_31_0_t8C43CCA8BA64FB271C032EDD8AF604AC7DA07D46_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_32_0::ovrp_AddCustomMetadata(System.String,System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_32_0_ovrp_AddCustomMetadata_m881AE8F31A795648C045E6CDDFF08F007A9A4056 (String_t* ___name0, String_t* ___param1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (char*, char*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(char*) + sizeof(char*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_AddCustomMetadata", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___name0' to native representation char* ____name0_marshaled = NULL; ____name0_marshaled = il2cpp_codegen_marshal_string(___name0); // Marshaling of parameter '___param1' to native representation char* ____param1_marshaled = NULL; ____param1_marshaled = il2cpp_codegen_marshal_string(___param1); // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_AddCustomMetadata)(____name0_marshaled, ____param1_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(____name0_marshaled, ____param1_marshaled); #endif // Marshaling cleanup of parameter '___name0' native representation il2cpp_codegen_marshal_free(____name0_marshaled); ____name0_marshaled = NULL; // Marshaling cleanup of parameter '___param1' native representation il2cpp_codegen_marshal_free(____param1_marshaled); ____param1_marshaled = NULL; return returnValue; } // System.Void OVRPlugin/OVRP_1_32_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_32_0__cctor_m7A4110B6FD6A1934DE68E26C33A8BF255DAA4D76 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_32_0_t693E99E48FBAB6F9EC9AE0284958D46A10112BC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 32, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)32), 0, /*hidden argument*/NULL); ((OVRP_1_32_0_t693E99E48FBAB6F9EC9AE0284958D46A10112BC3_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_32_0_t693E99E48FBAB6F9EC9AE0284958D46A10112BC3_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_34_0::ovrp_EnqueueSubmitLayer2(System.UInt32,System.IntPtr,System.IntPtr,System.Int32,System.Int32,OVRPlugin/Posef&,OVRPlugin/Vector3f&,System.Int32,OVRPlugin/Bool,OVRPlugin/TextureRectMatrixf&,OVRPlugin/Bool,UnityEngine.Vector4&,UnityEngine.Vector4&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_34_0_ovrp_EnqueueSubmitLayer2_m91B7F330FA097E285C3BC3986597CE738FF7E8A7 (uint32_t ___flags0, intptr_t ___textureLeft1, intptr_t ___textureRight2, int32_t ___layerId3, int32_t ___frameIndex4, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___pose5, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * ___scale6, int32_t ___layerIndex7, int32_t ___overrideTextureRectMatrix8, TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B * ___textureRectMatrix9, int32_t ___overridePerLayerColorScaleAndOffset10, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * ___colorScale11, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 * ___colorOffset12, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t, intptr_t, intptr_t, int32_t, int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *, int32_t, int32_t, TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B *, int32_t, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *, Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(intptr_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *) + sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 *) + sizeof(int32_t) + sizeof(int32_t) + sizeof(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B *) + sizeof(int32_t) + sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *) + sizeof(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_EnqueueSubmitLayer2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_EnqueueSubmitLayer2)(___flags0, ___textureLeft1, ___textureRight2, ___layerId3, ___frameIndex4, ___pose5, ___scale6, ___layerIndex7, ___overrideTextureRectMatrix8, ___textureRectMatrix9, ___overridePerLayerColorScaleAndOffset10, ___colorScale11, ___colorOffset12); #else int32_t returnValue = il2cppPInvokeFunc(___flags0, ___textureLeft1, ___textureRight2, ___layerId3, ___frameIndex4, ___pose5, ___scale6, ___layerIndex7, ___overrideTextureRectMatrix8, ___textureRectMatrix9, ___overridePerLayerColorScaleAndOffset10, ___colorScale11, ___colorOffset12); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_34_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_34_0__cctor_mC1609823437658D074DA42379E22F96292F204D5 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_34_0_t9F3B8A75B7A40F061C00A0F5354B3F7E5DCF6403_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 34, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)34), 0, /*hidden argument*/NULL); ((OVRP_1_34_0_t9F3B8A75B7A40F061C00A0F5354B3F7E5DCF6403_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_34_0_t9F3B8A75B7A40F061C00A0F5354B3F7E5DCF6403_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_35_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_35_0__cctor_m5317A346DACDFAFA15AE016DC79A53F1C7B6A39F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_35_0_t51609337F43CCA6D6D0DF34912B4BF73906C8705_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 35, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)35), 0, /*hidden argument*/NULL); ((OVRP_1_35_0_t51609337F43CCA6D6D0DF34912B4BF73906C8705_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_35_0_t51609337F43CCA6D6D0DF34912B4BF73906C8705_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_36_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_36_0__cctor_mB79059C3AEE695FE9AF2EFCA9C9A3A0203D10E78 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_36_0_t1094A26C603F8CD2A54535DCC3E74434C3741ABC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 36, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)36), 0, /*hidden argument*/NULL); ((OVRP_1_36_0_t1094A26C603F8CD2A54535DCC3E74434C3741ABC_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_36_0_t1094A26C603F8CD2A54535DCC3E74434C3741ABC_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_37_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_37_0__cctor_m33DCAF806532FE998E3EF9CDFC15C47A969F7F6F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_37_0_t23CF12293B399D5E79375E624C273FEF47F079FC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 37, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)37), 0, /*hidden argument*/NULL); ((OVRP_1_37_0_t23CF12293B399D5E79375E624C273FEF47F079FC_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_37_0_t23CF12293B399D5E79375E624C273FEF47F079FC_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_GetTrackingTransformRelativePose(OVRPlugin/Posef&,OVRPlugin/TrackingOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_GetTrackingTransformRelativePose_mE77A294E1C769CC8D274E5194C52029C036EC9D8 (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___trackingTransformRelativePose0, int32_t ___trackingOrigin1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingTransformRelativePose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingTransformRelativePose)(___trackingTransformRelativePose0, ___trackingOrigin1); #else int32_t returnValue = il2cppPInvokeFunc(___trackingTransformRelativePose0, ___trackingOrigin1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_Initialize() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_Initialize_mE698EEFC181B58047DD812670561F129213C0FD9 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_Initialize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_Initialize)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_Shutdown() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_Shutdown_m62FBC7AB749BFC4DEBA3C09A894C585F03554B6F (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_Shutdown", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_Shutdown)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetInitialized(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetInitialized_mB6DAF092F0AF72A62BBF04CFF18B86852E3FAE07 (int32_t* ___initialized0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetInitialized", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetInitialized)(___initialized0); #else int32_t returnValue = il2cppPInvokeFunc(___initialized0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_Update_m09BA36449E0FC2EA89C238DE58713267CD798CB1 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_Update", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_Update)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcActivationMode(OVRPlugin/Media/MrcActivationMode&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcActivationMode_mFD871CE1B42BE02A5B0CF5FD68681153BA21CEEC (int32_t* ___activationMode0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetMrcActivationMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetMrcActivationMode)(___activationMode0); #else int32_t returnValue = il2cppPInvokeFunc(___activationMode0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcActivationMode(OVRPlugin/Media/MrcActivationMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcActivationMode_m90E3BA9787F7BCD9C68F5DBFF084FD8107F90DDA (int32_t ___activationMode0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetMrcActivationMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetMrcActivationMode)(___activationMode0); #else int32_t returnValue = il2cppPInvokeFunc(___activationMode0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_IsMrcEnabled(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_IsMrcEnabled_m2F4C363CCBA8F01DE12102FB44FC27947C457AB1 (int32_t* ___mrcEnabled0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_IsMrcEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_IsMrcEnabled)(___mrcEnabled0); #else int32_t returnValue = il2cppPInvokeFunc(___mrcEnabled0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_IsMrcActivated(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_IsMrcActivated_mCCA9BC630B9256809896168745640CE81A42F9D4 (int32_t* ___mrcActivated0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_IsMrcActivated", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_IsMrcActivated)(___mrcActivated0); #else int32_t returnValue = il2cppPInvokeFunc(___mrcActivated0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_UseMrcDebugCamera(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_UseMrcDebugCamera_m6EE4528A77AF05CEF3C2624707AA7C0818CD00C6 (int32_t* ___useMrcDebugCamera0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_UseMrcDebugCamera", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_UseMrcDebugCamera)(___useMrcDebugCamera0); #else int32_t returnValue = il2cppPInvokeFunc(___useMrcDebugCamera0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcInputVideoBufferType(OVRPlugin/Media/InputVideoBufferType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcInputVideoBufferType_m10334077D066D26FFD50A656545D9C88B15CF875 (int32_t ___inputVideoBufferType0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetMrcInputVideoBufferType", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetMrcInputVideoBufferType)(___inputVideoBufferType0); #else int32_t returnValue = il2cppPInvokeFunc(___inputVideoBufferType0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcInputVideoBufferType(OVRPlugin/Media/InputVideoBufferType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcInputVideoBufferType_m70BA87E7BAB6B26AB479F5466F739EB3257E88E4 (int32_t* ___inputVideoBufferType0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetMrcInputVideoBufferType", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetMrcInputVideoBufferType)(___inputVideoBufferType0); #else int32_t returnValue = il2cppPInvokeFunc(___inputVideoBufferType0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcFrameSize(System.Int32,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcFrameSize_m8A0FDD45F9347A1C27A1797DD8C1003120F9C3AE (int32_t ___frameWidth0, int32_t ___frameHeight1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetMrcFrameSize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetMrcFrameSize)(___frameWidth0, ___frameHeight1); #else int32_t returnValue = il2cppPInvokeFunc(___frameWidth0, ___frameHeight1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcFrameSize(System.Int32&,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcFrameSize_m916A02E29E2A4FEF3E16947918E5C70EC1560984 (int32_t* ___frameWidth0, int32_t* ___frameHeight1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetMrcFrameSize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetMrcFrameSize)(___frameWidth0, ___frameHeight1); #else int32_t returnValue = il2cppPInvokeFunc(___frameWidth0, ___frameHeight1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcAudioSampleRate(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcAudioSampleRate_mE676A1E4C10ADF00BC95A9C88532E74F20DCF065 (int32_t ___sampleRate0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetMrcAudioSampleRate", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetMrcAudioSampleRate)(___sampleRate0); #else int32_t returnValue = il2cppPInvokeFunc(___sampleRate0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcAudioSampleRate(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcAudioSampleRate_mACB1845DE4336B93DD03F74EC80C2003D82A1918 (int32_t* ___sampleRate0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetMrcAudioSampleRate", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetMrcAudioSampleRate)(___sampleRate0); #else int32_t returnValue = il2cppPInvokeFunc(___sampleRate0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SetMrcFrameImageFlipped(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SetMrcFrameImageFlipped_mD4C62142F0D01870907CAF8AE5215C9FE5C4E7F4 (int32_t ___flipped0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetMrcFrameImageFlipped", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetMrcFrameImageFlipped)(___flipped0); #else int32_t returnValue = il2cppPInvokeFunc(___flipped0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_GetMrcFrameImageFlipped(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_GetMrcFrameImageFlipped_m753A68762974224E54E08E9A74AADFE144FFB5A1 (int32_t* ___flipped0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetMrcFrameImageFlipped", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetMrcFrameImageFlipped)(___flipped0); #else int32_t returnValue = il2cppPInvokeFunc(___flipped0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_EncodeMrcFrame(System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_EncodeMrcFrame_m8BA72BFC359A978F8C0496FCE0C3DE9FDA49EA19 (intptr_t ___rawBuffer0, intptr_t ___audioDataPtr1, int32_t ___audioDataLen2, int32_t ___audioChannels3, double ___timestamp4, int32_t* ___outSyncId5, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, intptr_t, int32_t, int32_t, double, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(double) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_EncodeMrcFrame", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_EncodeMrcFrame)(___rawBuffer0, ___audioDataPtr1, ___audioDataLen2, ___audioChannels3, ___timestamp4, ___outSyncId5); #else int32_t returnValue = il2cppPInvokeFunc(___rawBuffer0, ___audioDataPtr1, ___audioDataLen2, ___audioChannels3, ___timestamp4, ___outSyncId5); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_EncodeMrcFrameWithDualTextures(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_EncodeMrcFrameWithDualTextures_mAF961F524475F9D20BB52470E4FF821FB4645346 (intptr_t ___backgroundTextureHandle0, intptr_t ___foregroundTextureHandle1, intptr_t ___audioData2, int32_t ___audioDataLen3, int32_t ___audioChannels4, double ___timestamp5, int32_t* ___outSyncId6, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, intptr_t, intptr_t, int32_t, int32_t, double, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(intptr_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(double) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_EncodeMrcFrameWithDualTextures", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_EncodeMrcFrameWithDualTextures)(___backgroundTextureHandle0, ___foregroundTextureHandle1, ___audioData2, ___audioDataLen3, ___audioChannels4, ___timestamp5, ___outSyncId6); #else int32_t returnValue = il2cppPInvokeFunc(___backgroundTextureHandle0, ___foregroundTextureHandle1, ___audioData2, ___audioDataLen3, ___audioChannels4, ___timestamp5, ___outSyncId6); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_Media_SyncMrcFrame(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_Media_SyncMrcFrame_mF658ADE0657A8624DC12DC44B2927A09B9DE5959 (int32_t ___syncId0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SyncMrcFrame", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SyncMrcFrame)(___syncId0); #else int32_t returnValue = il2cppPInvokeFunc(___syncId0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_SetDeveloperMode(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_SetDeveloperMode_mD801E1722BCC8BDD23CF75E0E45FEA97162B09B6 (int32_t ___active0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetDeveloperMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetDeveloperMode)(___active0); #else int32_t returnValue = il2cppPInvokeFunc(___active0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_GetNodeOrientationValid(OVRPlugin/Node,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_GetNodeOrientationValid_m723C18DBBACB3B90FCA6ABB4F07CA914F6BA68EB (int32_t ___nodeId0, int32_t* ___nodeOrientationValid1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeOrientationValid", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodeOrientationValid)(___nodeId0, ___nodeOrientationValid1); #else int32_t returnValue = il2cppPInvokeFunc(___nodeId0, ___nodeOrientationValid1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_38_0::ovrp_GetNodePositionValid(OVRPlugin/Node,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_38_0_ovrp_GetNodePositionValid_m9046E302305C9F57B36453217696A7AA06CC9B5D (int32_t ___nodeId0, int32_t* ___nodePositionValid1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePositionValid", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodePositionValid)(___nodeId0, ___nodePositionValid1); #else int32_t returnValue = il2cppPInvokeFunc(___nodeId0, ___nodePositionValid1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_38_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_38_0__cctor_mDECAA990C73E4FBA165256A0A59DC7B03C8FC38A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 38, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)38), 0, /*hidden argument*/NULL); ((OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_38_0_tD15FCE1881C61EB03DA410A9704D802BF19565DE_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_39_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_39_0__cctor_m9BDC3AB62F3852E0BF40E961026E6EB9AB64850D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_39_0_t5E5BBE71ADDCAAF2353AA317E9B9456BEF8FE6D0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 39, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)39), 0, /*hidden argument*/NULL); ((OVRP_1_39_0_t5E5BBE71ADDCAAF2353AA317E9B9456BEF8FE6D0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_39_0_t5E5BBE71ADDCAAF2353AA317E9B9456BEF8FE6D0_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_1_3_0::ovrp_GetEyeOcclusionMeshEnabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_3_0_ovrp_GetEyeOcclusionMeshEnabled_mD222CF3E27E65147BE4DBA6C69BE5A2492402EBC (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetEyeOcclusionMeshEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetEyeOcclusionMeshEnabled)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_3_0::ovrp_SetEyeOcclusionMeshEnabled(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_3_0_ovrp_SetEyeOcclusionMeshEnabled_m0B4D65077E6C557F5D15D2708456CD4D0D1A542F (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetEyeOcclusionMeshEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetEyeOcclusionMeshEnabled)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_3_0::ovrp_GetSystemHeadphonesPresent() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_3_0_ovrp_GetSystemHeadphonesPresent_m4FA4205243A582C45D410A32B463B5DDC7681C71 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemHeadphonesPresent", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemHeadphonesPresent)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_3_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_3_0__cctor_m9F2620E5368370E4669302C43732D0A495865A09 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_3_0_t1670A3C38353D3938DCBD5377D6F9073CFD17637_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 3, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 3, 0, /*hidden argument*/NULL); ((OVRP_1_3_0_t1670A3C38353D3938DCBD5377D6F9073CFD17637_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_3_0_t1670A3C38353D3938DCBD5377D6F9073CFD17637_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_40_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_40_0__cctor_m9915420E0A70584C9B3A3E863845B340E6175303 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_40_0_tBA066085CDF028B94AE5EF9EAF6FE59B49229DF1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 40, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)40), 0, /*hidden argument*/NULL); ((OVRP_1_40_0_tBA066085CDF028B94AE5EF9EAF6FE59B49229DF1_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_40_0_tBA066085CDF028B94AE5EF9EAF6FE59B49229DF1_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_41_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_41_0__cctor_m3E51D741AABE85BAC1DAAF0499B43153F1EA2906 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_41_0_t865D1E54DF6EAA3DE85B98D21CCFB5EC8DC3BDA0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 41, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)41), 0, /*hidden argument*/NULL); ((OVRP_1_41_0_t865D1E54DF6EAA3DE85B98D21CCFB5EC8DC3BDA0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_41_0_t865D1E54DF6EAA3DE85B98D21CCFB5EC8DC3BDA0_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_42_0::ovrp_GetAdaptiveGpuPerformanceScale2(System.Single&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_42_0_ovrp_GetAdaptiveGpuPerformanceScale2_m9B1B13CB4BE7A4FB69058F358B91AE3C8AD8D97B (float* ___adaptiveGpuPerformanceScale0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (float*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(float*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAdaptiveGpuPerformanceScale2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAdaptiveGpuPerformanceScale2)(___adaptiveGpuPerformanceScale0); #else int32_t returnValue = il2cppPInvokeFunc(___adaptiveGpuPerformanceScale0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_42_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_42_0__cctor_m27F3F4A0F80780D006DEBA3490782030EF8E6EDE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_42_0_tFBBAC38B46711688EA744EC2739609E6EF095A49_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 42, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)42), 0, /*hidden argument*/NULL); ((OVRP_1_42_0_tFBBAC38B46711688EA744EC2739609E6EF095A49_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_42_0_tFBBAC38B46711688EA744EC2739609E6EF095A49_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_43_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_43_0__cctor_m29A94F042463AF4FEE839B4D84EDB85CE69F4A25 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_43_0_t35BA9379F2B044991E2E9B5CAD1DA29ABFE07AEC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 43, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)43), 0, /*hidden argument*/NULL); ((OVRP_1_43_0_t35BA9379F2B044991E2E9B5CAD1DA29ABFE07AEC_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_43_0_t35BA9379F2B044991E2E9B5CAD1DA29ABFE07AEC_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_GetHandTrackingEnabled(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_GetHandTrackingEnabled_m0581FDF6F0083D2E9D2EDBBDE2F197E3F6657838 (int32_t* ___handTrackingEnabled0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetHandTrackingEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetHandTrackingEnabled)(___handTrackingEnabled0); #else int32_t returnValue = il2cppPInvokeFunc(___handTrackingEnabled0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_GetHandState(OVRPlugin/Step,OVRPlugin/Hand,OVRPlugin/HandStateInternal&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_GetHandState_mE0A767909B60B55CF53B87257162F4727E27DFBD (int32_t ___stepId0, int32_t ___hand1, HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C * ___handState2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(HandStateInternal_t88DB040EB9B81D7B9A8D240B7FDE25805B40AD8C *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetHandState", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetHandState)(___stepId0, ___hand1, ___handState2); #else int32_t returnValue = il2cppPInvokeFunc(___stepId0, ___hand1, ___handState2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_GetSkeleton(OVRPlugin/SkeletonType,OVRPlugin/Skeleton&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_GetSkeleton_m32F951571C8842B3A0CA194DF49F08AB9DD598FC (int32_t ___skeletonType0, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 * ___skeleton1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSkeleton", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___skeleton1' to native representation Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke ____skeleton1_empty = {}; Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke* ____skeleton1_marshaled = &____skeleton1_empty; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSkeleton)(___skeletonType0, ____skeleton1_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(___skeletonType0, ____skeleton1_marshaled); #endif // Marshaling of parameter '___skeleton1' back from native representation Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099 _____skeleton1_marshaled_unmarshaled_dereferenced; memset((&_____skeleton1_marshaled_unmarshaled_dereferenced), 0, sizeof(_____skeleton1_marshaled_unmarshaled_dereferenced)); Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke_back(*____skeleton1_marshaled, _____skeleton1_marshaled_unmarshaled_dereferenced); *___skeleton1 = _____skeleton1_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___skeleton1)->___Bones_3), (void*)NULL); #if IL2CPP_ENABLE_STRICT_WRITE_BARRIERS Il2CppCodeGenWriteBarrier((void**)&((___skeleton1)->___BoneCapsules_4), (void*)NULL); #endif // Marshaling cleanup of parameter '___skeleton1' native representation Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke_cleanup(*____skeleton1_marshaled); return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_GetMesh(OVRPlugin/MeshType,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_GetMesh_m0A4ABA16C16D69E6B67B31AEC5531A3AB2845FC2 (int32_t ___meshType0, intptr_t ___meshPtr1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetMesh", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetMesh)(___meshType0, ___meshPtr1); #else int32_t returnValue = il2cppPInvokeFunc(___meshType0, ___meshPtr1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_OverrideExternalCameraFov(System.Int32,OVRPlugin/Bool,OVRPlugin/Fovf&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_OverrideExternalCameraFov_m910C28074F876D8611A008E48BF10FEAA0BF41B8 (int32_t ___cameraId0, int32_t ___useOverriddenFov1, Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF * ___fov2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(Fovf_tDC8A783CE35765C1DFE303370D5893EB6087E5EF *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_OverrideExternalCameraFov", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_OverrideExternalCameraFov)(___cameraId0, ___useOverriddenFov1, ___fov2); #else int32_t returnValue = il2cppPInvokeFunc(___cameraId0, ___useOverriddenFov1, ___fov2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_GetUseOverriddenExternalCameraFov(System.Int32,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_GetUseOverriddenExternalCameraFov_mF74C8543A5984C6A3202AF40C0CF89461B6BCD09 (int32_t ___cameraId0, int32_t* ___useOverriddenFov1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetUseOverriddenExternalCameraFov", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetUseOverriddenExternalCameraFov)(___cameraId0, ___useOverriddenFov1); #else int32_t returnValue = il2cppPInvokeFunc(___cameraId0, ___useOverriddenFov1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_OverrideExternalCameraStaticPose(System.Int32,OVRPlugin/Bool,OVRPlugin/Posef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_OverrideExternalCameraStaticPose_m6F54131E4907604C938D352E012BCD8F8793B527 (int32_t ___cameraId0, int32_t ___useOverriddenPose1, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___poseInStageOrigin2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_OverrideExternalCameraStaticPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_OverrideExternalCameraStaticPose)(___cameraId0, ___useOverriddenPose1, ___poseInStageOrigin2); #else int32_t returnValue = il2cppPInvokeFunc(___cameraId0, ___useOverriddenPose1, ___poseInStageOrigin2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_GetUseOverriddenExternalCameraStaticPose(System.Int32,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_GetUseOverriddenExternalCameraStaticPose_mBFA6E450ECE31BADBEC0D6BC96689177EFE2F6CE (int32_t ___cameraId0, int32_t* ___useOverriddenStaticPose1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetUseOverriddenExternalCameraStaticPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetUseOverriddenExternalCameraStaticPose)(___cameraId0, ___useOverriddenStaticPose1); #else int32_t returnValue = il2cppPInvokeFunc(___cameraId0, ___useOverriddenStaticPose1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_ResetDefaultExternalCamera() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_ResetDefaultExternalCamera_m4C887D840A2E55C4062A34A68436C90C5109D359 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_ResetDefaultExternalCamera", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_ResetDefaultExternalCamera)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_SetDefaultExternalCamera(System.String,OVRPlugin/CameraIntrinsics&,OVRPlugin/CameraExtrinsics&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_SetDefaultExternalCamera_mA9BC88A5EAD9610D93762FAE8D92508204217499 (String_t* ___cameraName0, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA * ___cameraIntrinsics1, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF * ___cameraExtrinsics2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (char*, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(char*) + sizeof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *) + sizeof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetDefaultExternalCamera", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___cameraName0' to native representation char* ____cameraName0_marshaled = NULL; ____cameraName0_marshaled = il2cpp_codegen_marshal_string(___cameraName0); // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetDefaultExternalCamera)(____cameraName0_marshaled, ___cameraIntrinsics1, ___cameraExtrinsics2); #else int32_t returnValue = il2cppPInvokeFunc(____cameraName0_marshaled, ___cameraIntrinsics1, ___cameraExtrinsics2); #endif // Marshaling cleanup of parameter '___cameraName0' native representation il2cpp_codegen_marshal_free(____cameraName0_marshaled); ____cameraName0_marshaled = NULL; return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_44_0::ovrp_GetLocalTrackingSpaceRecenterCount(System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_44_0_ovrp_GetLocalTrackingSpaceRecenterCount_mA4DFEF587E58C1C1F953ED26D50CBF1EFD72E3F7 (int32_t* ___recenterCount0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetLocalTrackingSpaceRecenterCount", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetLocalTrackingSpaceRecenterCount)(___recenterCount0); #else int32_t returnValue = il2cppPInvokeFunc(___recenterCount0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_44_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_44_0__cctor_m7312128901815771FE0509973FBE7678EF25D4D4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_44_0_t0DF156B1270FA4A8B5EA797E36FBCF02543E2533_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 44, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)44), 0, /*hidden argument*/NULL); ((OVRP_1_44_0_t0DF156B1270FA4A8B5EA797E36FBCF02543E2533_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_44_0_t0DF156B1270FA4A8B5EA797E36FBCF02543E2533_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_45_0::ovrp_GetSystemHmd3DofModeEnabled(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_45_0_ovrp_GetSystemHmd3DofModeEnabled_m009C191DE369BEDA3AF66FBD9A090C78FDEB027C (int32_t* ___enabled0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemHmd3DofModeEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemHmd3DofModeEnabled)(___enabled0); #else int32_t returnValue = il2cppPInvokeFunc(___enabled0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_45_0::ovrp_Media_SetAvailableQueueIndexVulkan(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_45_0_ovrp_Media_SetAvailableQueueIndexVulkan_m099E2663873D587927C7880FBFA0C7FAB0283FC7 (uint32_t ___queueIndexVk0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetAvailableQueueIndexVulkan", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetAvailableQueueIndexVulkan)(___queueIndexVk0); #else int32_t returnValue = il2cppPInvokeFunc(___queueIndexVk0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_45_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_45_0__cctor_m2AD40E453AEAAFA4F1419CD962BD3630AFA2E02F (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 45, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)45), 0, /*hidden argument*/NULL); ((OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_45_0_tBC912919E51AEAF8ECAB702043E3985C90837770_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_46_0::ovrp_GetTiledMultiResDynamic(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_46_0_ovrp_GetTiledMultiResDynamic_m62262B0FB777883BB3A2D7B3FCBE2394BF242554 (int32_t* ___isDynamic0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTiledMultiResDynamic", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTiledMultiResDynamic)(___isDynamic0); #else int32_t returnValue = il2cppPInvokeFunc(___isDynamic0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_46_0::ovrp_SetTiledMultiResDynamic(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_46_0_ovrp_SetTiledMultiResDynamic_mBEFE31EEB3D076545DAA6AF40C48A6BA148A66BA (int32_t ___isDynamic0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetTiledMultiResDynamic", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetTiledMultiResDynamic)(___isDynamic0); #else int32_t returnValue = il2cppPInvokeFunc(___isDynamic0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_46_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_46_0__cctor_mE1D37FA1FC49BF7DE20649A94D3432AEEFFC5E24 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_46_0_tC3400A2C00B6D8EE38FD932CDD1C4F0A1ED21A42_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 46, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)46), 0, /*hidden argument*/NULL); ((OVRP_1_46_0_tC3400A2C00B6D8EE38FD932CDD1C4F0A1ED21A42_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_46_0_tC3400A2C00B6D8EE38FD932CDD1C4F0A1ED21A42_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_47_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_47_0__cctor_m3347D7A28EE57F427EEB7E607350A21D2CA1BB97 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_47_0_tA3F6C267E50F56F86ED5EB532817040B8EAE048F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 47, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)47), 0, /*hidden argument*/NULL); ((OVRP_1_47_0_tA3F6C267E50F56F86ED5EB532817040B8EAE048F_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_47_0_tA3F6C267E50F56F86ED5EB532817040B8EAE048F_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_48_0::ovrp_SetExternalCameraProperties(System.String,OVRPlugin/CameraIntrinsics&,OVRPlugin/CameraExtrinsics&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_48_0_ovrp_SetExternalCameraProperties_mA2C2028A08C6AD4BDD2874B79C89F0206FB5CEF9 (String_t* ___cameraName0, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA * ___cameraIntrinsics1, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF * ___cameraExtrinsics2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (char*, CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *, CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(char*) + sizeof(CameraIntrinsics_t8C71AD64BE2AD195E7C784274EE3C33F6082BDBA *) + sizeof(CameraExtrinsics_t8643E6D995362CE86E12FA93D6A07E89AF39FCFF *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetExternalCameraProperties", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___cameraName0' to native representation char* ____cameraName0_marshaled = NULL; ____cameraName0_marshaled = il2cpp_codegen_marshal_string(___cameraName0); // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetExternalCameraProperties)(____cameraName0_marshaled, ___cameraIntrinsics1, ___cameraExtrinsics2); #else int32_t returnValue = il2cppPInvokeFunc(____cameraName0_marshaled, ___cameraIntrinsics1, ___cameraExtrinsics2); #endif // Marshaling cleanup of parameter '___cameraName0' native representation il2cpp_codegen_marshal_free(____cameraName0_marshaled); ____cameraName0_marshaled = NULL; return returnValue; } // System.Void OVRPlugin/OVRP_1_48_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_48_0__cctor_mE4F40255561C5F313B68BB095875B912562B47E4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_48_0_tB369070283C048120D89034AA803B4BC3D3B2C34_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 48, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)48), 0, /*hidden argument*/NULL); ((OVRP_1_48_0_tB369070283C048120D89034AA803B4BC3D3B2C34_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_48_0_tB369070283C048120D89034AA803B4BC3D3B2C34_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_SetClientColorDesc(OVRPlugin/ColorSpace) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_SetClientColorDesc_mC88F7FF7A6FB7C3381923F56B75E6543AA6C6BD0 (int32_t ___colorSpace0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetClientColorDesc", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetClientColorDesc)(___colorSpace0); #else int32_t returnValue = il2cppPInvokeFunc(___colorSpace0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_GetHmdColorDesc(OVRPlugin/ColorSpace&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_GetHmdColorDesc_mB1DAE4C2ADB484EEF4C5FDB07590E1E405EB97C3 (int32_t* ___colorSpace0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetHmdColorDesc", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetHmdColorDesc)(___colorSpace0); #else int32_t returnValue = il2cppPInvokeFunc(___colorSpace0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_EncodeMrcFrameWithPoseTime(System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_EncodeMrcFrameWithPoseTime_mCCEBF5A19D4953B47D8FDAE9D075AA0314169F06 (intptr_t ___rawBuffer0, intptr_t ___audioDataPtr1, int32_t ___audioDataLen2, int32_t ___audioChannels3, double ___timestamp4, double ___poseTime5, int32_t* ___outSyncId6, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, intptr_t, int32_t, int32_t, double, double, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(double) + sizeof(double) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_EncodeMrcFrameWithPoseTime", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_EncodeMrcFrameWithPoseTime)(___rawBuffer0, ___audioDataPtr1, ___audioDataLen2, ___audioChannels3, ___timestamp4, ___poseTime5, ___outSyncId6); #else int32_t returnValue = il2cppPInvokeFunc(___rawBuffer0, ___audioDataPtr1, ___audioDataLen2, ___audioChannels3, ___timestamp4, ___poseTime5, ___outSyncId6); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime(System.IntPtr,System.IntPtr,System.IntPtr,System.Int32,System.Int32,System.Double,System.Double,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime_m98C771F41A80B6D5F9C0401B2ADF7B01D7A4EFB8 (intptr_t ___backgroundTextureHandle0, intptr_t ___foregroundTextureHandle1, intptr_t ___audioData2, int32_t ___audioDataLen3, int32_t ___audioChannels4, double ___timestamp5, double ___poseTime6, int32_t* ___outSyncId7, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, intptr_t, intptr_t, int32_t, int32_t, double, double, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(intptr_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(int32_t) + sizeof(double) + sizeof(double) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_EncodeMrcFrameDualTexturesWithPoseTime)(___backgroundTextureHandle0, ___foregroundTextureHandle1, ___audioData2, ___audioDataLen3, ___audioChannels4, ___timestamp5, ___poseTime6, ___outSyncId7); #else int32_t returnValue = il2cppPInvokeFunc(___backgroundTextureHandle0, ___foregroundTextureHandle1, ___audioData2, ___audioDataLen3, ___audioChannels4, ___timestamp5, ___poseTime6, ___outSyncId7); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_SetHeadsetControllerPose(OVRPlugin/Posef,OVRPlugin/Posef,OVRPlugin/Posef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_SetHeadsetControllerPose_m1D750736F054DD57CE47A84232AA6F2E73E35906 (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___headsetPose0, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___leftControllerPose1, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___rightControllerPose2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetHeadsetControllerPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetHeadsetControllerPose)(___headsetPose0, ___leftControllerPose1, ___rightControllerPose2); #else int32_t returnValue = il2cppPInvokeFunc(___headsetPose0, ___leftControllerPose1, ___rightControllerPose2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_EnumerateCameraAnchorHandles(System.Int32&,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_EnumerateCameraAnchorHandles_mEEF26CE46422423BDE086076E837EE8426679350 (int32_t* ___anchorCount0, intptr_t* ___CameraAnchorHandle1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*, intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*) + sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_EnumerateCameraAnchorHandles", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_EnumerateCameraAnchorHandles)(___anchorCount0, ___CameraAnchorHandle1); #else int32_t returnValue = il2cppPInvokeFunc(___anchorCount0, ___CameraAnchorHandle1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_GetCurrentCameraAnchorHandle(System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_GetCurrentCameraAnchorHandle_mA83FF11CD8721036A9959A83890CF9C9A58464DC (intptr_t* ___anchorHandle0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetCurrentCameraAnchorHandle", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetCurrentCameraAnchorHandle)(___anchorHandle0); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_GetCameraAnchorName(System.IntPtr,System.Char[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_GetCameraAnchorName_m5EDB15A3447C3155DB6599C4FEE639FB2FD88753 (intptr_t ___anchorHandle0, CharU5BU5D_t7B7FC5BC8091AA3B9CB0B29CDD80B5EE9254AA34* ___cameraName1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, uint8_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(void*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetCameraAnchorName", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___cameraName1' to native representation uint8_t* ____cameraName1_marshaled = NULL; if (___cameraName1 != NULL) { il2cpp_array_size_t ____cameraName1_Length = (___cameraName1)->max_length; ____cameraName1_marshaled = il2cpp_codegen_marshal_allocate_array(____cameraName1_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(____cameraName1_Length); i++) { (____cameraName1_marshaled)[i] = static_cast((___cameraName1)->GetAtUnchecked(static_cast(i))); } } else { ____cameraName1_marshaled = NULL; } // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetCameraAnchorName)(___anchorHandle0, ____cameraName1_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0, ____cameraName1_marshaled); #endif // Marshaling cleanup of parameter '___cameraName1' native representation if (____cameraName1_marshaled != NULL) { il2cpp_codegen_marshal_free(____cameraName1_marshaled); ____cameraName1_marshaled = NULL; } return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_GetCameraAnchorHandle(System.IntPtr,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_GetCameraAnchorHandle_m8D970A1A08CA46624DFF903BA46AAA1C8F5A227F (intptr_t ___anchorName0, intptr_t* ___anchorHandle1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetCameraAnchorHandle", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetCameraAnchorHandle)(___anchorName0, ___anchorHandle1); #else int32_t returnValue = il2cppPInvokeFunc(___anchorName0, ___anchorHandle1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_GetCameraAnchorType(System.IntPtr,OVRPlugin/CameraAnchorType&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_GetCameraAnchorType_mE2919210948D13870E5942B59DA8FF73D22B15DA (intptr_t ___anchorHandle0, int32_t* ___anchorType1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetCameraAnchorType", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetCameraAnchorType)(___anchorHandle0, ___anchorType1); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0, ___anchorType1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_CreateCustomCameraAnchor(System.IntPtr,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_CreateCustomCameraAnchor_m3160D101589938EC135BB58034CDF4DF6212EF5B (intptr_t ___anchorName0, intptr_t* ___anchorHandle1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_CreateCustomCameraAnchor", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_CreateCustomCameraAnchor)(___anchorName0, ___anchorHandle1); #else int32_t returnValue = il2cppPInvokeFunc(___anchorName0, ___anchorHandle1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_DestroyCustomCameraAnchor(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_DestroyCustomCameraAnchor_mFD35066FF576913366F10A42A431ABABF22748A5 (intptr_t ___anchorHandle0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_DestroyCustomCameraAnchor", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_DestroyCustomCameraAnchor)(___anchorHandle0); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_GetCustomCameraAnchorPose(System.IntPtr,OVRPlugin/Posef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_GetCustomCameraAnchorPose_m958527D7E636D7D7418C8F410BCE59B0DE80D7FF (intptr_t ___anchorHandle0, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___pose1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetCustomCameraAnchorPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetCustomCameraAnchorPose)(___anchorHandle0, ___pose1); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0, ___pose1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_SetCustomCameraAnchorPose(System.IntPtr,OVRPlugin/Posef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_SetCustomCameraAnchorPose_m1EC42A8C412C6213A3F05549282D9134B6705833 (intptr_t ___anchorHandle0, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___pose1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetCustomCameraAnchorPose", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetCustomCameraAnchorPose)(___anchorHandle0, ___pose1); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0, ___pose1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_GetCameraMinMaxDistance(System.IntPtr,System.Double&,System.Double&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_GetCameraMinMaxDistance_m54438909C7BF7227AADFA5220A3173F504B405C6 (intptr_t ___anchorHandle0, double* ___minDistance1, double* ___maxDistance2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, double*, double*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(double*) + sizeof(double*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetCameraMinMaxDistance", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetCameraMinMaxDistance)(___anchorHandle0, ___minDistance1, ___maxDistance2); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0, ___minDistance1, ___maxDistance2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_49_0::ovrp_Media_SetCameraMinMaxDistance(System.IntPtr,System.Double,System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_49_0_ovrp_Media_SetCameraMinMaxDistance_mC5824B66644CB2F8C5E1EB66C009D04B5A3337CF (intptr_t ___anchorHandle0, double ___minDistance1, double ___maxDistance2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, double, double); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(double) + sizeof(double); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetCameraMinMaxDistance", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetCameraMinMaxDistance)(___anchorHandle0, ___minDistance1, ___maxDistance2); #else int32_t returnValue = il2cppPInvokeFunc(___anchorHandle0, ___minDistance1, ___maxDistance2); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_49_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_49_0__cctor_m6B8979B270C18F22F182E4121912E9CC7EC7A394 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 49, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)49), 0, /*hidden argument*/NULL); ((OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_49_0_t37828BE2EB66B2F41CE8E6ED52665F41DB2EBEC3_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_50_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_50_0__cctor_m7A0B17A56A25E9FB74507A8CFDF38FDE13744F73 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_50_0_t9EFA9357FF3FEF8C309DC6EE50F28377385FD921_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 50, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)50), 0, /*hidden argument*/NULL); ((OVRP_1_50_0_t9EFA9357FF3FEF8C309DC6EE50F28377385FD921_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_50_0_t9EFA9357FF3FEF8C309DC6EE50F28377385FD921_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_51_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_51_0__cctor_m2AADE244E841BF24AF6319D52EBC54E81B8AAE7E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_51_0_t7B10C0008BFA569FB4619BB2D28EB3B1137647B9_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 51, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)51), 0, /*hidden argument*/NULL); ((OVRP_1_51_0_t7B10C0008BFA569FB4619BB2D28EB3B1137647B9_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_51_0_t7B10C0008BFA569FB4619BB2D28EB3B1137647B9_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_52_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_52_0__cctor_mA7B361146E3C813F904ED6212350AC69B13C07EF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_52_0_t30E413ECB7211AE4893F53F474EF6B6D7F61BABC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 52, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)52), 0, /*hidden argument*/NULL); ((OVRP_1_52_0_t30E413ECB7211AE4893F53F474EF6B6D7F61BABC_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_52_0_t30E413ECB7211AE4893F53F474EF6B6D7F61BABC_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_53_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_53_0__cctor_m753372BC5E5C1414A960C6E421C0E8E99B87EB90 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_53_0_t9E3767EEB3CA2A0B34A76D5F7FD6767FF7AD4F2F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 53, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)53), 0, /*hidden argument*/NULL); ((OVRP_1_53_0_t9E3767EEB3CA2A0B34A76D5F7FD6767FF7AD4F2F_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_53_0_t9E3767EEB3CA2A0B34A76D5F7FD6767FF7AD4F2F_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_54_0::ovrp_Media_SetPlatformInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_54_0_ovrp_Media_SetPlatformInitialized_m9DAC8E67E6B4FA340939BE5B23B7456EB02291D8 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetPlatformInitialized", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetPlatformInitialized)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_54_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_54_0__cctor_mBFC97F92787E6F107E8980E7513B9D4CD1F637D4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 54, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)54), 0, /*hidden argument*/NULL); ((OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_54_0_t1ACAE1595C9CFFEAB4DBC75B177FCD3BDFF003D7_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_55_0::ovrp_GetSkeleton2(OVRPlugin/SkeletonType,OVRPlugin/Skeleton2Internal&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_55_0_ovrp_GetSkeleton2_m509BCD0BBCC2EABAE41DDF935C9C09E15A0D68D0 (int32_t ___skeletonType0, Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6 * ___skeleton1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(Skeleton2Internal_tF2AA328B76E6F3991CF4BB5F99258E2F12A403E6 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSkeleton2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSkeleton2)(___skeletonType0, ___skeleton1); #else int32_t returnValue = il2cppPInvokeFunc(___skeletonType0, ___skeleton1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_55_0::ovrp_PollEvent(OVRPlugin/EventDataBuffer&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_55_0_ovrp_PollEvent_m2853923D755E4B5CE034DFBDD029593BB0A946CC (EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9 * ___eventDataBuffer0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_PollEvent", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___eventDataBuffer0' to native representation EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke* ____eventDataBuffer0_marshaled = NULL; EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshaled_pinvoke ____eventDataBuffer0_marshaled_dereferenced = {}; EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke(*___eventDataBuffer0, ____eventDataBuffer0_marshaled_dereferenced); ____eventDataBuffer0_marshaled = &____eventDataBuffer0_marshaled_dereferenced; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_PollEvent)(____eventDataBuffer0_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(____eventDataBuffer0_marshaled); #endif // Marshaling of parameter '___eventDataBuffer0' back from native representation EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9 _____eventDataBuffer0_marshaled_unmarshaled_dereferenced; memset((&_____eventDataBuffer0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____eventDataBuffer0_marshaled_unmarshaled_dereferenced)); EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke_back(*____eventDataBuffer0_marshaled, _____eventDataBuffer0_marshaled_unmarshaled_dereferenced); EventDataBuffer_tD55C8F1085C0B7FD1DC9C7C3683C5352833F2AA9_marshal_pinvoke_cleanup(*____eventDataBuffer0_marshaled); *___eventDataBuffer0 = _____eventDataBuffer0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___eventDataBuffer0)->___EventData_1), (void*)NULL); return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_55_0::ovrp_GetNativeXrApiType(OVRPlugin/XrApi&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_55_0_ovrp_GetNativeXrApiType_mD2AAB6D2876DB9CAA04E291F9E2C9FBB19708C5C (int32_t* ___xrApi0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNativeXrApiType", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNativeXrApiType)(___xrApi0); #else int32_t returnValue = il2cppPInvokeFunc(___xrApi0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_55_0::ovrp_GetNativeOpenXRHandles(System.UInt64&,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_55_0_ovrp_GetNativeOpenXRHandles_m7745078C2628684068898F8AFFB07C01ABF17BC6 (uint64_t* ___xrInstance0, uint64_t* ___xrSession1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*, uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNativeOpenXRHandles", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNativeOpenXRHandles)(___xrInstance0, ___xrSession1); #else int32_t returnValue = il2cppPInvokeFunc(___xrInstance0, ___xrSession1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_55_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_55_0__cctor_m430C70EB492E4FD3D9D0918E9FB5B0604655CF3D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_55_0_tDCA8C7B9D9A46B3E59241FA312C9EF811A9CFE78_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 55, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)55), 0, /*hidden argument*/NULL); ((OVRP_1_55_0_tDCA8C7B9D9A46B3E59241FA312C9EF811A9CFE78_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_55_0_tDCA8C7B9D9A46B3E59241FA312C9EF811A9CFE78_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_55_1::ovrp_PollEvent2(OVRPlugin/EventType&,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_55_1_ovrp_PollEvent2_m4680122EF36A15F531936EFAD353603E49499C48 (int32_t* ___eventType0, intptr_t* ___eventData1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*, intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*) + sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_PollEvent2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_PollEvent2)(___eventType0, ___eventData1); #else int32_t returnValue = il2cppPInvokeFunc(___eventType0, ___eventData1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_55_1::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_55_1__cctor_mE5A30C2A9850D8F59AAF2B1A1F4BDFE490283CDC (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_55_1_tEBBDE7CE8383D1C93474948609762A9723868E97_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 55, 1); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)55), 1, /*hidden argument*/NULL); ((OVRP_1_55_1_tEBBDE7CE8383D1C93474948609762A9723868E97_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_55_1_tEBBDE7CE8383D1C93474948609762A9723868E97_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_56_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_56_0__cctor_m0990032096B006FEDFADA337790E0C3F964883C3 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_56_0_t8A33D176366CF62890EE8AD9878986B0980BEA3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 56, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)56), 0, /*hidden argument*/NULL); ((OVRP_1_56_0_t8A33D176366CF62890EE8AD9878986B0980BEA3A_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_56_0_t8A33D176366CF62890EE8AD9878986B0980BEA3A_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_57_0::ovrp_Media_GetPlatformCameraMode(OVRPlugin/Media/PlatformCameraMode&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_57_0_ovrp_Media_GetPlatformCameraMode_m3E8CB0D24C644B03986E440794FEE8B63E494D16 (int32_t* ___platformCameraMode0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_GetPlatformCameraMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_GetPlatformCameraMode)(___platformCameraMode0); #else int32_t returnValue = il2cppPInvokeFunc(___platformCameraMode0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_57_0::ovrp_Media_SetPlatformCameraMode(OVRPlugin/Media/PlatformCameraMode) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_57_0_ovrp_Media_SetPlatformCameraMode_m9799203D81E94E953ED4858154E419969C08580C (int32_t ___platformCameraMode0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_SetPlatformCameraMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_SetPlatformCameraMode)(___platformCameraMode0); #else int32_t returnValue = il2cppPInvokeFunc(___platformCameraMode0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_57_0::ovrp_SetEyeFovPremultipliedAlphaMode(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_57_0_ovrp_SetEyeFovPremultipliedAlphaMode_mDF29448AD9112C5E86CEDCF2AD7CE3565D22DBA1 (int32_t ___enabled0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetEyeFovPremultipliedAlphaMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetEyeFovPremultipliedAlphaMode)(___enabled0); #else int32_t returnValue = il2cppPInvokeFunc(___enabled0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_57_0::ovrp_GetEyeFovPremultipliedAlphaMode(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_57_0_ovrp_GetEyeFovPremultipliedAlphaMode_m8106971C6EDCDFFDC8E31D12A757BB484B77EE30 (int32_t* ___enabled0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetEyeFovPremultipliedAlphaMode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetEyeFovPremultipliedAlphaMode)(___enabled0); #else int32_t returnValue = il2cppPInvokeFunc(___enabled0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_57_0::ovrp_SetKeyboardOverlayUV(OVRPlugin/Vector2f) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_57_0_ovrp_SetKeyboardOverlayUV_m72C31E694B6E169059B63F89776719175C5B7C41 (Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ___uv0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Vector2f_t1A3A349F1E6819E0FF7A685BC6FC4067846FD354 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetKeyboardOverlayUV", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetKeyboardOverlayUV)(___uv0); #else int32_t returnValue = il2cppPInvokeFunc(___uv0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_57_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_57_0__cctor_m6E4B6EAB2A45C921CAF3F109FA623B1358742990 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 57, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)57), 0, /*hidden argument*/NULL); ((OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_57_0_t37D7059351C83120BD43C73F28C837AF9627707D_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_58_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_58_0__cctor_mBAA8C0FE71DCAB695239DE9B036A357AA6E475DA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_58_0_tE0F165BCC9707558309BE31DE2A44AA8FA0C0ADD_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 58, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)58), 0, /*hidden argument*/NULL); ((OVRP_1_58_0_tE0F165BCC9707558309BE31DE2A44AA8FA0C0ADD_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_58_0_tE0F165BCC9707558309BE31DE2A44AA8FA0C0ADD_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_59_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_59_0__cctor_m3E18619B1A01A42A00D4E2B5BB0CF20F14D93AC4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_59_0_t42CD637E323FB0EA06D160293FE5E247F157FD42_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 59, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)59), 0, /*hidden argument*/NULL); ((OVRP_1_59_0_t42CD637E323FB0EA06D160293FE5E247F157FD42_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_59_0_t42CD637E323FB0EA06D160293FE5E247F157FD42_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/SystemRegion OVRPlugin/OVRP_1_5_0::ovrp_GetSystemRegion() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_5_0_ovrp_GetSystemRegion_mDA9326E97C2EF6186F12DFE113370AB1B92E1066 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemRegion", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemRegion)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_5_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_5_0__cctor_mE5396E6A98476B27666EE5AA0F14B4439721291C (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_5_0_t6A85C8628F00CC1DF9984C6D56E2F7F8A0E8C6CC_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 5, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 5, 0, /*hidden argument*/NULL); ((OVRP_1_5_0_t6A85C8628F00CC1DF9984C6D56E2F7F8A0E8C6CC_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_5_0_t6A85C8628F00CC1DF9984C6D56E2F7F8A0E8C6CC_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_60_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_60_0__cctor_mA4599CDF6712F03D07C025CDE4A7D10B5345102E (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_60_0_tFC45B48EA6EFC0E25EC1CC710E9C4A4CBCA95E3A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 60, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)60), 0, /*hidden argument*/NULL); ((OVRP_1_60_0_tFC45B48EA6EFC0E25EC1CC710E9C4A4CBCA95E3A_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_60_0_tFC45B48EA6EFC0E25EC1CC710E9C4A4CBCA95E3A_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_61_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_61_0__cctor_mAA8626EE2E2765A479845A7C693407511D6638AE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_61_0_t37221D9E3C4918BD6E0C7198F29A09BBE1A77DCB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 61, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)61), 0, /*hidden argument*/NULL); ((OVRP_1_61_0_t37221D9E3C4918BD6E0C7198F29A09BBE1A77DCB_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_61_0_t37221D9E3C4918BD6E0C7198F29A09BBE1A77DCB_il2cpp_TypeInfo_var))->set_version_0(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 OVRPlugin/OVRP_1_62_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_62_0__cctor_m605B2D3BA2151A4E9C45D0667D6EE48EA1E36ACE (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_62_0_t6459C076884CE1ACA2B2AC0DFFB731E00CB18FCA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 62, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)62), 0, /*hidden argument*/NULL); ((OVRP_1_62_0_t6459C076884CE1ACA2B2AC0DFFB731E00CB18FCA_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_62_0_t6459C076884CE1ACA2B2AC0DFFB731E00CB18FCA_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_CreateSpatialAnchor(OVRPlugin/SpatialEntityAnchorCreateInfo&,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_CreateSpatialAnchor_mD0E2A29447517DE6401E68777E5A6C0D74FF9689 (SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC * ___createInfo0, uint64_t* ___space1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC *, uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(SpatialEntityAnchorCreateInfo_t168CFBDC4C654C4996C13403D8655E3104A7DAAC *) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_CreateSpatialAnchor", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_CreateSpatialAnchor)(___createInfo0, ___space1); #else int32_t returnValue = il2cppPInvokeFunc(___createInfo0, ___space1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_SetComponentEnabled(System.UInt64&,OVRPlugin/SpatialEntityComponentType,OVRPlugin/Bool,System.Double,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_SetComponentEnabled_mFD69F1A590CFF31F2485986CBA5D77B09843424D (uint64_t* ___space0, int32_t ___componentType1, int32_t ___enable2, double ___timeout3, uint64_t* ___requestId4, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*, int32_t, int32_t, double, uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*) + sizeof(int32_t) + sizeof(int32_t) + sizeof(double) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetComponentEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetComponentEnabled)(___space0, ___componentType1, ___enable2, ___timeout3, ___requestId4); #else int32_t returnValue = il2cppPInvokeFunc(___space0, ___componentType1, ___enable2, ___timeout3, ___requestId4); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_GetComponentEnabled(System.UInt64&,OVRPlugin/SpatialEntityComponentType,OVRPlugin/Bool&,OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_GetComponentEnabled_m63A0E42908459DE8CF45A50156DC664C4DE03515 (uint64_t* ___space0, int32_t ___componentType1, int32_t* ___enabled2, int32_t* ___changePending3, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*, int32_t, int32_t*, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*) + sizeof(int32_t) + sizeof(int32_t*) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetComponentEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetComponentEnabled)(___space0, ___componentType1, ___enabled2, ___changePending3); #else int32_t returnValue = il2cppPInvokeFunc(___space0, ___componentType1, ___enabled2, ___changePending3); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_EnumerateSupportedComponents(System.UInt64&,System.UInt32,System.UInt32&,OVRPlugin/SpatialEntityComponentType[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_EnumerateSupportedComponents_m247F563EEB603C64F3EDFD52532740667D34A5C0 (uint64_t* ___space0, uint32_t ___componentTypesCapacityInput1, uint32_t* ___componentTypesCountOutput2, SpatialEntityComponentTypeU5BU5D_t36EC2C947308D99EFA43208D6523D0E43A270BA8* ___componentTypes3, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*, uint32_t, uint32_t*, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*) + sizeof(uint32_t) + sizeof(uint32_t*) + sizeof(void*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_EnumerateSupportedComponents", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___componentTypes3' to native representation int32_t* ____componentTypes3_marshaled = NULL; if (___componentTypes3 != NULL) { ____componentTypes3_marshaled = reinterpret_cast((___componentTypes3)->GetAddressAtUnchecked(0)); } // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_EnumerateSupportedComponents)(___space0, ___componentTypesCapacityInput1, ___componentTypesCountOutput2, ____componentTypes3_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(___space0, ___componentTypesCapacityInput1, ___componentTypesCountOutput2, ____componentTypes3_marshaled); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_TerminateSpatialEntityQuery(System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_TerminateSpatialEntityQuery_mEEBFCB52D44A225302527C90883F4283EADFB791 (uint64_t* ___requestId0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_TerminateSpatialEntityQuery", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_TerminateSpatialEntityQuery)(___requestId0); #else int32_t returnValue = il2cppPInvokeFunc(___requestId0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_SaveSpatialEntity(System.UInt64&,OVRPlugin/SpatialEntityStorageLocation,OVRPlugin/SpatialEntityStoragePersistenceMode,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_SaveSpatialEntity_mA627A6D261685414358471D72F8F6919848BFEBB (uint64_t* ___space0, int32_t ___location1, int32_t ___mode2, uint64_t* ___requestId3, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*, int32_t, int32_t, uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*) + sizeof(int32_t) + sizeof(int32_t) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SaveSpatialEntity", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SaveSpatialEntity)(___space0, ___location1, ___mode2, ___requestId3); #else int32_t returnValue = il2cppPInvokeFunc(___space0, ___location1, ___mode2, ___requestId3); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_EraseSpatialEntity(System.UInt64&,OVRPlugin/SpatialEntityStorageLocation,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_EraseSpatialEntity_m6FF1D71D80111C9231A63B9626C50149A33D5ED9 (uint64_t* ___space0, int32_t ___location1, uint64_t* ___requestId2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*, int32_t, uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*) + sizeof(int32_t) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_EraseSpatialEntity", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_EraseSpatialEntity)(___space0, ___location1, ___requestId2); #else int32_t returnValue = il2cppPInvokeFunc(___space0, ___location1, ___requestId2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_InitializeInsightPassthrough() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_InitializeInsightPassthrough_m83D4FBFD35AAA59B72DC90C2580CDA1DD8FA9CAB (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_InitializeInsightPassthrough", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_InitializeInsightPassthrough)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_ShutdownInsightPassthrough() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_ShutdownInsightPassthrough_m4A03F93FE959B46D0122FFEB5D19DDD0964BE57D (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_ShutdownInsightPassthrough", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_ShutdownInsightPassthrough)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_63_0::ovrp_GetInsightPassthroughInitialized() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_GetInsightPassthroughInitialized_m8984EE23585E5F18B3AB2E25325428105F263542 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetInsightPassthroughInitialized", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetInsightPassthroughInitialized)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_SetInsightPassthroughStyle(System.Int32,OVRPlugin/InsightPassthroughStyle) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_SetInsightPassthroughStyle_mCFCF8487D3BA6EA7F1BAE6398AE75B89951F7C1B (int32_t ___layerId0, InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031 ___style1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(InsightPassthroughStyle_tB3DE3CBE3D27F3122FE838A0005A399D4C9E2031 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetInsightPassthroughStyle", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetInsightPassthroughStyle)(___layerId0, ___style1); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0, ___style1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_CreateInsightTriangleMesh(System.Int32,System.IntPtr,System.Int32,System.IntPtr,System.Int32,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_CreateInsightTriangleMesh_mE0BD09361D2E7A3152D9F68F3A7F9FBD353D5D44 (int32_t ___layerId0, intptr_t ___vertices1, int32_t ___vertexCount2, intptr_t ___triangles3, int32_t ___triangleCount4, uint64_t* ___meshHandle5, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, intptr_t, int32_t, intptr_t, int32_t, uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(intptr_t) + sizeof(int32_t) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_CreateInsightTriangleMesh", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_CreateInsightTriangleMesh)(___layerId0, ___vertices1, ___vertexCount2, ___triangles3, ___triangleCount4, ___meshHandle5); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0, ___vertices1, ___vertexCount2, ___triangles3, ___triangleCount4, ___meshHandle5); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_DestroyInsightTriangleMesh(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_DestroyInsightTriangleMesh_m9B0B35E7105DFBA6D53ED3AE712918DD033B7AC2 (uint64_t ___meshHandle0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_DestroyInsightTriangleMesh", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_DestroyInsightTriangleMesh)(___meshHandle0); #else int32_t returnValue = il2cppPInvokeFunc(___meshHandle0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_AddInsightPassthroughSurfaceGeometry(System.Int32,System.UInt64,UnityEngine.Matrix4x4,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_AddInsightPassthroughSurfaceGeometry_mD7BB2364B05B62F0F9E3DD5FA867EC83B69D4F9F (int32_t ___layerId0, uint64_t ___meshHandle1, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___T_world_model2, uint64_t* ___geometryInstanceHandle3, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, uint64_t, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 , uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(uint64_t) + sizeof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_AddInsightPassthroughSurfaceGeometry", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_AddInsightPassthroughSurfaceGeometry)(___layerId0, ___meshHandle1, ___T_world_model2, ___geometryInstanceHandle3); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0, ___meshHandle1, ___T_world_model2, ___geometryInstanceHandle3); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_DestroyInsightPassthroughGeometryInstance(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_DestroyInsightPassthroughGeometryInstance_mA0698790416C0C847B910EE1F34DC51A9E0B9C94 (uint64_t ___geometryInstanceHandle0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_DestroyInsightPassthroughGeometryInstance", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_DestroyInsightPassthroughGeometryInstance)(___geometryInstanceHandle0); #else int32_t returnValue = il2cppPInvokeFunc(___geometryInstanceHandle0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_63_0::ovrp_UpdateInsightPassthroughGeometryTransform(System.UInt64,UnityEngine.Matrix4x4) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_63_0_ovrp_UpdateInsightPassthroughGeometryTransform_m6AB18262F128F7F557191ECC65BBCF02410A9797 (uint64_t ___geometryInstanceHandle0, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ___T_world_model1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t, Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t) + sizeof(Matrix4x4_tDE7FF4F2E2EA284F6EFE00D627789D0E5B8B4461 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_UpdateInsightPassthroughGeometryTransform", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_UpdateInsightPassthroughGeometryTransform)(___geometryInstanceHandle0, ___T_world_model1); #else int32_t returnValue = il2cppPInvokeFunc(___geometryInstanceHandle0, ___T_world_model1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_63_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_63_0__cctor_mA7950F187D1ED0E8376F80E44F9941372BC8C925 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_63_0_t41C3B110FD473A2D016105D3597E467398423C6B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 63, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)63), 0, /*hidden argument*/NULL); ((OVRP_1_63_0_t41C3B110FD473A2D016105D3597E467398423C6B_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_63_0_t41C3B110FD473A2D016105D3597E467398423C6B_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_64_0::ovrp_LocateSpace(OVRPlugin/Posef&,System.UInt64&,OVRPlugin/TrackingOrigin) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_64_0_ovrp_LocateSpace_m08F75DF4703067F4803E675A14F407B4D3BC1BAF (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * ___location0, uint64_t* ___space1, int32_t ___trackingOrigin2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *, uint64_t*, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 *) + sizeof(uint64_t*) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_LocateSpace", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_LocateSpace)(___location0, ___space1, ___trackingOrigin2); #else int32_t returnValue = il2cppPInvokeFunc(___location0, ___space1, ___trackingOrigin2); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_64_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_64_0__cctor_mB861AAEAD73FC34E001960775C1846390A793DB2 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_64_0_t8BADB40670843F14D970DF497770D145D19DF740_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 64, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)64), 0, /*hidden argument*/NULL); ((OVRP_1_64_0_t8BADB40670843F14D970DF497770D145D19DF740_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_64_0_t8BADB40670843F14D970DF497770D145D19DF740_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxLoadFromMemory(System.IntPtr&,System.UInt32,System.IntPtr&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxLoadFromMemory_mB1CB3239B3490B29B49F5DFBCAE3B6EDAF046020 (intptr_t* ___data0, uint32_t ___length1, intptr_t* ___texture2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t*, uint32_t, intptr_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t*) + sizeof(uint32_t) + sizeof(intptr_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_KtxLoadFromMemory", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_KtxLoadFromMemory)(___data0, ___length1, ___texture2); #else int32_t returnValue = il2cppPInvokeFunc(___data0, ___length1, ___texture2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTextureWidth(System.IntPtr,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTextureWidth_m13EF0309AEB0EBFE244E91885BE28FF1B5E9223A (intptr_t ___texture0, uint32_t* ___width1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, uint32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(uint32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_KtxTextureWidth", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_KtxTextureWidth)(___texture0, ___width1); #else int32_t returnValue = il2cppPInvokeFunc(___texture0, ___width1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTextureHeight(System.IntPtr,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTextureHeight_m55A19AB9F85E5735DF54E78A93CDAF02D662D095 (intptr_t ___texture0, uint32_t* ___height1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, uint32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(uint32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_KtxTextureHeight", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_KtxTextureHeight)(___texture0, ___height1); #else int32_t returnValue = il2cppPInvokeFunc(___texture0, ___height1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTranscode(System.IntPtr,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTranscode_m299E6DA0BD38D2CA76BCEFCDC721518679364569 (intptr_t ___texture0, uint32_t ___format1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_KtxTranscode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_KtxTranscode)(___texture0, ___format1); #else int32_t returnValue = il2cppPInvokeFunc(___texture0, ___format1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxGetTextureData(System.IntPtr,System.IntPtr,System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxGetTextureData_mEA0666E8325E83A27AA7C92BAE58F7C5C264F24F (intptr_t ___texture0, intptr_t ___data1, uint32_t ___bufferSize2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, intptr_t, uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(intptr_t) + sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_KtxGetTextureData", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_KtxGetTextureData)(___texture0, ___data1, ___bufferSize2); #else int32_t returnValue = il2cppPInvokeFunc(___texture0, ___data1, ___bufferSize2); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxTextureSize(System.IntPtr,System.UInt32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxTextureSize_mD7DAE763F450AA4CC9A790FF5C9B739B1E1D3F3D (intptr_t ___texture0, uint32_t* ___size1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t, uint32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t) + sizeof(uint32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_KtxTextureSize", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_KtxTextureSize)(___texture0, ___size1); #else int32_t returnValue = il2cppPInvokeFunc(___texture0, ___size1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_KtxDestroy(System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_KtxDestroy_m33AF3613A45A5D5812E76B3ADD0A14B7FB6C1941 (intptr_t ___texture0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_KtxDestroy", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_KtxDestroy)(___texture0); #else int32_t returnValue = il2cppPInvokeFunc(___texture0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_65_0::ovrp_DestroySpace(System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_65_0_ovrp_DestroySpace_m3312B34DB7CA8096E30CAA1482EEB0DCE312051C (uint64_t* ___space0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_DestroySpace", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_DestroySpace)(___space0); #else int32_t returnValue = il2cppPInvokeFunc(___space0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_65_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_65_0__cctor_m9286C272E171A051D81153FAD88904C09D80B359 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 65, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)65), 0, /*hidden argument*/NULL); ((OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_65_0_tD64C9D6C64FF4AA93A05FC487E1E335A35E33CD0_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_66_0::ovrp_GetInsightPassthroughInitializationState() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_66_0_ovrp_GetInsightPassthroughInitializationState_m4633B384E606F7E73D210882123A5B02B2BAB25B (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetInsightPassthroughInitializationState", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetInsightPassthroughInitializationState)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_66_0::ovrp_Media_IsCastingToRemoteClient(OVRPlugin/Bool&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_66_0_ovrp_Media_IsCastingToRemoteClient_m63888DE9F088701A41085FDE0BD41F0A9E5C54D5 (int32_t* ___isCasting0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Media_IsCastingToRemoteClient", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Media_IsCastingToRemoteClient)(___isCasting0); #else int32_t returnValue = il2cppPInvokeFunc(___isCasting0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_66_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_66_0__cctor_mCCD393F6B43A1963CD65909A8DFE3AC5C964DB07 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 66, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)66), 0, /*hidden argument*/NULL); ((OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_66_0_t20594063ACB26928C04C5E8E20FE2039CD6F7B0D_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_67_0::ovrp_QuerySpatialEntity(OVRPlugin/SpatialEntityQueryInfo&,System.UInt64&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_67_0_ovrp_QuerySpatialEntity_m1A8B340A630C842A0C51CFBC97CC3A2E2332B6AC (SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722 * ___queryInfo0, uint64_t* ___requestId1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke*, uint64_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke*) + sizeof(uint64_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_QuerySpatialEntity", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___queryInfo0' to native representation SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke* ____queryInfo0_marshaled = NULL; SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke ____queryInfo0_marshaled_dereferenced = {}; SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke(*___queryInfo0, ____queryInfo0_marshaled_dereferenced); ____queryInfo0_marshaled = &____queryInfo0_marshaled_dereferenced; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_QuerySpatialEntity)(____queryInfo0_marshaled, ___requestId1); #else int32_t returnValue = il2cppPInvokeFunc(____queryInfo0_marshaled, ___requestId1); #endif // Marshaling of parameter '___queryInfo0' back from native representation SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722 _____queryInfo0_marshaled_unmarshaled_dereferenced; memset((&_____queryInfo0_marshaled_unmarshaled_dereferenced), 0, sizeof(_____queryInfo0_marshaled_unmarshaled_dereferenced)); SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke_back(*____queryInfo0_marshaled, _____queryInfo0_marshaled_unmarshaled_dereferenced); SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke_cleanup(*____queryInfo0_marshaled); *___queryInfo0 = _____queryInfo0_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((&((___queryInfo0)->___IdInfo_6))->___Ids_0), (void*)NULL); return returnValue; } // System.Void OVRPlugin/OVRP_1_67_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_67_0__cctor_m3C10DBE8C763379743FD6734BF901FF4698339CB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_67_0_t520D6EB5DA725CF803E8C83168059AB3A4A636E3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 67, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)67), 0, /*hidden argument*/NULL); ((OVRP_1_67_0_t520D6EB5DA725CF803E8C83168059AB3A4A636E3_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_67_0_t520D6EB5DA725CF803E8C83168059AB3A4A636E3_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_LoadRenderModel(System.UInt64,System.UInt32,System.UInt32&,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_LoadRenderModel_m83981BF9A605E9F38D655943F763367D7DF58225 (uint64_t ___modelKey0, uint32_t ___bufferInputCapacity1, uint32_t* ___bufferCountOutput2, intptr_t ___buffer3, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t, uint32_t, uint32_t*, intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t) + sizeof(uint32_t) + sizeof(uint32_t*) + sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_LoadRenderModel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_LoadRenderModel)(___modelKey0, ___bufferInputCapacity1, ___bufferCountOutput2, ___buffer3); #else int32_t returnValue = il2cppPInvokeFunc(___modelKey0, ___bufferInputCapacity1, ___bufferCountOutput2, ___buffer3); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_GetRenderModelPaths(System.UInt32,System.IntPtr) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_GetRenderModelPaths_mA0FFF42586CE9181F16FF4CA9886BE1122FE1D62 (uint32_t ___index0, intptr_t ___path1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t, intptr_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(intptr_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetRenderModelPaths", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetRenderModelPaths)(___index0, ___path1); #else int32_t returnValue = il2cppPInvokeFunc(___index0, ___path1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_GetRenderModelProperties(System.String,OVRPlugin/RenderModelPropertiesInternal&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_GetRenderModelProperties_m3C2E7EAD326EDCE24AD5B333CAA8B637B850E97B (String_t* ___path0, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43 * ___properties1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (char*, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(char*) + sizeof(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetRenderModelProperties", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___path0' to native representation char* ____path0_marshaled = NULL; ____path0_marshaled = il2cpp_codegen_marshal_string(___path0); // Marshaling of parameter '___properties1' to native representation RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke ____properties1_empty = {}; RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke* ____properties1_marshaled = &____properties1_empty; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetRenderModelProperties)(____path0_marshaled, ____properties1_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(____path0_marshaled, ____properties1_marshaled); #endif // Marshaling cleanup of parameter '___path0' native representation il2cpp_codegen_marshal_free(____path0_marshaled); ____path0_marshaled = NULL; // Marshaling of parameter '___properties1' back from native representation RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43 _____properties1_marshaled_unmarshaled_dereferenced; memset((&_____properties1_marshaled_unmarshaled_dereferenced), 0, sizeof(_____properties1_marshaled_unmarshaled_dereferenced)); RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke_back(*____properties1_marshaled, _____properties1_marshaled_unmarshaled_dereferenced); *___properties1 = _____properties1_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___properties1)->___ModelName_0), (void*)NULL); // Marshaling cleanup of parameter '___properties1' native representation RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke_cleanup(*____properties1_marshaled); return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_SetInsightPassthroughKeyboardHandsIntensity(System.Int32,OVRPlugin/InsightPassthroughKeyboardHandsIntensity) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_SetInsightPassthroughKeyboardHandsIntensity_mF78331DB9DC6FF80C6593DCE12D037847E334A56 (int32_t ___layerId0, InsightPassthroughKeyboardHandsIntensity_tD403C83ACD76793F037A858F942CEBA7096FF8D1 ___intensity1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, InsightPassthroughKeyboardHandsIntensity_tD403C83ACD76793F037A858F942CEBA7096FF8D1 ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(InsightPassthroughKeyboardHandsIntensity_tD403C83ACD76793F037A858F942CEBA7096FF8D1 ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetInsightPassthroughKeyboardHandsIntensity", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetInsightPassthroughKeyboardHandsIntensity)(___layerId0, ___intensity1); #else int32_t returnValue = il2cppPInvokeFunc(___layerId0, ___intensity1); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_StartKeyboardTracking(System.UInt64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_StartKeyboardTracking_m1F69244A84AE2A5BE0B3861974780570A987C5B6 (uint64_t ___trackedKeyboardId0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint64_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint64_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_StartKeyboardTracking", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_StartKeyboardTracking)(___trackedKeyboardId0); #else int32_t returnValue = il2cppPInvokeFunc(___trackedKeyboardId0); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_StopKeyboardTracking() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_StopKeyboardTracking_mE73516C4F806BCA62F04C8A23B0A2D4E0D01C71C (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_StopKeyboardTracking", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_StopKeyboardTracking)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_GetSystemKeyboardDescription(OVRPlugin/TrackedKeyboardQueryFlags,OVRPlugin/KeyboardDescription&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_GetSystemKeyboardDescription_m972F2501861949DB077D39048AADB123F8D58A86 (int32_t ___keyboardQueryFlags0, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E * ___keyboardDescription1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemKeyboardDescription", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Marshaling of parameter '___keyboardDescription1' to native representation KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke ____keyboardDescription1_empty = {}; KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshaled_pinvoke* ____keyboardDescription1_marshaled = &____keyboardDescription1_empty; // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemKeyboardDescription)(___keyboardQueryFlags0, ____keyboardDescription1_marshaled); #else int32_t returnValue = il2cppPInvokeFunc(___keyboardQueryFlags0, ____keyboardDescription1_marshaled); #endif // Marshaling of parameter '___keyboardDescription1' back from native representation KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E _____keyboardDescription1_marshaled_unmarshaled_dereferenced; memset((&_____keyboardDescription1_marshaled_unmarshaled_dereferenced), 0, sizeof(_____keyboardDescription1_marshaled_unmarshaled_dereferenced)); KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke_back(*____keyboardDescription1_marshaled, _____keyboardDescription1_marshaled_unmarshaled_dereferenced); *___keyboardDescription1 = _____keyboardDescription1_marshaled_unmarshaled_dereferenced; Il2CppCodeGenWriteBarrier((void**)&((___keyboardDescription1)->___Name_0), (void*)NULL); // Marshaling cleanup of parameter '___keyboardDescription1' native representation KeyboardDescription_t01CF419B8C1814771BDC66751E1BD9211E8C5B2E_marshal_pinvoke_cleanup(*____keyboardDescription1_marshaled); return returnValue; } // OVRPlugin/Result OVRPlugin/OVRP_1_68_0::ovrp_GetKeyboardState(OVRPlugin/Step,System.Int32,OVRPlugin/KeyboardState&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_68_0_ovrp_GetKeyboardState_mEBD9C77A5B4DD36706DE6C948ACC37585C0B775F (int32_t ___stepId0, int32_t ___frameIndex1, KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5 * ___keyboardState2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(KeyboardState_tFECE6DFFCCE320852F48CAF0332D8C21675B0DB5 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetKeyboardState", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetKeyboardState)(___stepId0, ___frameIndex1, ___keyboardState2); #else int32_t returnValue = il2cppPInvokeFunc(___stepId0, ___frameIndex1, ___keyboardState2); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_68_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_68_0__cctor_m86A26E549451A89FAEAA4F97BE19B601291AF1A6 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_68_0_tD68BE9E69A7CCD84E81240104FD4CE0B0ABDDCFB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 68, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)68), 0, /*hidden argument*/NULL); ((OVRP_1_68_0_tD68BE9E69A7CCD84E81240104FD4CE0B0ABDDCFB_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_68_0_tD68BE9E69A7CCD84E81240104FD4CE0B0ABDDCFB_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Result OVRPlugin/OVRP_1_69_0::ovrp_GetNodePoseStateImmediate(OVRPlugin/Node,OVRPlugin/PoseStatef&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_69_0_ovrp_GetNodePoseStateImmediate_m2E5048C1D9C301A8315D12983242020320405135 (int32_t ___nodeId0, PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 * ___nodePoseState1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 *); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 *); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePoseStateImmediate", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetNodePoseStateImmediate)(___nodeId0, ___nodePoseState1); #else int32_t returnValue = il2cppPInvokeFunc(___nodeId0, ___nodePoseState1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_69_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_69_0__cctor_m8DDB95FFE118C9DD9A637C09C7516FFFA3130030 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_69_0_t8501AD6F6097431F5C11055E4F7B3155381936E1_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 69, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)69), 0, /*hidden argument*/NULL); ((OVRP_1_69_0_t8501AD6F6097431F5C11055E4F7B3155381936E1_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_69_0_t8501AD6F6097431F5C11055E4F7B3155381936E1_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_1_6_0::ovrp_GetTrackingIPDEnabled() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_6_0_ovrp_GetTrackingIPDEnabled_m0BCCC28E8175D26E58A9FF29A1B04DBB4D5C2C9D (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetTrackingIPDEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetTrackingIPDEnabled)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_6_0::ovrp_SetTrackingIPDEnabled(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_6_0_ovrp_SetTrackingIPDEnabled_m5BD5D0305783E4DAA6B1EB404BA47D6A3787A497 (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetTrackingIPDEnabled", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetTrackingIPDEnabled)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/HapticsDesc OVRPlugin/OVRP_1_6_0::ovrp_GetControllerHapticsDesc(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 OVRP_1_6_0_ovrp_GetControllerHapticsDesc_mC05A4BA5B23EF43D16676E4B3045FED3CA9C6790 (uint32_t ___controllerMask0, const RuntimeMethod* method) { typedef HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 (CDECL *PInvokeFunc) (uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetControllerHapticsDesc", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 returnValue = reinterpret_cast(ovrp_GetControllerHapticsDesc)(___controllerMask0); #else HapticsDesc_t6EA2CBB8CF223FD8BE2A0E3919B8EC8561514812 returnValue = il2cppPInvokeFunc(___controllerMask0); #endif return returnValue; } // OVRPlugin/HapticsState OVRPlugin/OVRP_1_6_0::ovrp_GetControllerHapticsState(System.UInt32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 OVRP_1_6_0_ovrp_GetControllerHapticsState_m8AFF6E79BB728D83386D6842314281849F93356E (uint32_t ___controllerMask0, const RuntimeMethod* method) { typedef HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 (CDECL *PInvokeFunc) (uint32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetControllerHapticsState", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 returnValue = reinterpret_cast(ovrp_GetControllerHapticsState)(___controllerMask0); #else HapticsState_t1861DFD9DB173760C55B17C7C7AD0D3D9313D804 returnValue = il2cppPInvokeFunc(___controllerMask0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_6_0::ovrp_SetControllerHaptics(System.UInt32,OVRPlugin/HapticsBuffer) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_6_0_ovrp_SetControllerHaptics_m0C77452D25498BC2B8F235794C32F638E2B3406B (uint32_t ___controllerMask0, HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E ___hapticsBuffer1, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t, HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E ); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(HapticsBuffer_tD3669FE96E6C4B1D02FD0D15F8A9CB1721889A2E ); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetControllerHaptics", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetControllerHaptics)(___controllerMask0, ___hapticsBuffer1); #else int32_t returnValue = il2cppPInvokeFunc(___controllerMask0, ___hapticsBuffer1); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_6_0::ovrp_SetOverlayQuad3(System.UInt32,System.IntPtr,System.IntPtr,System.IntPtr,OVRPlugin/Posef,OVRPlugin/Vector3f,System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_6_0_ovrp_SetOverlayQuad3_m4A98CD7C0F17C0B8AF7C521DBC999C9BF1D570B8 (uint32_t ___flags0, intptr_t ___textureLeft1, intptr_t ___textureRight2, intptr_t ___device3, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___pose4, Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___scale5, int32_t ___layerIndex6, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (uint32_t, intptr_t, intptr_t, intptr_t, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 , Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 , int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(uint32_t) + sizeof(intptr_t) + sizeof(intptr_t) + sizeof(intptr_t) + sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ) + sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetOverlayQuad3", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetOverlayQuad3)(___flags0, ___textureLeft1, ___textureRight2, ___device3, ___pose4, ___scale5, ___layerIndex6); #else int32_t returnValue = il2cppPInvokeFunc(___flags0, ___textureLeft1, ___textureRight2, ___device3, ___pose4, ___scale5, ___layerIndex6); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_6_0::ovrp_GetEyeRecommendedResolutionScale() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_6_0_ovrp_GetEyeRecommendedResolutionScale_mBFE2FA0E493BB5F0E981FF1BBB68296B8C4905F7 (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetEyeRecommendedResolutionScale", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetEyeRecommendedResolutionScale)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Single OVRPlugin/OVRP_1_6_0::ovrp_GetAppCpuStartToGpuEndTime() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float OVRP_1_6_0_ovrp_GetAppCpuStartToGpuEndTime_mC72CE561ACB6F55404A0D83D5AFB791A6DBDA7E0 (const RuntimeMethod* method) { typedef float (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppCpuStartToGpuEndTime", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL float returnValue = reinterpret_cast(ovrp_GetAppCpuStartToGpuEndTime)(); #else float returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Int32 OVRPlugin/OVRP_1_6_0::ovrp_GetSystemRecommendedMSAALevel() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_6_0_ovrp_GetSystemRecommendedMSAALevel_m76D15549540EBBD5E840B060ABA67BFF0FBC4D28 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemRecommendedMSAALevel", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemRecommendedMSAALevel)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_6_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_6_0__cctor_m7FB1E59BCC6C5A2CBC722EAE73E10B9FD2ED703D (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_6_0_t4FD03ADC1458C7CEB4C56C3CA72D59EF7C2BCE86_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 6, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 6, 0, /*hidden argument*/NULL); ((OVRP_1_6_0_t4FD03ADC1458C7CEB4C56C3CA72D59EF7C2BCE86_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_6_0_t4FD03ADC1458C7CEB4C56C3CA72D59EF7C2BCE86_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_1_7_0::ovrp_GetAppChromaticCorrection() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_7_0_ovrp_GetAppChromaticCorrection_mE975B943A7CFE0F3F3BD6C634253A773BB539E78 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppChromaticCorrection", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetAppChromaticCorrection)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_7_0::ovrp_SetAppChromaticCorrection(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_7_0_ovrp_SetAppChromaticCorrection_mB95A582B09C63DDF7839F2D3F1FCC64BD68B1639 (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetAppChromaticCorrection", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetAppChromaticCorrection)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_7_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_7_0__cctor_m2A4AD32123E70EF453C3514F147E436CBC8B40BF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_7_0_t2AD10FF99244465E1A50F39303B92FFC45C9D450_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 7, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 7, 0, /*hidden argument*/NULL); ((OVRP_1_7_0_t2AD10FF99244465E1A50F39303B92FFC45C9D450_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_7_0_t2AD10FF99244465E1A50F39303B92FFC45C9D450_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/Bool OVRPlugin/OVRP_1_8_0::ovrp_GetBoundaryConfigured() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_8_0_ovrp_GetBoundaryConfigured_m92F364B87CD948A48523B602F7902FB4053DA60C (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetBoundaryConfigured", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetBoundaryConfigured)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/BoundaryTestResult OVRPlugin/OVRP_1_8_0::ovrp_TestBoundaryNode(OVRPlugin/Node,OVRPlugin/BoundaryType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 OVRP_1_8_0_ovrp_TestBoundaryNode_m271E3737ECA34361C391813BFEFEC8D53BCCB26B (int32_t ___nodeId0, int32_t ___boundaryType1, const RuntimeMethod* method) { typedef BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_TestBoundaryNode", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 returnValue = reinterpret_cast(ovrp_TestBoundaryNode)(___nodeId0, ___boundaryType1); #else BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 returnValue = il2cppPInvokeFunc(___nodeId0, ___boundaryType1); #endif return returnValue; } // OVRPlugin/BoundaryTestResult OVRPlugin/OVRP_1_8_0::ovrp_TestBoundaryPoint(OVRPlugin/Vector3f,OVRPlugin/BoundaryType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 OVRP_1_8_0_ovrp_TestBoundaryPoint_m43D9DFBF14AA102354A5DBB93990D4383C49C066 (Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ___point0, int32_t ___boundaryType1, const RuntimeMethod* method) { typedef BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 (CDECL *PInvokeFunc) (Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 , int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 ) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_TestBoundaryPoint", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 returnValue = reinterpret_cast(ovrp_TestBoundaryPoint)(___point0, ___boundaryType1); #else BoundaryTestResult_t6759174FEB9E2A9B68C62586F0F19E4627292F47 returnValue = il2cppPInvokeFunc(___point0, ___boundaryType1); #endif return returnValue; } // OVRPlugin/BoundaryGeometry OVRPlugin/OVRP_1_8_0::ovrp_GetBoundaryGeometry(OVRPlugin/BoundaryType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470 OVRP_1_8_0_ovrp_GetBoundaryGeometry_mF5453FD8E9D3614A7E02C199AB755E3F5C520117 (int32_t ___boundaryType0, const RuntimeMethod* method) { typedef BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetBoundaryGeometry", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke returnValue = reinterpret_cast(ovrp_GetBoundaryGeometry)(___boundaryType0); #else BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshaled_pinvoke returnValue = il2cppPInvokeFunc(___boundaryType0); #endif // Marshaling of return value back from native representation BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470 _returnValue_unmarshaled; memset((&_returnValue_unmarshaled), 0, sizeof(_returnValue_unmarshaled)); BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke_back(returnValue, _returnValue_unmarshaled); // Marshaling cleanup of return value native representation BoundaryGeometry_tA4B3CE3D5ADB6F50F84AA1B36D30AF5EFF6F7470_marshal_pinvoke_cleanup(returnValue); return _returnValue_unmarshaled; } // OVRPlugin/Vector3f OVRPlugin/OVRP_1_8_0::ovrp_GetBoundaryDimensions(OVRPlugin/BoundaryType) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 OVRP_1_8_0_ovrp_GetBoundaryDimensions_m1FAA66F792D54F690E62A014DBFD4DE648F6FD37 (int32_t ___boundaryType0, const RuntimeMethod* method) { typedef Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetBoundaryDimensions", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 returnValue = reinterpret_cast(ovrp_GetBoundaryDimensions)(___boundaryType0); #else Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 returnValue = il2cppPInvokeFunc(___boundaryType0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_8_0::ovrp_GetBoundaryVisible() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_8_0_ovrp_GetBoundaryVisible_m883914893F5D0C4DD9A00504FC032195B5BEA7FC (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetBoundaryVisible", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetBoundaryVisible)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_8_0::ovrp_SetBoundaryVisible(OVRPlugin/Bool) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_8_0_ovrp_SetBoundaryVisible_m10CEA5D675CAE6334E932A54E39E8430F72DC9DB (int32_t ___value0, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_SetBoundaryVisible", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_SetBoundaryVisible)(___value0); #else int32_t returnValue = il2cppPInvokeFunc(___value0); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_8_0::ovrp_Update2(System.Int32,System.Int32,System.Double) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_8_0_ovrp_Update2_mEB590E748142041A314728C8CE5CD8F999AB9645 (int32_t ___stateId0, int32_t ___frameIndex1, double ___predictionSeconds2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, int32_t, double); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t) + sizeof(double); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_Update2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_Update2)(___stateId0, ___frameIndex1, ___predictionSeconds2); #else int32_t returnValue = il2cppPInvokeFunc(___stateId0, ___frameIndex1, ___predictionSeconds2); #endif return returnValue; } // OVRPlugin/Posef OVRPlugin/OVRP_1_8_0::ovrp_GetNodePose2(System.Int32,OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 OVRP_1_8_0_ovrp_GetNodePose2_mEF136672EF8D4BAA999FF767F4C0238407B4C4B2 (int32_t ___stateId0, int32_t ___nodeId1, const RuntimeMethod* method) { typedef Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodePose2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = reinterpret_cast(ovrp_GetNodePose2)(___stateId0, ___nodeId1); #else Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = il2cppPInvokeFunc(___stateId0, ___nodeId1); #endif return returnValue; } // OVRPlugin/Posef OVRPlugin/OVRP_1_8_0::ovrp_GetNodeVelocity2(System.Int32,OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 OVRP_1_8_0_ovrp_GetNodeVelocity2_mFDAEF5B4C055EB8AFE9654D1B6F04D527CA9711A (int32_t ___stateId0, int32_t ___nodeId1, const RuntimeMethod* method) { typedef Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeVelocity2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = reinterpret_cast(ovrp_GetNodeVelocity2)(___stateId0, ___nodeId1); #else Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = il2cppPInvokeFunc(___stateId0, ___nodeId1); #endif return returnValue; } // OVRPlugin/Posef OVRPlugin/OVRP_1_8_0::ovrp_GetNodeAcceleration2(System.Int32,OVRPlugin/Node) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 OVRP_1_8_0_ovrp_GetNodeAcceleration2_mED0DE050975EE5C5B6FAEA16446702E2FE3E03E8 (int32_t ___stateId0, int32_t ___nodeId1, const RuntimeMethod* method) { typedef Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 (CDECL *PInvokeFunc) (int32_t, int32_t); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(int32_t); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetNodeAcceleration2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = reinterpret_cast(ovrp_GetNodeAcceleration2)(___stateId0, ___nodeId1); #else Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 returnValue = il2cppPInvokeFunc(___stateId0, ___nodeId1); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_8_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_8_0__cctor_mD68268E9F826FFD0A3CC047DCDB39DAE8F197699 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_8_0_tD6FEA7A91F5F105CD8843B0E2D5459C0218252E7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 8, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, 8, 0, /*hidden argument*/NULL); ((OVRP_1_8_0_tD6FEA7A91F5F105CD8843B0E2D5459C0218252E7_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_8_0_tD6FEA7A91F5F105CD8843B0E2D5459C0218252E7_il2cpp_TypeInfo_var))->set_version_0(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 // OVRPlugin/SystemHeadset OVRPlugin/OVRP_1_9_0::ovrp_GetSystemHeadsetType() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_9_0_ovrp_GetSystemHeadsetType_m0EC153E03B530828C48ED723801345C111AD720B (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetSystemHeadsetType", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetSystemHeadsetType)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Controller OVRPlugin/OVRP_1_9_0::ovrp_GetActiveController() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_9_0_ovrp_GetActiveController_m0F85CF97D5DC9BC9D7FCF58643134F2B46C81CEB (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetActiveController", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetActiveController)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Controller OVRPlugin/OVRP_1_9_0::ovrp_GetConnectedControllers() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_9_0_ovrp_GetConnectedControllers_m843728D8D548B431F5C66EE6D780840283796BA2 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetConnectedControllers", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetConnectedControllers)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // OVRPlugin/Bool OVRPlugin/OVRP_1_9_0::ovrp_GetBoundaryGeometry2(OVRPlugin/BoundaryType,System.IntPtr,System.Int32&) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_9_0_ovrp_GetBoundaryGeometry2_m074A8D8A60DBE2F817D8CEA0D5DEC21B71B32106 (int32_t ___boundaryType0, intptr_t ___points1, int32_t* ___pointsCount2, const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (int32_t, intptr_t, int32_t*); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = sizeof(int32_t) + sizeof(intptr_t) + sizeof(int32_t*); il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetBoundaryGeometry2", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_GetBoundaryGeometry2)(___boundaryType0, ___points1, ___pointsCount2); #else int32_t returnValue = il2cppPInvokeFunc(___boundaryType0, ___points1, ___pointsCount2); #endif return returnValue; } // OVRPlugin/AppPerfStats OVRPlugin/OVRP_1_9_0::ovrp_GetAppPerfStats() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5 OVRP_1_9_0_ovrp_GetAppPerfStats_m696C8408356432BD356121327004B592E031172E (const RuntimeMethod* method) { typedef AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_GetAppPerfStats", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke returnValue = reinterpret_cast(ovrp_GetAppPerfStats)(); #else AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshaled_pinvoke returnValue = il2cppPInvokeFunc(); #endif // Marshaling of return value back from native representation AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5 _returnValue_unmarshaled; memset((&_returnValue_unmarshaled), 0, sizeof(_returnValue_unmarshaled)); AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke_back(returnValue, _returnValue_unmarshaled); // Marshaling cleanup of return value native representation AppPerfStats_t08D173A6D85725EE6ED09434354878F390D6F6D5_marshal_pinvoke_cleanup(returnValue); return _returnValue_unmarshaled; } // OVRPlugin/Bool OVRPlugin/OVRP_1_9_0::ovrp_ResetAppPerfStats() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t OVRP_1_9_0_ovrp_ResetAppPerfStats_m1394C47B60F059F0B56E8127C45E1A4F1D919E95 (const RuntimeMethod* method) { typedef int32_t (CDECL *PInvokeFunc) (); #if !FORCE_PINVOKE_INTERNAL && !FORCE_PINVOKE_OVRPlugin_INTERNAL static PInvokeFunc il2cppPInvokeFunc; if (il2cppPInvokeFunc == NULL) { int parameterSize = 0; il2cppPInvokeFunc = il2cpp_codegen_resolve_pinvoke(IL2CPP_NATIVE_STRING("OVRPlugin"), "ovrp_ResetAppPerfStats", IL2CPP_CALL_C, CHARSET_NOT_SPECIFIED, parameterSize, false); IL2CPP_ASSERT(il2cppPInvokeFunc != NULL); } #endif // Native function invocation #if FORCE_PINVOKE_INTERNAL || FORCE_PINVOKE_OVRPlugin_INTERNAL int32_t returnValue = reinterpret_cast(ovrp_ResetAppPerfStats)(); #else int32_t returnValue = il2cppPInvokeFunc(); #endif return returnValue; } // System.Void OVRPlugin/OVRP_1_9_0::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRP_1_9_0__cctor_mD48075D36EAF549636E2A15CA2C0ECDA4D273323 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRP_1_9_0_tC543307A6CB01708A6E9EDEBBB3FA2D80BC65B65_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static readonly System.Version version = new System.Version(1, 9, 0); Version_tBDAEDED25425A1D09910468B8BD1759115646E3C * L_0 = (Version_tBDAEDED25425A1D09910468B8BD1759115646E3C *)il2cpp_codegen_object_new(Version_tBDAEDED25425A1D09910468B8BD1759115646E3C_il2cpp_TypeInfo_var); Version__ctor_mFC9626C832CF8F80BAEAAC21D8664C5B7941F775(L_0, 1, ((int32_t)9), 0, /*hidden argument*/NULL); ((OVRP_1_9_0_tC543307A6CB01708A6E9EDEBBB3FA2D80BC65B65_StaticFields*)il2cpp_codegen_static_fields_for(OVRP_1_9_0_tC543307A6CB01708A6E9EDEBBB3FA2D80BC65B65_il2cpp_TypeInfo_var))->set_version_0(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 OVRPlugin/PoseStatef::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PoseStatef__cctor_m8E70AA98EFD18C6AF6F29052367270653DD99455 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly PoseStatef identity = new PoseStatef // { // Pose = Posef.identity, // Velocity = Vector3f.zero, // Acceleration = Vector3f.zero, // AngularVelocity = Vector3f.zero, // AngularAcceleration = Vector3f.zero // }; il2cpp_codegen_initobj((&V_0), sizeof(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 )); IL2CPP_RUNTIME_CLASS_INIT(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_il2cpp_TypeInfo_var); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_0 = ((Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_StaticFields*)il2cpp_codegen_static_fields_for(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_il2cpp_TypeInfo_var))->get_identity_2(); (&V_0)->set_Pose_0(L_0); IL2CPP_RUNTIME_CLASS_INIT(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_1 = ((Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields*)il2cpp_codegen_static_fields_for(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var))->get_zero_3(); (&V_0)->set_Velocity_1(L_1); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_2 = ((Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields*)il2cpp_codegen_static_fields_for(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var))->get_zero_3(); (&V_0)->set_Acceleration_2(L_2); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_3 = ((Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields*)il2cpp_codegen_static_fields_for(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var))->get_zero_3(); (&V_0)->set_AngularVelocity_3(L_3); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_4 = ((Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields*)il2cpp_codegen_static_fields_for(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var))->get_zero_3(); (&V_0)->set_AngularAcceleration_4(L_4); PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2 L_5 = V_0; ((PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2_StaticFields*)il2cpp_codegen_static_fields_for(PoseStatef_t216D5C591E7B3996203A35C7477F5470DC5692B2_il2cpp_TypeInfo_var))->set_identity_6(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 // System.String OVRPlugin/Posef::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Posef_ToString_m46733D8DF0FBF36C0786E58AEE7C77FEB24DE8DB (Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralBCB4BE7067F30922E2FF08232DD5A0559DC98380); s_Il2CppMethodInitialized = true; } { // return string.Format(System.Globalization.CultureInfo.InvariantCulture, "Position ({0}), Orientation({1})", Position, Orientation); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_1 = __this->get_Position_1(); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_2 = L_1; RuntimeObject * L_3 = Box(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var, &L_2); Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D L_4 = __this->get_Orientation_0(); Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D L_5 = L_4; RuntimeObject * L_6 = Box(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var, &L_5); String_t* L_7; L_7 = String_Format_m061EEC38D33A13CC1E98DBD6869E97A0C2989F88(L_0, _stringLiteralBCB4BE7067F30922E2FF08232DD5A0559DC98380, L_3, L_6, /*hidden argument*/NULL); return L_7; } } IL2CPP_EXTERN_C String_t* Posef_ToString_m46733D8DF0FBF36C0786E58AEE7C77FEB24DE8DB_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Posef_ToString_m46733D8DF0FBF36C0786E58AEE7C77FEB24DE8DB(_thisAdjusted, method); return _returnValue; } // System.Void OVRPlugin/Posef::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Posef__cctor_mDD3F37A5FF8EFCB47268765687D19A834323F7CA (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Posef identity = new Posef { Orientation = Quatf.identity, Position = Vector3f.zero }; il2cpp_codegen_initobj((&V_0), sizeof(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 )); IL2CPP_RUNTIME_CLASS_INIT(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var); Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D L_0 = ((Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_StaticFields*)il2cpp_codegen_static_fields_for(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var))->get_identity_4(); (&V_0)->set_Orientation_0(L_0); IL2CPP_RUNTIME_CLASS_INIT(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_1 = ((Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields*)il2cpp_codegen_static_fields_for(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var))->get_zero_3(); (&V_0)->set_Position_1(L_1); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_2 = V_0; ((Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_StaticFields*)il2cpp_codegen_static_fields_for(Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952_il2cpp_TypeInfo_var))->set_identity_2(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.String OVRPlugin/Quatf::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Quatf_ToString_mD3C835D4A79EA0987558A0FCD07DF17FC2D34B64 (Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E2946B0195FA422A460E9E13AF65BC7E50C33BE); s_Il2CppMethodInitialized = true; } { // return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}, {3}", x, y, z, w); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1; float L_3 = __this->get_x_0(); float L_4 = L_3; RuntimeObject * L_5 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_5); (L_2)->SetAt(static_cast(0), (RuntimeObject *)L_5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_2; float L_7 = __this->get_y_1(); float L_8 = L_7; RuntimeObject * L_9 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast(1), (RuntimeObject *)L_9); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_6; float L_11 = __this->get_z_2(); float L_12 = L_11; RuntimeObject * L_13 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast(2), (RuntimeObject *)L_13); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_10; float L_15 = __this->get_w_3(); float L_16 = L_15; RuntimeObject * L_17 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_17); (L_14)->SetAt(static_cast(3), (RuntimeObject *)L_17); String_t* L_18; L_18 = String_Format_m2CD22B92BC86D731EC55ED4D2A970491CBFD1C51(L_0, _stringLiteral7E2946B0195FA422A460E9E13AF65BC7E50C33BE, L_14, /*hidden argument*/NULL); return L_18; } } IL2CPP_EXTERN_C String_t* Quatf_ToString_mD3C835D4A79EA0987558A0FCD07DF17FC2D34B64_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Quatf_ToString_mD3C835D4A79EA0987558A0FCD07DF17FC2D34B64(_thisAdjusted, method); return _returnValue; } // System.Void OVRPlugin/Quatf::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Quatf__cctor_m7F170DDE05E3A27CC81B7EC4C95078882198D20A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Quatf identity = new Quatf { x = 0.0f, y = 0.0f, z = 0.0f, w = 1.0f }; il2cpp_codegen_initobj((&V_0), sizeof(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D )); (&V_0)->set_x_0((0.0f)); (&V_0)->set_y_1((0.0f)); (&V_0)->set_z_2((0.0f)); (&V_0)->set_w_3((1.0f)); Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D L_0 = V_0; ((Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_StaticFields*)il2cpp_codegen_static_fields_for(Quatf_t62062FC7CE72F55D499CA6BFF7EF122D2C6AF42D_il2cpp_TypeInfo_var))->set_identity_4(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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: OVRPlugin/RenderModelProperties IL2CPP_EXTERN_C void RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshal_pinvoke(const RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315& unmarshaled, RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_pinvoke& marshaled) { marshaled.___ModelName_0 = il2cpp_codegen_marshal_string(unmarshaled.get_ModelName_0()); marshaled.___ModelKey_1 = unmarshaled.get_ModelKey_1(); marshaled.___VendorId_2 = unmarshaled.get_VendorId_2(); marshaled.___ModelVersion_3 = unmarshaled.get_ModelVersion_3(); } IL2CPP_EXTERN_C void RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshal_pinvoke_back(const RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_pinvoke& marshaled, RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315& unmarshaled) { unmarshaled.set_ModelName_0(il2cpp_codegen_marshal_string_result(marshaled.___ModelName_0)); uint64_t unmarshaled_ModelKey_temp_1 = 0; unmarshaled_ModelKey_temp_1 = marshaled.___ModelKey_1; unmarshaled.set_ModelKey_1(unmarshaled_ModelKey_temp_1); uint32_t unmarshaled_VendorId_temp_2 = 0; unmarshaled_VendorId_temp_2 = marshaled.___VendorId_2; unmarshaled.set_VendorId_2(unmarshaled_VendorId_temp_2); uint32_t unmarshaled_ModelVersion_temp_3 = 0; unmarshaled_ModelVersion_temp_3 = marshaled.___ModelVersion_3; unmarshaled.set_ModelVersion_3(unmarshaled_ModelVersion_temp_3); } // Conversion method for clean up from marshalling of: OVRPlugin/RenderModelProperties IL2CPP_EXTERN_C void RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshal_pinvoke_cleanup(RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_pinvoke& marshaled) { il2cpp_codegen_marshal_free(marshaled.___ModelName_0); marshaled.___ModelName_0 = NULL; } // Conversion methods for marshalling of: OVRPlugin/RenderModelProperties IL2CPP_EXTERN_C void RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshal_com(const RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315& unmarshaled, RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_com& marshaled) { marshaled.___ModelName_0 = il2cpp_codegen_marshal_bstring(unmarshaled.get_ModelName_0()); marshaled.___ModelKey_1 = unmarshaled.get_ModelKey_1(); marshaled.___VendorId_2 = unmarshaled.get_VendorId_2(); marshaled.___ModelVersion_3 = unmarshaled.get_ModelVersion_3(); } IL2CPP_EXTERN_C void RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshal_com_back(const RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_com& marshaled, RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315& unmarshaled) { unmarshaled.set_ModelName_0(il2cpp_codegen_marshal_bstring_result(marshaled.___ModelName_0)); uint64_t unmarshaled_ModelKey_temp_1 = 0; unmarshaled_ModelKey_temp_1 = marshaled.___ModelKey_1; unmarshaled.set_ModelKey_1(unmarshaled_ModelKey_temp_1); uint32_t unmarshaled_VendorId_temp_2 = 0; unmarshaled_VendorId_temp_2 = marshaled.___VendorId_2; unmarshaled.set_VendorId_2(unmarshaled_VendorId_temp_2); uint32_t unmarshaled_ModelVersion_temp_3 = 0; unmarshaled_ModelVersion_temp_3 = marshaled.___ModelVersion_3; unmarshaled.set_ModelVersion_3(unmarshaled_ModelVersion_temp_3); } // Conversion method for clean up from marshalling of: OVRPlugin/RenderModelProperties IL2CPP_EXTERN_C void RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshal_com_cleanup(RenderModelProperties_t467F8C1D1FD0F7104DEED530C5E5C34715CAC315_marshaled_com& marshaled) { il2cpp_codegen_marshal_free_bstring(marshaled.___ModelName_0); marshaled.___ModelName_0 = NULL; } #ifdef __clang__ #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: OVRPlugin/RenderModelPropertiesInternal IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke(const RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43& unmarshaled, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke& marshaled) { if (unmarshaled.get_ModelName_0() != NULL) { if (64 > (unmarshaled.get_ModelName_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(64); i++) { (marshaled.___ModelName_0)[i] = (unmarshaled.get_ModelName_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___ModelKey_1 = unmarshaled.get_ModelKey_1(); marshaled.___VendorId_2 = unmarshaled.get_VendorId_2(); marshaled.___ModelVersion_3 = unmarshaled.get_ModelVersion_3(); } IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke_back(const RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke& marshaled, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_ModelName_0(reinterpret_cast((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, 64))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(64); i++) { (unmarshaled.get_ModelName_0())->SetAtUnchecked(static_cast(i), (marshaled.___ModelName_0)[i]); } uint64_t unmarshaled_ModelKey_temp_1 = 0; unmarshaled_ModelKey_temp_1 = marshaled.___ModelKey_1; unmarshaled.set_ModelKey_1(unmarshaled_ModelKey_temp_1); uint32_t unmarshaled_VendorId_temp_2 = 0; unmarshaled_VendorId_temp_2 = marshaled.___VendorId_2; unmarshaled.set_VendorId_2(unmarshaled_VendorId_temp_2); uint32_t unmarshaled_ModelVersion_temp_3 = 0; unmarshaled_ModelVersion_temp_3 = marshaled.___ModelVersion_3; unmarshaled.set_ModelVersion_3(unmarshaled_ModelVersion_temp_3); } // Conversion method for clean up from marshalling of: OVRPlugin/RenderModelPropertiesInternal IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_pinvoke_cleanup(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/RenderModelPropertiesInternal IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_com(const RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43& unmarshaled, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_com& marshaled) { if (unmarshaled.get_ModelName_0() != NULL) { if (64 > (unmarshaled.get_ModelName_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(64); i++) { (marshaled.___ModelName_0)[i] = (unmarshaled.get_ModelName_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___ModelKey_1 = unmarshaled.get_ModelKey_1(); marshaled.___VendorId_2 = unmarshaled.get_VendorId_2(); marshaled.___ModelVersion_3 = unmarshaled.get_ModelVersion_3(); } IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_com_back(const RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_com& marshaled, RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_ModelName_0(reinterpret_cast((ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*)SZArrayNew(ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726_il2cpp_TypeInfo_var, 64))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(64); i++) { (unmarshaled.get_ModelName_0())->SetAtUnchecked(static_cast(i), (marshaled.___ModelName_0)[i]); } uint64_t unmarshaled_ModelKey_temp_1 = 0; unmarshaled_ModelKey_temp_1 = marshaled.___ModelKey_1; unmarshaled.set_ModelKey_1(unmarshaled_ModelKey_temp_1); uint32_t unmarshaled_VendorId_temp_2 = 0; unmarshaled_VendorId_temp_2 = marshaled.___VendorId_2; unmarshaled.set_VendorId_2(unmarshaled_VendorId_temp_2); uint32_t unmarshaled_ModelVersion_temp_3 = 0; unmarshaled_ModelVersion_temp_3 = marshaled.___ModelVersion_3; unmarshaled.set_ModelVersion_3(unmarshaled_ModelVersion_temp_3); } // Conversion method for clean up from marshalling of: OVRPlugin/RenderModelPropertiesInternal IL2CPP_EXTERN_C void RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshal_com_cleanup(RenderModelPropertiesInternal_t9BC27039170AE03663D2382196FAF2A282B2AA43_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRPlugin/Size3f::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Size3f__cctor_mE61F29A10E585422CE1A9F33F04EDB52BD9A9974 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Size3f zero = new Size3f { w = 0, h = 0, d = 0 }; il2cpp_codegen_initobj((&V_0), sizeof(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 )); (&V_0)->set_w_0((0.0f)); (&V_0)->set_h_1((0.0f)); (&V_0)->set_d_2((0.0f)); Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78 L_0 = V_0; ((Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78_StaticFields*)il2cpp_codegen_static_fields_for(Size3f_t0E837AC907C463E8883EE25ADDFE294021BB0F78_il2cpp_TypeInfo_var))->set_zero_3(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 OVRPlugin/Sizef::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sizef__cctor_m0B8B7D616AE521E8BD7ABD3670732E214C680A71 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Sizef zero = new Sizef { w = 0, h = 0 }; il2cpp_codegen_initobj((&V_0), sizeof(Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 )); (&V_0)->set_w_0((0.0f)); (&V_0)->set_h_1((0.0f)); Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314 L_0 = V_0; ((Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314_StaticFields*)il2cpp_codegen_static_fields_for(Sizef_t2ED899DE36514803EED2B3ADA0FF5BBA57281314_il2cpp_TypeInfo_var))->set_zero_2(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 OVRPlugin/Sizei::Equals(OVRPlugin/Sizei) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Sizei_Equals_mD961E37D930614AAF8FFB31923D89D90F0DF3F29 (Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * __this, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___other0, const RuntimeMethod* method) { { // return w == other.w && h == other.h; int32_t L_0 = __this->get_w_0(); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 L_1 = ___other0; int32_t L_2 = L_1.get_w_0(); if ((!(((uint32_t)L_0) == ((uint32_t)L_2)))) { goto IL_001d; } } { int32_t L_3 = __this->get_h_1(); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 L_4 = ___other0; int32_t L_5 = L_4.get_h_1(); return (bool)((((int32_t)L_3) == ((int32_t)L_5))? 1 : 0); } IL_001d: { return (bool)0; } } IL2CPP_EXTERN_C bool Sizei_Equals_mD961E37D930614AAF8FFB31923D89D90F0DF3F29_AdjustorThunk (RuntimeObject * __this, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 ___other0, const RuntimeMethod* method) { int32_t _offset = 1; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Sizei_Equals_mD961E37D930614AAF8FFB31923D89D90F0DF3F29(_thisAdjusted, ___other0, method); return _returnValue; } // System.Boolean OVRPlugin/Sizei::Equals(System.Object) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool Sizei_Equals_m6616958F50E44F6E86F7549DF0E8F78D5E33A627 (Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 V_0; memset((&V_0), 0, sizeof(V_0)); { // return obj is Sizei other && Equals(other); RuntimeObject * L_0 = ___obj0; if (!((RuntimeObject *)IsInstSealed((RuntimeObject*)L_0, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_il2cpp_TypeInfo_var))) { goto IL_0017; } } { RuntimeObject * L_1 = ___obj0; V_0 = ((*(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *)((Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *)UnBox(L_1, Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_il2cpp_TypeInfo_var)))); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 L_2 = V_0; bool L_3; L_3 = Sizei_Equals_mD961E37D930614AAF8FFB31923D89D90F0DF3F29((Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 *)__this, L_2, /*hidden argument*/NULL); return L_3; } IL_0017: { return (bool)0; } } IL2CPP_EXTERN_C bool Sizei_Equals_m6616958F50E44F6E86F7549DF0E8F78D5E33A627_AdjustorThunk (RuntimeObject * __this, RuntimeObject * ___obj0, const RuntimeMethod* method) { int32_t _offset = 1; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = Sizei_Equals_m6616958F50E44F6E86F7549DF0E8F78D5E33A627(_thisAdjusted, ___obj0, method); return _returnValue; } // System.Int32 OVRPlugin/Sizei::GetHashCode() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t Sizei_GetHashCode_m3204DE2A32B24EA089660CB5EBFAD358C1642413 (Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * __this, const RuntimeMethod* method) { { // return (w * 397) ^ h; int32_t L_0 = __this->get_w_0(); int32_t L_1 = __this->get_h_1(); return ((int32_t)((int32_t)((int32_t)il2cpp_codegen_multiply((int32_t)L_0, (int32_t)((int32_t)397)))^(int32_t)L_1)); } } IL2CPP_EXTERN_C int32_t Sizei_GetHashCode_m3204DE2A32B24EA089660CB5EBFAD358C1642413_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = Sizei_GetHashCode_m3204DE2A32B24EA089660CB5EBFAD358C1642413(_thisAdjusted, method); return _returnValue; } // System.Void OVRPlugin/Sizei::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Sizei__cctor_mE1737F4561BFDD6B98E8139034E0B1CCBB0E263A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Sizei zero = new Sizei { w = 0, h = 0 }; il2cpp_codegen_initobj((&V_0), sizeof(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 )); (&V_0)->set_w_0(0); (&V_0)->set_h_1(0); Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041 L_0 = V_0; ((Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_StaticFields*)il2cpp_codegen_static_fields_for(Sizei_tEB5AC4FB252F39A8D3FE08B6D3FCE03666021041_il2cpp_TypeInfo_var))->set_zero_2(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 // Conversion methods for marshalling of: OVRPlugin/Skeleton IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke(const Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099& unmarshaled, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke& marshaled) { marshaled.___Type_0 = unmarshaled.get_Type_0(); marshaled.___NumBones_1 = unmarshaled.get_NumBones_1(); marshaled.___NumBoneCapsules_2 = unmarshaled.get_NumBoneCapsules_2(); if (unmarshaled.get_Bones_3() != NULL) { if (24 > (unmarshaled.get_Bones_3())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(24); i++) { (marshaled.___Bones_3)[i] = (unmarshaled.get_Bones_3())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_BoneCapsules_4() != NULL) { if (19 > (unmarshaled.get_BoneCapsules_4())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(19); i++) { (marshaled.___BoneCapsules_4)[i] = (unmarshaled.get_BoneCapsules_4())->GetAtUnchecked(static_cast(i)); } } } IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke_back(const Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke& marshaled, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Type_temp_0 = 0; unmarshaled_Type_temp_0 = marshaled.___Type_0; unmarshaled.set_Type_0(unmarshaled_Type_temp_0); uint32_t unmarshaled_NumBones_temp_1 = 0; unmarshaled_NumBones_temp_1 = marshaled.___NumBones_1; unmarshaled.set_NumBones_1(unmarshaled_NumBones_temp_1); uint32_t unmarshaled_NumBoneCapsules_temp_2 = 0; unmarshaled_NumBoneCapsules_temp_2 = marshaled.___NumBoneCapsules_2; unmarshaled.set_NumBoneCapsules_2(unmarshaled_NumBoneCapsules_temp_2); unmarshaled.set_Bones_3(reinterpret_cast((BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981*)SZArrayNew(BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var, 24))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(24); i++) { (unmarshaled.get_Bones_3())->SetAtUnchecked(static_cast(i), (marshaled.___Bones_3)[i]); } unmarshaled.set_BoneCapsules_4(reinterpret_cast((BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295*)SZArrayNew(BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var, 19))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(19); i++) { (unmarshaled.get_BoneCapsules_4())->SetAtUnchecked(static_cast(i), (marshaled.___BoneCapsules_4)[i]); } } // Conversion method for clean up from marshalling of: OVRPlugin/Skeleton IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_pinvoke_cleanup(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/Skeleton IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_com(const Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099& unmarshaled, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_com& marshaled) { marshaled.___Type_0 = unmarshaled.get_Type_0(); marshaled.___NumBones_1 = unmarshaled.get_NumBones_1(); marshaled.___NumBoneCapsules_2 = unmarshaled.get_NumBoneCapsules_2(); if (unmarshaled.get_Bones_3() != NULL) { if (24 > (unmarshaled.get_Bones_3())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(24); i++) { (marshaled.___Bones_3)[i] = (unmarshaled.get_Bones_3())->GetAtUnchecked(static_cast(i)); } } if (unmarshaled.get_BoneCapsules_4() != NULL) { if (19 > (unmarshaled.get_BoneCapsules_4())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(19); i++) { (marshaled.___BoneCapsules_4)[i] = (unmarshaled.get_BoneCapsules_4())->GetAtUnchecked(static_cast(i)); } } } IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_com_back(const Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshaled_com& marshaled, Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Type_temp_0 = 0; unmarshaled_Type_temp_0 = marshaled.___Type_0; unmarshaled.set_Type_0(unmarshaled_Type_temp_0); uint32_t unmarshaled_NumBones_temp_1 = 0; unmarshaled_NumBones_temp_1 = marshaled.___NumBones_1; unmarshaled.set_NumBones_1(unmarshaled_NumBones_temp_1); uint32_t unmarshaled_NumBoneCapsules_temp_2 = 0; unmarshaled_NumBoneCapsules_temp_2 = marshaled.___NumBoneCapsules_2; unmarshaled.set_NumBoneCapsules_2(unmarshaled_NumBoneCapsules_temp_2); unmarshaled.set_Bones_3(reinterpret_cast((BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981*)SZArrayNew(BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var, 24))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(24); i++) { (unmarshaled.get_Bones_3())->SetAtUnchecked(static_cast(i), (marshaled.___Bones_3)[i]); } unmarshaled.set_BoneCapsules_4(reinterpret_cast((BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295*)SZArrayNew(BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var, 19))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(19); i++) { (unmarshaled.get_BoneCapsules_4())->SetAtUnchecked(static_cast(i), (marshaled.___BoneCapsules_4)[i]); } } // Conversion method for clean up from marshalling of: OVRPlugin/Skeleton IL2CPP_EXTERN_C void Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_marshal_com_cleanup(Skeleton_tBAC0DCE56C05E3067BF433FF144348CD74844099_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: OVRPlugin/Skeleton2 IL2CPP_EXTERN_C void Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshal_pinvoke(const Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13& unmarshaled, Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_pinvoke& marshaled) { marshaled.___Type_0 = unmarshaled.get_Type_0(); marshaled.___NumBones_1 = unmarshaled.get_NumBones_1(); marshaled.___NumBoneCapsules_2 = unmarshaled.get_NumBoneCapsules_2(); if (unmarshaled.get_Bones_3() != NULL) { il2cpp_array_size_t _unmarshaled_Bones_Length = (unmarshaled.get_Bones_3())->max_length; marshaled.___Bones_3 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_Bones_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_Bones_Length); i++) { (marshaled.___Bones_3)[i] = (unmarshaled.get_Bones_3())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___Bones_3 = NULL; } if (unmarshaled.get_BoneCapsules_4() != NULL) { il2cpp_array_size_t _unmarshaled_BoneCapsules_Length = (unmarshaled.get_BoneCapsules_4())->max_length; marshaled.___BoneCapsules_4 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_BoneCapsules_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_BoneCapsules_Length); i++) { (marshaled.___BoneCapsules_4)[i] = (unmarshaled.get_BoneCapsules_4())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___BoneCapsules_4 = NULL; } } IL2CPP_EXTERN_C void Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshal_pinvoke_back(const Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_pinvoke& marshaled, Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Type_temp_0 = 0; unmarshaled_Type_temp_0 = marshaled.___Type_0; unmarshaled.set_Type_0(unmarshaled_Type_temp_0); uint32_t unmarshaled_NumBones_temp_1 = 0; unmarshaled_NumBones_temp_1 = marshaled.___NumBones_1; unmarshaled.set_NumBones_1(unmarshaled_NumBones_temp_1); uint32_t unmarshaled_NumBoneCapsules_temp_2 = 0; unmarshaled_NumBoneCapsules_temp_2 = marshaled.___NumBoneCapsules_2; unmarshaled.set_NumBoneCapsules_2(unmarshaled_NumBoneCapsules_temp_2); if (marshaled.___Bones_3 != NULL) { if (unmarshaled.get_Bones_3() == NULL) { unmarshaled.set_Bones_3(reinterpret_cast((BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981*)SZArrayNew(BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_Bones_3())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_Bones_3())->SetAtUnchecked(static_cast(i), (marshaled.___Bones_3)[i]); } } if (marshaled.___BoneCapsules_4 != NULL) { if (unmarshaled.get_BoneCapsules_4() == NULL) { unmarshaled.set_BoneCapsules_4(reinterpret_cast((BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295*)SZArrayNew(BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_BoneCapsules_4())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_BoneCapsules_4())->SetAtUnchecked(static_cast(i), (marshaled.___BoneCapsules_4)[i]); } } } // Conversion method for clean up from marshalling of: OVRPlugin/Skeleton2 IL2CPP_EXTERN_C void Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshal_pinvoke_cleanup(Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_pinvoke& marshaled) { if (marshaled.___Bones_3 != NULL) { il2cpp_codegen_marshal_free(marshaled.___Bones_3); marshaled.___Bones_3 = NULL; } if (marshaled.___BoneCapsules_4 != NULL) { il2cpp_codegen_marshal_free(marshaled.___BoneCapsules_4); marshaled.___BoneCapsules_4 = NULL; } } // Conversion methods for marshalling of: OVRPlugin/Skeleton2 IL2CPP_EXTERN_C void Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshal_com(const Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13& unmarshaled, Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_com& marshaled) { marshaled.___Type_0 = unmarshaled.get_Type_0(); marshaled.___NumBones_1 = unmarshaled.get_NumBones_1(); marshaled.___NumBoneCapsules_2 = unmarshaled.get_NumBoneCapsules_2(); if (unmarshaled.get_Bones_3() != NULL) { il2cpp_array_size_t _unmarshaled_Bones_Length = (unmarshaled.get_Bones_3())->max_length; marshaled.___Bones_3 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_Bones_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_Bones_Length); i++) { (marshaled.___Bones_3)[i] = (unmarshaled.get_Bones_3())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___Bones_3 = NULL; } if (unmarshaled.get_BoneCapsules_4() != NULL) { il2cpp_array_size_t _unmarshaled_BoneCapsules_Length = (unmarshaled.get_BoneCapsules_4())->max_length; marshaled.___BoneCapsules_4 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_BoneCapsules_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_BoneCapsules_Length); i++) { (marshaled.___BoneCapsules_4)[i] = (unmarshaled.get_BoneCapsules_4())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___BoneCapsules_4 = NULL; } } IL2CPP_EXTERN_C void Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshal_com_back(const Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_com& marshaled, Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t unmarshaled_Type_temp_0 = 0; unmarshaled_Type_temp_0 = marshaled.___Type_0; unmarshaled.set_Type_0(unmarshaled_Type_temp_0); uint32_t unmarshaled_NumBones_temp_1 = 0; unmarshaled_NumBones_temp_1 = marshaled.___NumBones_1; unmarshaled.set_NumBones_1(unmarshaled_NumBones_temp_1); uint32_t unmarshaled_NumBoneCapsules_temp_2 = 0; unmarshaled_NumBoneCapsules_temp_2 = marshaled.___NumBoneCapsules_2; unmarshaled.set_NumBoneCapsules_2(unmarshaled_NumBoneCapsules_temp_2); if (marshaled.___Bones_3 != NULL) { if (unmarshaled.get_Bones_3() == NULL) { unmarshaled.set_Bones_3(reinterpret_cast((BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981*)SZArrayNew(BoneU5BU5D_t1288E05740DDAC86F76F4CD2019C35A17E72C981_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_Bones_3())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_Bones_3())->SetAtUnchecked(static_cast(i), (marshaled.___Bones_3)[i]); } } if (marshaled.___BoneCapsules_4 != NULL) { if (unmarshaled.get_BoneCapsules_4() == NULL) { unmarshaled.set_BoneCapsules_4(reinterpret_cast((BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295*)SZArrayNew(BoneCapsuleU5BU5D_tB4D9AC5CF59206C13FBD0A3725C45C1F6EBCE295_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_BoneCapsules_4())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_BoneCapsules_4())->SetAtUnchecked(static_cast(i), (marshaled.___BoneCapsules_4)[i]); } } } // Conversion method for clean up from marshalling of: OVRPlugin/Skeleton2 IL2CPP_EXTERN_C void Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshal_com_cleanup(Skeleton2_tBCE168B418608021C1551D640F39DF88F1282E13_marshaled_com& marshaled) { if (marshaled.___Bones_3 != NULL) { il2cpp_codegen_marshal_free(marshaled.___Bones_3); marshaled.___Bones_3 = NULL; } if (marshaled.___BoneCapsules_4 != NULL) { il2cpp_codegen_marshal_free(marshaled.___BoneCapsules_4); marshaled.___BoneCapsules_4 = NULL; } } #ifdef __clang__ #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 // Conversion methods for marshalling of: OVRPlugin/SpatialEntityFilterInfoIds IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke& marshaled) { if (unmarshaled.get_Ids_0() != NULL) { if (1024 > (unmarshaled.get_Ids_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(1024); i++) { (marshaled.___Ids_0)[i] = (unmarshaled.get_Ids_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___NumIds_1 = unmarshaled.get_NumIds_1(); } IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke_back(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke& marshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_Ids_0(reinterpret_cast((SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093*)SZArrayNew(SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093_il2cpp_TypeInfo_var, 1024))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(1024); i++) { (unmarshaled.get_Ids_0())->SetAtUnchecked(static_cast(i), (marshaled.___Ids_0)[i]); } int32_t unmarshaled_NumIds_temp_1 = 0; unmarshaled_NumIds_temp_1 = marshaled.___NumIds_1; unmarshaled.set_NumIds_1(unmarshaled_NumIds_temp_1); } // Conversion method for clean up from marshalling of: OVRPlugin/SpatialEntityFilterInfoIds IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke_cleanup(SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRPlugin/SpatialEntityFilterInfoIds IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com& marshaled) { if (unmarshaled.get_Ids_0() != NULL) { if (1024 > (unmarshaled.get_Ids_0())->max_length) { IL2CPP_RAISE_MANAGED_EXCEPTION(il2cpp_codegen_get_argument_exception("", "Type could not be marshaled because the length of an embedded array instance does not match the declared length in the layout."), NULL); } for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(1024); i++) { (marshaled.___Ids_0)[i] = (unmarshaled.get_Ids_0())->GetAtUnchecked(static_cast(i)); } } marshaled.___NumIds_1 = unmarshaled.get_NumIds_1(); } IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com_back(const SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com& marshaled, SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } unmarshaled.set_Ids_0(reinterpret_cast((SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093*)SZArrayNew(SpatialEntityUuidU5BU5D_tEDC09D7B3DA21CDAC2845568807D787A09B85093_il2cpp_TypeInfo_var, 1024))); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(1024); i++) { (unmarshaled.get_Ids_0())->SetAtUnchecked(static_cast(i), (marshaled.___Ids_0)[i]); } int32_t unmarshaled_NumIds_temp_1 = 0; unmarshaled_NumIds_temp_1 = marshaled.___NumIds_1; unmarshaled.set_NumIds_1(unmarshaled_NumIds_temp_1); } // Conversion method for clean up from marshalling of: OVRPlugin/SpatialEntityFilterInfoIds IL2CPP_EXTERN_C void SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com_cleanup(SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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: OVRPlugin/SpatialEntityQueryInfo IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke(const SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722& unmarshaled, SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke& marshaled) { marshaled.___QueryType_0 = unmarshaled.get_QueryType_0(); marshaled.___MaxQuerySpaces_1 = unmarshaled.get_MaxQuerySpaces_1(); marshaled.___Timeout_2 = unmarshaled.get_Timeout_2(); marshaled.___Location_3 = unmarshaled.get_Location_3(); marshaled.___ActionType_4 = unmarshaled.get_ActionType_4(); marshaled.___FilterType_5 = unmarshaled.get_FilterType_5(); SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke(unmarshaled.get_IdInfo_6(), marshaled.___IdInfo_6); } IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke_back(const SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke& marshaled, SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722& unmarshaled) { int32_t unmarshaled_QueryType_temp_0 = 0; unmarshaled_QueryType_temp_0 = marshaled.___QueryType_0; unmarshaled.set_QueryType_0(unmarshaled_QueryType_temp_0); int32_t unmarshaled_MaxQuerySpaces_temp_1 = 0; unmarshaled_MaxQuerySpaces_temp_1 = marshaled.___MaxQuerySpaces_1; unmarshaled.set_MaxQuerySpaces_1(unmarshaled_MaxQuerySpaces_temp_1); double unmarshaled_Timeout_temp_2 = 0.0; unmarshaled_Timeout_temp_2 = marshaled.___Timeout_2; unmarshaled.set_Timeout_2(unmarshaled_Timeout_temp_2); int32_t unmarshaled_Location_temp_3 = 0; unmarshaled_Location_temp_3 = marshaled.___Location_3; unmarshaled.set_Location_3(unmarshaled_Location_temp_3); int32_t unmarshaled_ActionType_temp_4 = 0; unmarshaled_ActionType_temp_4 = marshaled.___ActionType_4; unmarshaled.set_ActionType_4(unmarshaled_ActionType_temp_4); int32_t unmarshaled_FilterType_temp_5 = 0; unmarshaled_FilterType_temp_5 = marshaled.___FilterType_5; unmarshaled.set_FilterType_5(unmarshaled_FilterType_temp_5); SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730 unmarshaled_IdInfo_temp_6; memset((&unmarshaled_IdInfo_temp_6), 0, sizeof(unmarshaled_IdInfo_temp_6)); SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke_back(marshaled.___IdInfo_6, unmarshaled_IdInfo_temp_6); unmarshaled.set_IdInfo_6(unmarshaled_IdInfo_temp_6); } // Conversion method for clean up from marshalling of: OVRPlugin/SpatialEntityQueryInfo IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_pinvoke_cleanup(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_pinvoke& marshaled) { SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_pinvoke_cleanup(marshaled.___IdInfo_6); } // Conversion methods for marshalling of: OVRPlugin/SpatialEntityQueryInfo IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_com(const SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722& unmarshaled, SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_com& marshaled) { marshaled.___QueryType_0 = unmarshaled.get_QueryType_0(); marshaled.___MaxQuerySpaces_1 = unmarshaled.get_MaxQuerySpaces_1(); marshaled.___Timeout_2 = unmarshaled.get_Timeout_2(); marshaled.___Location_3 = unmarshaled.get_Location_3(); marshaled.___ActionType_4 = unmarshaled.get_ActionType_4(); marshaled.___FilterType_5 = unmarshaled.get_FilterType_5(); SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com(unmarshaled.get_IdInfo_6(), marshaled.___IdInfo_6); } IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_com_back(const SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_com& marshaled, SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722& unmarshaled) { int32_t unmarshaled_QueryType_temp_0 = 0; unmarshaled_QueryType_temp_0 = marshaled.___QueryType_0; unmarshaled.set_QueryType_0(unmarshaled_QueryType_temp_0); int32_t unmarshaled_MaxQuerySpaces_temp_1 = 0; unmarshaled_MaxQuerySpaces_temp_1 = marshaled.___MaxQuerySpaces_1; unmarshaled.set_MaxQuerySpaces_1(unmarshaled_MaxQuerySpaces_temp_1); double unmarshaled_Timeout_temp_2 = 0.0; unmarshaled_Timeout_temp_2 = marshaled.___Timeout_2; unmarshaled.set_Timeout_2(unmarshaled_Timeout_temp_2); int32_t unmarshaled_Location_temp_3 = 0; unmarshaled_Location_temp_3 = marshaled.___Location_3; unmarshaled.set_Location_3(unmarshaled_Location_temp_3); int32_t unmarshaled_ActionType_temp_4 = 0; unmarshaled_ActionType_temp_4 = marshaled.___ActionType_4; unmarshaled.set_ActionType_4(unmarshaled_ActionType_temp_4); int32_t unmarshaled_FilterType_temp_5 = 0; unmarshaled_FilterType_temp_5 = marshaled.___FilterType_5; unmarshaled.set_FilterType_5(unmarshaled_FilterType_temp_5); SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730 unmarshaled_IdInfo_temp_6; memset((&unmarshaled_IdInfo_temp_6), 0, sizeof(unmarshaled_IdInfo_temp_6)); SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com_back(marshaled.___IdInfo_6, unmarshaled_IdInfo_temp_6); unmarshaled.set_IdInfo_6(unmarshaled_IdInfo_temp_6); } // Conversion method for clean up from marshalling of: OVRPlugin/SpatialEntityQueryInfo IL2CPP_EXTERN_C void SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshal_com_cleanup(SpatialEntityQueryInfo_t6DC1FB4942B40B0B99A9F1A8C82B78E185C65722_marshaled_com& marshaled) { SpatialEntityFilterInfoIds_t6F45773BCE62AC103502D3287BC42B8CCB9E5730_marshal_com_cleanup(marshaled.___IdInfo_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 #ifdef __clang__ #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.String OVRPlugin/TextureRectMatrixf::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* TextureRectMatrixf_ToString_mEA6CE25616CAD2E5A5B6F0691068DEEBFB39754F (TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAB017F6D6C155E62406CC65AB824948AF55A47F4); s_Il2CppMethodInitialized = true; } { // return string.Format(System.Globalization.CultureInfo.InvariantCulture, "Rect Left ({0}), Rect Right({1}), Scale Bias Left ({2}), Scale Bias Right({3})", leftRect, rightRect, leftScaleBias, rightScaleBias); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1; Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_3 = __this->get_leftRect_0(); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_4 = L_3; RuntimeObject * L_5 = Box(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_5); (L_2)->SetAt(static_cast(0), (RuntimeObject *)L_5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_2; Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_7 = __this->get_rightRect_1(); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_8 = L_7; RuntimeObject * L_9 = Box(Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast(1), (RuntimeObject *)L_9); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_6; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_11 = __this->get_leftScaleBias_2(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_12 = L_11; RuntimeObject * L_13 = Box(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast(2), (RuntimeObject *)L_13); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_10; Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_15 = __this->get_rightScaleBias_3(); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_16 = L_15; RuntimeObject * L_17 = Box(Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_17); (L_14)->SetAt(static_cast(3), (RuntimeObject *)L_17); String_t* L_18; L_18 = String_Format_m2CD22B92BC86D731EC55ED4D2A970491CBFD1C51(L_0, _stringLiteralAB017F6D6C155E62406CC65AB824948AF55A47F4, L_14, /*hidden argument*/NULL); return L_18; } } IL2CPP_EXTERN_C String_t* TextureRectMatrixf_ToString_mEA6CE25616CAD2E5A5B6F0691068DEEBFB39754F_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = TextureRectMatrixf_ToString_mEA6CE25616CAD2E5A5B6F0691068DEEBFB39754F(_thisAdjusted, method); return _returnValue; } // System.Void OVRPlugin/TextureRectMatrixf::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void TextureRectMatrixf__cctor_m4D5F84C5034DDF85300924E02A127CE7BFF627DF (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly TextureRectMatrixf zero = new TextureRectMatrixf { leftRect = new Rect(0, 0, 1, 1), rightRect = new Rect(0, 0, 1, 1), leftScaleBias = new Vector4(1, 1, 0, 0), rightScaleBias = new Vector4(1, 1, 0, 0) }; il2cpp_codegen_initobj((&V_0), sizeof(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B )); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_0; memset((&L_0), 0, sizeof(L_0)); Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70((&L_0), (0.0f), (0.0f), (1.0f), (1.0f), /*hidden argument*/NULL); (&V_0)->set_leftRect_0(L_0); Rect_t7D9187DB6339DBA5741C09B6CCEF2F54F1966878 L_1; memset((&L_1), 0, sizeof(L_1)); Rect__ctor_m12075526A02B55B680716A34AD5287B223122B70((&L_1), (0.0f), (0.0f), (1.0f), (1.0f), /*hidden argument*/NULL); (&V_0)->set_rightRect_1(L_1); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_2; memset((&L_2), 0, sizeof(L_2)); Vector4__ctor_mCAB598A37C4D5E80282277E828B8A3EAD936D3B2((&L_2), (1.0f), (1.0f), (0.0f), (0.0f), /*hidden argument*/NULL); (&V_0)->set_leftScaleBias_2(L_2); Vector4_tA56A37FC5661BCC89C3DDC24BE12BA5BCB6A02C7 L_3; memset((&L_3), 0, sizeof(L_3)); Vector4__ctor_mCAB598A37C4D5E80282277E828B8A3EAD936D3B2((&L_3), (1.0f), (1.0f), (0.0f), (0.0f), /*hidden argument*/NULL); (&V_0)->set_rightScaleBias_3(L_3); TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B L_4 = V_0; ((TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B_StaticFields*)il2cpp_codegen_static_fields_for(TextureRectMatrixf_tE62EB3A14C2C8F15AEC8B5E11EBC576CFD55BF9B_il2cpp_TypeInfo_var))->set_zero_4(L_4); 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 // System.String OVRPlugin/Vector3f::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector3f_ToString_m1D8C49E155478776FDD0EFF1BCB0A41E05D444C4 (Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral82FF2E4A5CEA89085A6360163E86CB104CFC8CE8); s_Il2CppMethodInitialized = true; } { // return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}", x, y, z); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); float L_1 = __this->get_x_0(); float L_2 = L_1; RuntimeObject * L_3 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_2); float L_4 = __this->get_y_1(); float L_5 = L_4; RuntimeObject * L_6 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_5); float L_7 = __this->get_z_2(); float L_8 = L_7; RuntimeObject * L_9 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_8); String_t* L_10; L_10 = String_Format_mA3BB834FA13052393D767E65AD6AA9F5895106B8(L_0, _stringLiteral82FF2E4A5CEA89085A6360163E86CB104CFC8CE8, L_3, L_6, L_9, /*hidden argument*/NULL); return L_10; } } IL2CPP_EXTERN_C String_t* Vector3f_ToString_m1D8C49E155478776FDD0EFF1BCB0A41E05D444C4_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Vector3f_ToString_m1D8C49E155478776FDD0EFF1BCB0A41E05D444C4(_thisAdjusted, method); return _returnValue; } // System.Void OVRPlugin/Vector3f::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector3f__cctor_m4EC21DCD1D1781412686254C9E5DF3429A9106EB (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Vector3f zero = new Vector3f { x = 0.0f, y = 0.0f, z = 0.0f }; il2cpp_codegen_initobj((&V_0), sizeof(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 )); (&V_0)->set_x_0((0.0f)); (&V_0)->set_y_1((0.0f)); (&V_0)->set_z_2((0.0f)); Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417 L_0 = V_0; ((Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_StaticFields*)il2cpp_codegen_static_fields_for(Vector3f_tF74D3A692AC7064BFF4EBEC1E704723CA2905417_il2cpp_TypeInfo_var))->set_zero_3(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 OVRPlugin/Vector4f::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector4f_ToString_m85A463B933FEDB4D3C34CB0CD123F38C4553C8A1 (Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E2946B0195FA422A460E9E13AF65BC7E50C33BE); s_Il2CppMethodInitialized = true; } { // return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}, {3}", x, y, z, w); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1; float L_3 = __this->get_x_0(); float L_4 = L_3; RuntimeObject * L_5 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_5); (L_2)->SetAt(static_cast(0), (RuntimeObject *)L_5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_2; float L_7 = __this->get_y_1(); float L_8 = L_7; RuntimeObject * L_9 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast(1), (RuntimeObject *)L_9); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_6; float L_11 = __this->get_z_2(); float L_12 = L_11; RuntimeObject * L_13 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast(2), (RuntimeObject *)L_13); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_10; float L_15 = __this->get_w_3(); float L_16 = L_15; RuntimeObject * L_17 = Box(Single_tE07797BA3C98D4CA9B5A19413C19A76688AB899E_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_17); (L_14)->SetAt(static_cast(3), (RuntimeObject *)L_17); String_t* L_18; L_18 = String_Format_m2CD22B92BC86D731EC55ED4D2A970491CBFD1C51(L_0, _stringLiteral7E2946B0195FA422A460E9E13AF65BC7E50C33BE, L_14, /*hidden argument*/NULL); return L_18; } } IL2CPP_EXTERN_C String_t* Vector4f_ToString_m85A463B933FEDB4D3C34CB0CD123F38C4553C8A1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Vector4f_ToString_m85A463B933FEDB4D3C34CB0CD123F38C4553C8A1(_thisAdjusted, method); return _returnValue; } // System.Void OVRPlugin/Vector4f::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector4f__cctor_m304B53AE2A5736DB05ECBB564CBFA179DA247A7A (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Vector4f zero = new Vector4f { x = 0.0f, y = 0.0f, z = 0.0f, w = 0.0f }; il2cpp_codegen_initobj((&V_0), sizeof(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE )); (&V_0)->set_x_0((0.0f)); (&V_0)->set_y_1((0.0f)); (&V_0)->set_z_2((0.0f)); (&V_0)->set_w_3((0.0f)); Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE L_0 = V_0; ((Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE_StaticFields*)il2cpp_codegen_static_fields_for(Vector4f_t24110069BA2FAF7DB40FE0F5ADB8D9077AE473EE_il2cpp_TypeInfo_var))->set_zero_4(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 OVRPlugin/Vector4s::ToString() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* Vector4s_ToString_m60D1439F213314F68608BBCD3688CCB8D8CC2BF1 (Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E2946B0195FA422A460E9E13AF65BC7E50C33BE); s_Il2CppMethodInitialized = true; } { // return string.Format(System.Globalization.CultureInfo.InvariantCulture, "{0}, {1}, {2}, {3}", x, y, z, w); IL2CPP_RUNTIME_CLASS_INIT(CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98_il2cpp_TypeInfo_var); CultureInfo_t1B787142231DB79ABDCE0659823F908A040E9A98 * L_0; L_0 = CultureInfo_get_InvariantCulture_m27F344B7A1A5F9CAA493D82A5406DAC005C30205(/*hidden argument*/NULL); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_1 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)SZArrayNew(ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE_il2cpp_TypeInfo_var, (uint32_t)4); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = L_1; int16_t L_3 = __this->get_x_0(); int16_t L_4 = L_3; RuntimeObject * L_5 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_4); NullCheck(L_2); ArrayElementTypeCheck (L_2, L_5); (L_2)->SetAt(static_cast(0), (RuntimeObject *)L_5); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_6 = L_2; int16_t L_7 = __this->get_y_1(); int16_t L_8 = L_7; RuntimeObject * L_9 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_8); NullCheck(L_6); ArrayElementTypeCheck (L_6, L_9); (L_6)->SetAt(static_cast(1), (RuntimeObject *)L_9); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_10 = L_6; int16_t L_11 = __this->get_z_2(); int16_t L_12 = L_11; RuntimeObject * L_13 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_12); NullCheck(L_10); ArrayElementTypeCheck (L_10, L_13); (L_10)->SetAt(static_cast(2), (RuntimeObject *)L_13); ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_14 = L_10; int16_t L_15 = __this->get_w_3(); int16_t L_16 = L_15; RuntimeObject * L_17 = Box(Int16_tD0F031114106263BB459DA1F099FF9F42691295A_il2cpp_TypeInfo_var, &L_16); NullCheck(L_14); ArrayElementTypeCheck (L_14, L_17); (L_14)->SetAt(static_cast(3), (RuntimeObject *)L_17); String_t* L_18; L_18 = String_Format_m2CD22B92BC86D731EC55ED4D2A970491CBFD1C51(L_0, _stringLiteral7E2946B0195FA422A460E9E13AF65BC7E50C33BE, L_14, /*hidden argument*/NULL); return L_18; } } IL2CPP_EXTERN_C String_t* Vector4s_ToString_m60D1439F213314F68608BBCD3688CCB8D8CC2BF1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 * _thisAdjusted = reinterpret_cast(__this + _offset); String_t* _returnValue; _returnValue = Vector4s_ToString_m60D1439F213314F68608BBCD3688CCB8D8CC2BF1(_thisAdjusted, method); return _returnValue; } // System.Void OVRPlugin/Vector4s::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void Vector4s__cctor_m4055ADD8F9C7A111A412DB6F75F568506878D627 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 V_0; memset((&V_0), 0, sizeof(V_0)); { // public static readonly Vector4s zero = new Vector4s { x = 0, y = 0, z = 0, w = 0 }; il2cpp_codegen_initobj((&V_0), sizeof(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 )); (&V_0)->set_x_0((int16_t)0); (&V_0)->set_y_1((int16_t)0); (&V_0)->set_z_2((int16_t)0); (&V_0)->set_w_3((int16_t)0); Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1 L_0 = V_0; ((Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1_StaticFields*)il2cpp_codegen_static_fields_for(Vector4s_tD5B54B42EDC5CC229E64974A8A66DFF6EA3F54E1_il2cpp_TypeInfo_var))->set_zero_4(L_0); return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 OVRRaycaster/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m54FB9E589F4FBED103FBD96E58EEE03ADD3FD4E4 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD * L_0 = (U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD *)il2cpp_codegen_object_new(U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m10DB5D5DE33ADA2D8C42FB9ECE6476E4B5C981F9(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void OVRRaycaster/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m10DB5D5DE33ADA2D8C42FB9ECE6476E4B5C981F9 (U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Int32 OVRRaycaster/<>c::b__16_0(OVRRaycaster/RaycastHit,OVRRaycaster/RaycastHit) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t U3CU3Ec_U3CGraphicRaycastU3Eb__16_0_m97508388F8F0603E0800CF23EC832AF357FD8B0C (U3CU3Ec_t32751B4E43330881A17DA27A40C2229B297B09CD * __this, RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB ___g10, RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB ___g21, const RuntimeMethod* method) { int32_t V_0 = 0; { // s_SortedGraphics.Sort((g1, g2) => g2.graphic.depth.CompareTo(g1.graphic.depth)); RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB L_0 = ___g21; Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * L_1 = L_0.get_graphic_0(); NullCheck(L_1); int32_t L_2; L_2 = Graphic_get_depth_m8AF43A1523D90A3A42A812835D516940E320CD17(L_1, /*hidden argument*/NULL); V_0 = L_2; RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB L_3 = ___g10; Graphic_tF07D777035055CF93BA5F46F77ED5EDFEFF9AE24 * L_4 = L_3.get_graphic_0(); NullCheck(L_4); int32_t L_5; L_5 = Graphic_get_depth_m8AF43A1523D90A3A42A812835D516940E320CD17(L_4, /*hidden argument*/NULL); int32_t L_6; L_6 = Int32_CompareTo_m2DD1093B956B4D96C3AC3C27FDEE3CA447B044D3((int32_t*)(&V_0), L_5, /*hidden argument*/NULL); 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 // Conversion methods for marshalling of: OVRRaycaster/RaycastHit IL2CPP_EXTERN_C void RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshal_pinvoke(const RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB& unmarshaled, RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_pinvoke& marshaled) { Exception_t* ___graphic_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'graphic' of type 'RaycastHit': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___graphic_0Exception, NULL); } IL2CPP_EXTERN_C void RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshal_pinvoke_back(const RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_pinvoke& marshaled, RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB& unmarshaled) { Exception_t* ___graphic_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'graphic' of type 'RaycastHit': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___graphic_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVRRaycaster/RaycastHit IL2CPP_EXTERN_C void RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshal_pinvoke_cleanup(RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRRaycaster/RaycastHit IL2CPP_EXTERN_C void RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshal_com(const RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB& unmarshaled, RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_com& marshaled) { Exception_t* ___graphic_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'graphic' of type 'RaycastHit': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___graphic_0Exception, NULL); } IL2CPP_EXTERN_C void RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshal_com_back(const RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_com& marshaled, RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB& unmarshaled) { Exception_t* ___graphic_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'graphic' of type 'RaycastHit': Reference type field marshaling is not supported."); IL2CPP_RAISE_MANAGED_EXCEPTION(___graphic_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVRRaycaster/RaycastHit IL2CPP_EXTERN_C void RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshal_com_cleanup(RaycastHit_tAE07AFB2EA5EDC4D687ECF28D7CE7F38B3953CCB_marshaled_com& marshaled) { } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRResources/<>c__DisplayClass2_0::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__DisplayClass2_0__ctor_mBA6115D4DB404C7FA8A9709D6A5FDFE65FC1C88B (U3CU3Ec__DisplayClass2_0_tF07D6041A80B6F44715DA2A741053A86E6E038B5 * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Boolean OVRResources/<>c__DisplayClass2_0::b__0(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CU3Ec__DisplayClass2_0_U3CLoadU3Eb__0_m4380147FB297565666D6A596196F9CCAFB8DF719 (U3CU3Ec__DisplayClass2_0_tF07D6041A80B6F44715DA2A741053A86E6E038B5 * __this, String_t* ___s0, const RuntimeMethod* method) { { // var result = assetNames.Find(s => s.Contains(path.ToLower())); String_t* L_0 = ___s0; String_t* L_1 = __this->get_path_0(); NullCheck(L_1); String_t* L_2; L_2 = String_ToLower_m7875A49FE166D0A68F3F6B6E70C0C056EBEFD31D(L_1, /*hidden argument*/NULL); NullCheck(L_0); bool L_3; L_3 = String_Contains_mA26BDCCE8F191E8965EB8EEFC18BB4D0F85A075A(L_0, L_2, /*hidden argument*/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 // System.Void OVRRuntimeController/d__14::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUpdateControllerModelU3Ed__14__ctor_mA68483B796E24D2D28E0CA65A2116E148C4CFF95 (U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRRuntimeController/d__14::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUpdateControllerModelU3Ed__14_System_IDisposable_Dispose_mD6F9887FF4C7F61CFBFDD986E92CCD7B927C20DC (U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRRuntimeController/d__14::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CUpdateControllerModelU3Ed__14_MoveNext_m8169D9DD1E787D9D5B960923965996AE5C61B54E (U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * V_1 = NULL; bool V_2 = false; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0060; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); } IL_001e: { // bool controllerConnected = OVRInput.IsControllerConnected(m_controller); OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * L_4 = V_1; NullCheck(L_4); int32_t L_5 = L_4->get_m_controller_4(); IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); bool L_6; L_6 = OVRInput_IsControllerConnected_m24B7FF0FB50602F0A9D234CD376F3B1F3BB6D580(L_5, /*hidden argument*/NULL); V_2 = L_6; // if (m_controllerObject == null && controllerConnected) OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * L_7 = V_1; NullCheck(L_7); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_8 = L_7->get_m_controllerObject_6(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_9; L_9 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_8, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); bool L_10 = V_2; if (!((int32_t)((int32_t)L_9&(int32_t)L_10))) { goto IL_0047; } } { // LoadControllerModel(m_controllerModelPath); OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * L_11 = V_1; OVRRuntimeController_tEE2D7EA008E9FE708F8DAC57CC9237F62E26FCA0 * L_12 = V_1; NullCheck(L_12); String_t* L_13 = L_12->get_m_controllerModelPath_9(); NullCheck(L_11); bool L_14; L_14 = OVRRuntimeController_LoadControllerModel_m060A5CD601A9563FE0DED95B2B64AC794888761D(L_11, L_13, /*hidden argument*/NULL); } IL_0047: { // yield return new WaitForSeconds(.5f); WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 * L_15 = (WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 *)il2cpp_codegen_object_new(WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); WaitForSeconds__ctor_mD298C4CB9532BBBDE172FC40F3397E30504038D4(L_15, (0.5f), /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_15); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0060: { __this->set_U3CU3E1__state_0((-1)); // while (true) goto IL_001e; } } // System.Object OVRRuntimeController/d__14::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUpdateControllerModelU3Ed__14_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m255A63E27A1817F4BED601F0EDBED0BA78BCFFEA (U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRRuntimeController/d__14::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUpdateControllerModelU3Ed__14_System_Collections_IEnumerator_Reset_mD365C28AA3F499F10484AD39EA48AE36C7F46D13 (U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CUpdateControllerModelU3Ed__14_System_Collections_IEnumerator_Reset_mD365C28AA3F499F10484AD39EA48AE36C7F46D13_RuntimeMethod_var))); } } // System.Object OVRRuntimeController/d__14::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUpdateControllerModelU3Ed__14_System_Collections_IEnumerator_get_Current_m91EBF9B9D4FC1FD78A75B78425C83FEB3D88299E (U3CUpdateControllerModelU3Ed__14_t680AC9AD09AD7D40BA4B6632087B903E33CCFBBA * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRSceneLoader/d__24::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CDelayCanvasPosUpdateU3Ed__24__ctor_mC03A7DF6F297C73F4A46FA7171F16D0C4A2DE7A9 (U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRSceneLoader/d__24::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CDelayCanvasPosUpdateU3Ed__24_System_IDisposable_Dispose_m5C8EE7D80C3B5F695A85497F31C7C964726B29ED (U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRSceneLoader/d__24::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CDelayCanvasPosUpdateU3Ed__24_MoveNext_m72DF7DCC57851D1ECD42F9A06C62495DF9752316 (U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * V_1 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0037; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); // yield return new WaitForSeconds(0.1f); WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 * L_4 = (WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 *)il2cpp_codegen_object_new(WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); WaitForSeconds__ctor_mD298C4CB9532BBBDE172FC40F3397E30504038D4(L_4, (0.100000001f), /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_4); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0037: { __this->set_U3CU3E1__state_0((-1)); // UpdateCanvasPosition(); OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_5 = V_1; NullCheck(L_5); OVRSceneLoader_UpdateCanvasPosition_m1DD89DBBF75505FB63FB441BC2C065D3A3F05780(L_5, /*hidden argument*/NULL); // } return (bool)0; } } // System.Object OVRSceneLoader/d__24::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CDelayCanvasPosUpdateU3Ed__24_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mDCC66DA2020517145F71DA511E950724023006CA (U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRSceneLoader/d__24::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CDelayCanvasPosUpdateU3Ed__24_System_Collections_IEnumerator_Reset_mA8A32223C8829D233FF72042B76081EF794FAD5C (U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CDelayCanvasPosUpdateU3Ed__24_System_Collections_IEnumerator_Reset_mA8A32223C8829D233FF72042B76081EF794FAD5C_RuntimeMethod_var))); } } // System.Object OVRSceneLoader/d__24::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CDelayCanvasPosUpdateU3Ed__24_System_Collections_IEnumerator_get_Current_mB75263A3F2674F20B2B4F1537E98914B626D7543 (U3CDelayCanvasPosUpdateU3Ed__24_tB14AB540763B1F974A410C069E18AE78D7595DE7 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRSceneLoader/d__25::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3ConCheckSceneCoroutineU3Ed__25__ctor_m6CFCF750080E5BAD1EDD4DF230FF6C32E9190455 (U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRSceneLoader/d__25::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3ConCheckSceneCoroutineU3Ed__25_System_IDisposable_Dispose_m9423D88AEC4075BE9ED1742C7BA23E54CDFC5F9F (U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRSceneLoader/d__25::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3ConCheckSceneCoroutineU3Ed__25_MoveNext_m1D73453B1A453D04127F01B1902BBCA676800580 (U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_Dispose_m2236A593ACA4C39E3840B4D162D958C4F7A2F65B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_MoveNext_m196A9AEBCB4B9E2F917188534526C57C62484B72_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Enumerator_get_Current_mDAC3EB024CDED1C4A4CC7C742D888A114D6F0CF5_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_Clear_m077FEBDE60869DB8984521EE8A6909B5F7AA3A73_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&List_1_GetEnumerator_m2F9DADF593B6CECDFCC6C7F93CE6A03CBA8B7AB0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1708923037EA681607AB485F1A283D9C9CABA8E5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC442518354BF1E10C6787775537CBF4ABBE28856); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * V_1 = NULL; int32_t V_2 = 0; Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E V_3; memset((&V_3), 0, sizeof(V_3)); AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * V_4 = NULL; int32_t V_5 = 0; Exception_t * __last_unhandled_exception = 0; il2cpp::utils::ExceptionSupportStack __leave_targets; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_001a; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_00e3; } } { return (bool)0; } IL_001a: { __this->set_U3CU3E1__state_0((-1)); } IL_0021: { // newSceneInfo = GetSceneInfo(); OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_4 = V_1; NullCheck(L_4); SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 L_5; L_5 = OVRSceneLoader_GetSceneInfo_m87DFA134E3F0C9C43382C59D691867452132AA69(L_4, /*hidden argument*/NULL); // if (newSceneInfo.version != currentSceneInfo.version) int64_t L_6 = L_5.get_version_1(); OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_7 = V_1; NullCheck(L_7); SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 * L_8 = L_7->get_address_of_currentSceneInfo_19(); int64_t L_9 = L_8->get_version_1(); if ((((int64_t)L_6) == ((int64_t)L_9))) { goto IL_00c9; } } { // Debug.Log("[OVRSceneLoader] Scene change detected."); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(_stringLiteralC442518354BF1E10C6787775537CBF4ABBE28856, /*hidden argument*/NULL); // foreach (var b in loadedAssetBundles) OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_10 = V_1; NullCheck(L_10); List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * L_11 = L_10->get_loadedAssetBundles_18(); NullCheck(L_11); Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E L_12; L_12 = List_1_GetEnumerator_m2F9DADF593B6CECDFCC6C7F93CE6A03CBA8B7AB0(L_11, /*hidden argument*/List_1_GetEnumerator_m2F9DADF593B6CECDFCC6C7F93CE6A03CBA8B7AB0_RuntimeMethod_var); V_3 = L_12; } IL_0052: try { // begin try (depth: 1) { goto IL_006f; } IL_0054: { // foreach (var b in loadedAssetBundles) AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * L_13; L_13 = Enumerator_get_Current_mDAC3EB024CDED1C4A4CC7C742D888A114D6F0CF5_inline((Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E *)(&V_3), /*hidden argument*/Enumerator_get_Current_mDAC3EB024CDED1C4A4CC7C742D888A114D6F0CF5_RuntimeMethod_var); V_4 = L_13; // if (b != null) AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * L_14 = V_4; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_15; L_15 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_14, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_15) { goto IL_006f; } } IL_0067: { // b.Unload(true); AssetBundle_t4D34D7FDF0F230DC641DC1FCFA2C0E7E9E628FA4 * L_16 = V_4; NullCheck(L_16); AssetBundle_Unload_m0DEBACB284F6CECA8DF21486D1BBE1189F6A5D66(L_16, (bool)1, /*hidden argument*/NULL); } IL_006f: { // foreach (var b in loadedAssetBundles) bool L_17; L_17 = Enumerator_MoveNext_m196A9AEBCB4B9E2F917188534526C57C62484B72((Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E *)(&V_3), /*hidden argument*/Enumerator_MoveNext_m196A9AEBCB4B9E2F917188534526C57C62484B72_RuntimeMethod_var); if (L_17) { goto IL_0054; } } IL_0078: { IL2CPP_LEAVE(0x88, FINALLY_007a); } } // end try (depth: 1) catch(Il2CppExceptionWrapper& e) { __last_unhandled_exception = (Exception_t *)e.ex; goto FINALLY_007a; } FINALLY_007a: { // begin finally (depth: 1) Enumerator_Dispose_m2236A593ACA4C39E3840B4D162D958C4F7A2F65B((Enumerator_t5161C2BC439157A3EC89C2D4FE60141A69A7689E *)(&V_3), /*hidden argument*/Enumerator_Dispose_m2236A593ACA4C39E3840B4D162D958C4F7A2F65B_RuntimeMethod_var); IL2CPP_END_FINALLY(122) } // end finally (depth: 1) IL2CPP_CLEANUP(122) { IL2CPP_RETHROW_IF_UNHANDLED(Exception_t *) IL2CPP_JUMP_TBL(0x88, IL_0088) } IL_0088: { // loadedAssetBundles.Clear(); OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_18 = V_1; NullCheck(L_18); List_1_t6E8DB9433229E6219F1549FE8B2720F01F925E1E * L_19 = L_18->get_loadedAssetBundles_18(); NullCheck(L_19); List_1_Clear_m077FEBDE60869DB8984521EE8A6909B5F7AA3A73(L_19, /*hidden argument*/List_1_Clear_m077FEBDE60869DB8984521EE8A6909B5F7AA3A73_RuntimeMethod_var); // int activeScenes = SceneManager.sceneCount; IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); int32_t L_20; L_20 = SceneManager_get_sceneCount_m91A161A12E082E983EE73E3CAE9560C6D5E01CF8(/*hidden argument*/NULL); V_2 = L_20; // for (int i = 0; i < activeScenes; i++) V_5 = 0; goto IL_00b1; } IL_009e: { // SceneManager.UnloadSceneAsync(SceneManager.GetSceneAt(i)); int32_t L_21 = V_5; IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); Scene_t5495AD2FDC587DB2E94D9BDE2B85868BFB9A92EE L_22; L_22 = SceneManager_GetSceneAt_m0C00F498AF9AF1B29CC263BAB2C64A1B571648B7(L_21, /*hidden argument*/NULL); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_23; L_23 = SceneManager_UnloadSceneAsync_m475B9F4E214B57825565439378283B0EB193DD18(L_22, /*hidden argument*/NULL); // for (int i = 0; i < activeScenes; i++) int32_t L_24 = V_5; V_5 = ((int32_t)il2cpp_codegen_add((int32_t)L_24, (int32_t)1)); } IL_00b1: { // for (int i = 0; i < activeScenes; i++) int32_t L_25 = V_5; int32_t L_26 = V_2; if ((((int32_t)L_25) < ((int32_t)L_26))) { goto IL_009e; } } { // DestroyAllGameObjects(); OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_27 = V_1; NullCheck(L_27); OVRSceneLoader_DestroyAllGameObjects_m3E88653A5212ED383143C0FFE9FDEC3CF5CC4D31(L_27, /*hidden argument*/NULL); // SceneManager.LoadSceneAsync("OVRTransitionScene"); IL2CPP_RUNTIME_CLASS_INIT(SceneManager_tEC9D10ECC0377F8AE5AEEB5A789FFD24364440FA_il2cpp_TypeInfo_var); AsyncOperation_tB6913CEC83169F22E96067CE8C7117A221E51A86 * L_28; L_28 = SceneManager_LoadSceneAsync_m8DCFAB9FD9FD082CA8505EDA72F685B82351D14C(_stringLiteral1708923037EA681607AB485F1A283D9C9CABA8E5, /*hidden argument*/NULL); // break; goto IL_00ef; } IL_00c9: { // yield return new WaitForSeconds(sceneCheckIntervalSeconds); OVRSceneLoader_tAFB3FE14E4E822EF27D3972D9E8AFE113431CAC3 * L_29 = V_1; NullCheck(L_29); float L_30 = L_29->get_sceneCheckIntervalSeconds_7(); WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 * L_31 = (WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 *)il2cpp_codegen_object_new(WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); WaitForSeconds__ctor_mD298C4CB9532BBBDE172FC40F3397E30504038D4(L_31, L_30, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_31); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_00e3: { __this->set_U3CU3E1__state_0((-1)); // while (true) goto IL_0021; } IL_00ef: { // } return (bool)0; } } // System.Object OVRSceneLoader/d__25::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3ConCheckSceneCoroutineU3Ed__25_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m4ABA4E754B37BA8EF6C921C5A9FECAE80C7B0906 (U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRSceneLoader/d__25::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3ConCheckSceneCoroutineU3Ed__25_System_Collections_IEnumerator_Reset_m8038D8D4B6C77B7EFF8455925C22097A517AC97E (U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3ConCheckSceneCoroutineU3Ed__25_System_Collections_IEnumerator_Reset_m8038D8D4B6C77B7EFF8455925C22097A517AC97E_RuntimeMethod_var))); } } // System.Object OVRSceneLoader/d__25::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3ConCheckSceneCoroutineU3Ed__25_System_Collections_IEnumerator_get_Current_m53E5156C99C91773E8F283F7A4FF87EC70ACA0D1 (U3ConCheckSceneCoroutineU3Ed__25_t8F98555773A0EC69E150B1A5DB372EA4A99E956D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: OVRSceneLoader/SceneInfo IL2CPP_EXTERN_C void SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshal_pinvoke(const SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9& unmarshaled, SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_pinvoke& marshaled) { Exception_t* ___scenes_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'scenes' of type 'SceneInfo'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___scenes_0Exception, NULL); } IL2CPP_EXTERN_C void SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshal_pinvoke_back(const SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_pinvoke& marshaled, SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9& unmarshaled) { Exception_t* ___scenes_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'scenes' of type 'SceneInfo'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___scenes_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVRSceneLoader/SceneInfo IL2CPP_EXTERN_C void SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshal_pinvoke_cleanup(SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRSceneLoader/SceneInfo IL2CPP_EXTERN_C void SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshal_com(const SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9& unmarshaled, SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_com& marshaled) { Exception_t* ___scenes_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'scenes' of type 'SceneInfo'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___scenes_0Exception, NULL); } IL2CPP_EXTERN_C void SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshal_com_back(const SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_com& marshaled, SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9& unmarshaled) { Exception_t* ___scenes_0Exception = il2cpp_codegen_get_marshal_directive_exception("Cannot marshal field 'scenes' of type 'SceneInfo'."); IL2CPP_RAISE_MANAGED_EXCEPTION(___scenes_0Exception, NULL); } // Conversion method for clean up from marshalling of: OVRSceneLoader/SceneInfo IL2CPP_EXTERN_C void SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshal_com_cleanup(SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9_marshaled_com& marshaled) { } // System.Void OVRSceneLoader/SceneInfo::.ctor(System.Collections.Generic.List`1,System.Int64) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SceneInfo__ctor_mBA8C48CCF528EC6F813941BE2F6FA7ED33B5AC16 (SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___sceneList0, int64_t ___currentSceneEpochVersion1, const RuntimeMethod* method) { { // scenes = sceneList; List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * L_0 = ___sceneList0; __this->set_scenes_0(L_0); // version = currentSceneEpochVersion; int64_t L_1 = ___currentSceneEpochVersion1; __this->set_version_1(L_1); // } return; } } IL2CPP_EXTERN_C void SceneInfo__ctor_mBA8C48CCF528EC6F813941BE2F6FA7ED33B5AC16_AdjustorThunk (RuntimeObject * __this, List_1_t6C9F81EDBF0F4A31A9B0DA372D2EF34BDA3A1AF3 * ___sceneList0, int64_t ___currentSceneEpochVersion1, const RuntimeMethod* method) { int32_t _offset = 1; SceneInfo_tA4107ED499E7EE041D97C6DD8E0855A051E6CBD9 * _thisAdjusted = reinterpret_cast(__this + _offset); SceneInfo__ctor_mBA8C48CCF528EC6F813941BE2F6FA7ED33B5AC16(_thisAdjusted, ___sceneList0, ___currentSceneEpochVersion1, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRScreenFade/d__25::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CFadeU3Ed__25__ctor_m91C83B50BA370932C673809655FB39ABB971A0E5 (U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRScreenFade/d__25::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CFadeU3Ed__25_System_IDisposable_Dispose_m1B97968520CC089B5CC65AFD40EA6F9C03EDD421 (U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRScreenFade/d__25::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CFadeU3Ed__25_MoveNext_mE9E939239257F295E060F3CD84B2C6D9195F1C6F (U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * V_1 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0017; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0080; } } { return (bool)0; } IL_0017: { __this->set_U3CU3E1__state_0((-1)); // float elapsedTime = 0.0f; __this->set_U3CelapsedTimeU3E5__2_5((0.0f)); goto IL_0087; } IL_002b: { // elapsedTime += Time.deltaTime; float L_4 = __this->get_U3CelapsedTimeU3E5__2_5(); float L_5; L_5 = Time_get_deltaTime_mF558623BBB4EE65C8810243B05ED204A9E8D6FD1(/*hidden argument*/NULL); __this->set_U3CelapsedTimeU3E5__2_5(((float)il2cpp_codegen_add((float)L_4, (float)L_5))); // animatedFadeAlpha = Mathf.Lerp(startAlpha, endAlpha, Mathf.Clamp01(elapsedTime / fadeTime)); OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * L_6 = V_1; float L_7 = __this->get_startAlpha_3(); float L_8 = __this->get_endAlpha_4(); float L_9 = __this->get_U3CelapsedTimeU3E5__2_5(); OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * L_10 = V_1; NullCheck(L_10); float L_11 = L_10->get_fadeTime_5(); float L_12; L_12 = Mathf_Clamp01_m831CBA1D198C3CDE660E8172A67A4E41BD0D0171(((float)((float)L_9/(float)L_11)), /*hidden argument*/NULL); float L_13; L_13 = Mathf_Lerp_m04D5C368C4E4F1AB78230C6809A6651951A52C86(L_7, L_8, L_12, /*hidden argument*/NULL); NullCheck(L_6); L_6->set_animatedFadeAlpha_10(L_13); // SetMaterialAlpha(); OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * L_14 = V_1; NullCheck(L_14); OVRScreenFade_SetMaterialAlpha_mF8F7C83E500539AC1A40EC3E8BA0A992920CFA36(L_14, /*hidden argument*/NULL); // yield return new WaitForEndOfFrame(); WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4 * L_15 = (WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4 *)il2cpp_codegen_object_new(WaitForEndOfFrame_t082FDFEAAFF92937632C357C39E55C84B8FD06D4_il2cpp_TypeInfo_var); WaitForEndOfFrame__ctor_mEA41FB4A9236A64D566330BBE25F9902DEBB2EEA(L_15, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_15); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0080: { __this->set_U3CU3E1__state_0((-1)); } IL_0087: { // while (elapsedTime < fadeTime) float L_16 = __this->get_U3CelapsedTimeU3E5__2_5(); OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * L_17 = V_1; NullCheck(L_17); float L_18 = L_17->get_fadeTime_5(); if ((((float)L_16) < ((float)L_18))) { goto IL_002b; } } { // animatedFadeAlpha = endAlpha; OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * L_19 = V_1; float L_20 = __this->get_endAlpha_4(); NullCheck(L_19); L_19->set_animatedFadeAlpha_10(L_20); // SetMaterialAlpha(); OVRScreenFade_tFB154F581907E382870A3DD4E114EA3DD396C308 * L_21 = V_1; NullCheck(L_21); OVRScreenFade_SetMaterialAlpha_mF8F7C83E500539AC1A40EC3E8BA0A992920CFA36(L_21, /*hidden argument*/NULL); // } return (bool)0; } } // System.Object OVRScreenFade/d__25::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CFadeU3Ed__25_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m95B24C80E136E1C2D84A7BB9DBAC25A07891F078 (U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRScreenFade/d__25::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CFadeU3Ed__25_System_Collections_IEnumerator_Reset_m32E2A9E170C78E29353CA16B052F5DDF2AC87962 (U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CFadeU3Ed__25_System_Collections_IEnumerator_Reset_m32E2A9E170C78E29353CA16B052F5DDF2AC87962_RuntimeMethod_var))); } } // System.Object OVRScreenFade/d__25::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CFadeU3Ed__25_System_Collections_IEnumerator_get_Current_m51596E52F97D5529965B77C7D1515996742AF4B6 (U3CFadeU3Ed__25_t14A2C01866BF715A237E22911FC6AACFB29236BC * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // Conversion methods for marshalling of: OVRSkeleton/SkeletonPoseData IL2CPP_EXTERN_C void SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshal_pinvoke(const SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E& unmarshaled, SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_pinvoke& marshaled) { marshaled.___U3CRootPoseU3Ek__BackingField_0 = unmarshaled.get_U3CRootPoseU3Ek__BackingField_0(); marshaled.___U3CRootScaleU3Ek__BackingField_1 = unmarshaled.get_U3CRootScaleU3Ek__BackingField_1(); if (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2() != NULL) { il2cpp_array_size_t _unmarshaled_U3CBoneRotationsU3Ek__BackingField_Length = (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->max_length; marshaled.___U3CBoneRotationsU3Ek__BackingField_2 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_U3CBoneRotationsU3Ek__BackingField_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_U3CBoneRotationsU3Ek__BackingField_Length); i++) { (marshaled.___U3CBoneRotationsU3Ek__BackingField_2)[i] = (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___U3CBoneRotationsU3Ek__BackingField_2 = NULL; } marshaled.___U3CIsDataValidU3Ek__BackingField_3 = static_cast(unmarshaled.get_U3CIsDataValidU3Ek__BackingField_3()); marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_4 = static_cast(unmarshaled.get_U3CIsDataHighConfidenceU3Ek__BackingField_4()); marshaled.___U3CSkeletonChangedCountU3Ek__BackingField_5 = unmarshaled.get_U3CSkeletonChangedCountU3Ek__BackingField_5(); } IL2CPP_EXTERN_C void SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshal_pinvoke_back(const SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_pinvoke& marshaled, SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0; memset((&unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0), 0, sizeof(unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0)); unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0 = marshaled.___U3CRootPoseU3Ek__BackingField_0; unmarshaled.set_U3CRootPoseU3Ek__BackingField_0(unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0); float unmarshaled_U3CRootScaleU3Ek__BackingField_temp_1 = 0.0f; unmarshaled_U3CRootScaleU3Ek__BackingField_temp_1 = marshaled.___U3CRootScaleU3Ek__BackingField_1; unmarshaled.set_U3CRootScaleU3Ek__BackingField_1(unmarshaled_U3CRootScaleU3Ek__BackingField_temp_1); if (marshaled.___U3CBoneRotationsU3Ek__BackingField_2 != NULL) { if (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2() == NULL) { unmarshaled.set_U3CBoneRotationsU3Ek__BackingField_2(reinterpret_cast((QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5*)SZArrayNew(QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->SetAtUnchecked(static_cast(i), (marshaled.___U3CBoneRotationsU3Ek__BackingField_2)[i]); } } bool unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_3 = false; unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_3 = static_cast(marshaled.___U3CIsDataValidU3Ek__BackingField_3); unmarshaled.set_U3CIsDataValidU3Ek__BackingField_3(unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_3); bool unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_4 = false; unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_4 = static_cast(marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_4); unmarshaled.set_U3CIsDataHighConfidenceU3Ek__BackingField_4(unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_4); int32_t unmarshaled_U3CSkeletonChangedCountU3Ek__BackingField_temp_5 = 0; unmarshaled_U3CSkeletonChangedCountU3Ek__BackingField_temp_5 = marshaled.___U3CSkeletonChangedCountU3Ek__BackingField_5; unmarshaled.set_U3CSkeletonChangedCountU3Ek__BackingField_5(unmarshaled_U3CSkeletonChangedCountU3Ek__BackingField_temp_5); } // Conversion method for clean up from marshalling of: OVRSkeleton/SkeletonPoseData IL2CPP_EXTERN_C void SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshal_pinvoke_cleanup(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_pinvoke& marshaled) { if (marshaled.___U3CBoneRotationsU3Ek__BackingField_2 != NULL) { il2cpp_codegen_marshal_free(marshaled.___U3CBoneRotationsU3Ek__BackingField_2); marshaled.___U3CBoneRotationsU3Ek__BackingField_2 = NULL; } } // Conversion methods for marshalling of: OVRSkeleton/SkeletonPoseData IL2CPP_EXTERN_C void SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshal_com(const SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E& unmarshaled, SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_com& marshaled) { marshaled.___U3CRootPoseU3Ek__BackingField_0 = unmarshaled.get_U3CRootPoseU3Ek__BackingField_0(); marshaled.___U3CRootScaleU3Ek__BackingField_1 = unmarshaled.get_U3CRootScaleU3Ek__BackingField_1(); if (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2() != NULL) { il2cpp_array_size_t _unmarshaled_U3CBoneRotationsU3Ek__BackingField_Length = (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->max_length; marshaled.___U3CBoneRotationsU3Ek__BackingField_2 = il2cpp_codegen_marshal_allocate_array(_unmarshaled_U3CBoneRotationsU3Ek__BackingField_Length); for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_unmarshaled_U3CBoneRotationsU3Ek__BackingField_Length); i++) { (marshaled.___U3CBoneRotationsU3Ek__BackingField_2)[i] = (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->GetAtUnchecked(static_cast(i)); } } else { marshaled.___U3CBoneRotationsU3Ek__BackingField_2 = NULL; } marshaled.___U3CIsDataValidU3Ek__BackingField_3 = static_cast(unmarshaled.get_U3CIsDataValidU3Ek__BackingField_3()); marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_4 = static_cast(unmarshaled.get_U3CIsDataHighConfidenceU3Ek__BackingField_4()); marshaled.___U3CSkeletonChangedCountU3Ek__BackingField_5 = unmarshaled.get_U3CSkeletonChangedCountU3Ek__BackingField_5(); } IL2CPP_EXTERN_C void SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshal_com_back(const SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_com& marshaled, SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E& unmarshaled) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0; memset((&unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0), 0, sizeof(unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0)); unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0 = marshaled.___U3CRootPoseU3Ek__BackingField_0; unmarshaled.set_U3CRootPoseU3Ek__BackingField_0(unmarshaled_U3CRootPoseU3Ek__BackingField_temp_0); float unmarshaled_U3CRootScaleU3Ek__BackingField_temp_1 = 0.0f; unmarshaled_U3CRootScaleU3Ek__BackingField_temp_1 = marshaled.___U3CRootScaleU3Ek__BackingField_1; unmarshaled.set_U3CRootScaleU3Ek__BackingField_1(unmarshaled_U3CRootScaleU3Ek__BackingField_temp_1); if (marshaled.___U3CBoneRotationsU3Ek__BackingField_2 != NULL) { if (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2() == NULL) { unmarshaled.set_U3CBoneRotationsU3Ek__BackingField_2(reinterpret_cast((QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5*)SZArrayNew(QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5_il2cpp_TypeInfo_var, 1))); } il2cpp_array_size_t _arrayLength = (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->max_length; for (int32_t i = 0; i < ARRAY_LENGTH_AS_INT32(_arrayLength); i++) { (unmarshaled.get_U3CBoneRotationsU3Ek__BackingField_2())->SetAtUnchecked(static_cast(i), (marshaled.___U3CBoneRotationsU3Ek__BackingField_2)[i]); } } bool unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_3 = false; unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_3 = static_cast(marshaled.___U3CIsDataValidU3Ek__BackingField_3); unmarshaled.set_U3CIsDataValidU3Ek__BackingField_3(unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_3); bool unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_4 = false; unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_4 = static_cast(marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_4); unmarshaled.set_U3CIsDataHighConfidenceU3Ek__BackingField_4(unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_4); int32_t unmarshaled_U3CSkeletonChangedCountU3Ek__BackingField_temp_5 = 0; unmarshaled_U3CSkeletonChangedCountU3Ek__BackingField_temp_5 = marshaled.___U3CSkeletonChangedCountU3Ek__BackingField_5; unmarshaled.set_U3CSkeletonChangedCountU3Ek__BackingField_5(unmarshaled_U3CSkeletonChangedCountU3Ek__BackingField_temp_5); } // Conversion method for clean up from marshalling of: OVRSkeleton/SkeletonPoseData IL2CPP_EXTERN_C void SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshal_com_cleanup(SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E_marshaled_com& marshaled) { if (marshaled.___U3CBoneRotationsU3Ek__BackingField_2 != NULL) { il2cpp_codegen_marshal_free(marshaled.___U3CBoneRotationsU3Ek__BackingField_2); marshaled.___U3CBoneRotationsU3Ek__BackingField_2 = NULL; } } // OVRPlugin/Posef OVRSkeleton/SkeletonPoseData::get_RootPose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 SkeletonPoseData_get_RootPose_mAA0A04E5A718E769B26814793CE990CABF396012 (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public OVRPlugin.Posef RootPose { get; set; } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_0 = __this->get_U3CRootPoseU3Ek__BackingField_0(); return L_0; } } IL2CPP_EXTERN_C Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 SkeletonPoseData_get_RootPose_mAA0A04E5A718E769B26814793CE990CABF396012_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 _returnValue; _returnValue = SkeletonPoseData_get_RootPose_mAA0A04E5A718E769B26814793CE990CABF396012_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeleton/SkeletonPoseData::set_RootPose(OVRPlugin/Posef) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonPoseData_set_RootPose_mA62FF0D3757B42B1A1E72E9CDB16B951492657D2 (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___value0, const RuntimeMethod* method) { { // public OVRPlugin.Posef RootPose { get; set; } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_0 = ___value0; __this->set_U3CRootPoseU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void SkeletonPoseData_set_RootPose_mA62FF0D3757B42B1A1E72E9CDB16B951492657D2_AdjustorThunk (RuntimeObject * __this, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonPoseData_set_RootPose_mA62FF0D3757B42B1A1E72E9CDB16B951492657D2_inline(_thisAdjusted, ___value0, method); } // System.Single OVRSkeleton/SkeletonPoseData::get_RootScale() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SkeletonPoseData_get_RootScale_mD56A6408966BC4EDC53A52FAB6A45E34034AF5E8 (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = __this->get_U3CRootScaleU3Ek__BackingField_1(); return L_0; } } IL2CPP_EXTERN_C float SkeletonPoseData_get_RootScale_mD56A6408966BC4EDC53A52FAB6A45E34034AF5E8_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = SkeletonPoseData_get_RootScale_mD56A6408966BC4EDC53A52FAB6A45E34034AF5E8_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeleton/SkeletonPoseData::set_RootScale(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonPoseData_set_RootScale_mA7B8162C2BD89864FFFBD836D0F8FDDBD58A2031 (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, float ___value0, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = ___value0; __this->set_U3CRootScaleU3Ek__BackingField_1(L_0); return; } } IL2CPP_EXTERN_C void SkeletonPoseData_set_RootScale_mA7B8162C2BD89864FFFBD836D0F8FDDBD58A2031_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonPoseData_set_RootScale_mA7B8162C2BD89864FFFBD836D0F8FDDBD58A2031_inline(_thisAdjusted, ___value0, method); } // OVRPlugin/Quatf[] OVRSkeleton/SkeletonPoseData::get_BoneRotations() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* SkeletonPoseData_get_BoneRotations_m9E7CDA3AC0C7EDC90E0B00112E4C357C30A83AB1 (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public OVRPlugin.Quatf[] BoneRotations { get; set; } QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* L_0 = __this->get_U3CBoneRotationsU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* SkeletonPoseData_get_BoneRotations_m9E7CDA3AC0C7EDC90E0B00112E4C357C30A83AB1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* _returnValue; _returnValue = SkeletonPoseData_get_BoneRotations_m9E7CDA3AC0C7EDC90E0B00112E4C357C30A83AB1_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeleton/SkeletonPoseData::set_BoneRotations(OVRPlugin/Quatf[]) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonPoseData_set_BoneRotations_m50EE7D6F0085AC6A67A071DD0F1CE76470E08A9E (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* ___value0, const RuntimeMethod* method) { { // public OVRPlugin.Quatf[] BoneRotations { get; set; } QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* L_0 = ___value0; __this->set_U3CBoneRotationsU3Ek__BackingField_2(L_0); return; } } IL2CPP_EXTERN_C void SkeletonPoseData_set_BoneRotations_m50EE7D6F0085AC6A67A071DD0F1CE76470E08A9E_AdjustorThunk (RuntimeObject * __this, QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonPoseData_set_BoneRotations_m50EE7D6F0085AC6A67A071DD0F1CE76470E08A9E_inline(_thisAdjusted, ___value0, method); } // System.Boolean OVRSkeleton/SkeletonPoseData::get_IsDataValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SkeletonPoseData_get_IsDataValid_mF4C881E642F2937199E42505D8768B5CC3F0682D (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = __this->get_U3CIsDataValidU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C bool SkeletonPoseData_get_IsDataValid_mF4C881E642F2937199E42505D8768B5CC3F0682D_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = SkeletonPoseData_get_IsDataValid_mF4C881E642F2937199E42505D8768B5CC3F0682D_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeleton/SkeletonPoseData::set_IsDataValid(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonPoseData_set_IsDataValid_m0DDB1E4DB75026F96B6470E4678302C6DC47968A (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataValidU3Ek__BackingField_3(L_0); return; } } IL2CPP_EXTERN_C void SkeletonPoseData_set_IsDataValid_m0DDB1E4DB75026F96B6470E4678302C6DC47968A_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonPoseData_set_IsDataValid_m0DDB1E4DB75026F96B6470E4678302C6DC47968A_inline(_thisAdjusted, ___value0, method); } // System.Boolean OVRSkeleton/SkeletonPoseData::get_IsDataHighConfidence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SkeletonPoseData_get_IsDataHighConfidence_m999D793F7315E6132C014E731A81254F828409D1 (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = __this->get_U3CIsDataHighConfidenceU3Ek__BackingField_4(); return L_0; } } IL2CPP_EXTERN_C bool SkeletonPoseData_get_IsDataHighConfidence_m999D793F7315E6132C014E731A81254F828409D1_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = SkeletonPoseData_get_IsDataHighConfidence_m999D793F7315E6132C014E731A81254F828409D1_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeleton/SkeletonPoseData::set_IsDataHighConfidence(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonPoseData_set_IsDataHighConfidence_m14C298CB21B846A17493988BA23A5F12D3EE3E4B (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataHighConfidenceU3Ek__BackingField_4(L_0); return; } } IL2CPP_EXTERN_C void SkeletonPoseData_set_IsDataHighConfidence_m14C298CB21B846A17493988BA23A5F12D3EE3E4B_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonPoseData_set_IsDataHighConfidence_m14C298CB21B846A17493988BA23A5F12D3EE3E4B_inline(_thisAdjusted, ___value0, method); } // System.Int32 OVRSkeleton/SkeletonPoseData::get_SkeletonChangedCount() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR int32_t SkeletonPoseData_get_SkeletonChangedCount_m79AA087D6B7CB6482EF5D82A2F516CDBBCCCA404 (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public int SkeletonChangedCount { get; set; } int32_t L_0 = __this->get_U3CSkeletonChangedCountU3Ek__BackingField_5(); return L_0; } } IL2CPP_EXTERN_C int32_t SkeletonPoseData_get_SkeletonChangedCount_m79AA087D6B7CB6482EF5D82A2F516CDBBCCCA404_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); int32_t _returnValue; _returnValue = SkeletonPoseData_get_SkeletonChangedCount_m79AA087D6B7CB6482EF5D82A2F516CDBBCCCA404_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeleton/SkeletonPoseData::set_SkeletonChangedCount(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonPoseData_set_SkeletonChangedCount_m9B9A69456003D5A62521BEA3403471087292068C (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int SkeletonChangedCount { get; set; } int32_t L_0 = ___value0; __this->set_U3CSkeletonChangedCountU3Ek__BackingField_5(L_0); return; } } IL2CPP_EXTERN_C void SkeletonPoseData_set_SkeletonChangedCount_m9B9A69456003D5A62521BEA3403471087292068C_AdjustorThunk (RuntimeObject * __this, int32_t ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonPoseData_set_SkeletonChangedCount_m9B9A69456003D5A62521BEA3403471087292068C_inline(_thisAdjusted, ___value0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 OVRSkeletonRenderer/BoneVisualization::.ctor(UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material,System.Single,UnityEngine.Transform,UnityEngine.Transform) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoneVisualization__ctor_m3F87BA0304084DFBA67A4801BD0C7E67CEC36EAD (BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rootGO0, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___renderMat1, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___systemGestureMat2, float ___scale3, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___begin4, Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * ___end5, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_AddComponent_TisLineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967_mDBF1085005984D110DBAB1A2051888DC0AAC10B0_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public BoneVisualization(GameObject rootGO, // Material renderMat, // Material systemGestureMat, // float scale, // Transform begin, // Transform end) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // RenderMaterial = renderMat; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = ___renderMat1; __this->set_RenderMaterial_4(L_0); // SystemGestureMaterial = systemGestureMat; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_1 = ___systemGestureMat2; __this->set_SystemGestureMaterial_5(L_1); // BoneBegin = begin; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_2 = ___begin4; __this->set_BoneBegin_1(L_2); // BoneEnd = end; Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_3 = ___end5; __this->set_BoneEnd_2(L_3); // BoneGO = new GameObject(begin.name); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = ___begin4; NullCheck(L_4); String_t* L_5; L_5 = Object_get_name_m0C7BC870ED2F0DC5A2FB09628136CD7D1CB82CFB(L_4, /*hidden argument*/NULL); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = (GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 *)il2cpp_codegen_object_new(GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319_il2cpp_TypeInfo_var); GameObject__ctor_mDF8BF31EAE3E03F24421531B25FB4BEDB7C87144(L_6, L_5, /*hidden argument*/NULL); __this->set_BoneGO_0(L_6); // BoneGO.transform.SetParent(rootGO.transform, false); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7 = __this->get_BoneGO_0(); NullCheck(L_7); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_8; L_8 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_7, /*hidden argument*/NULL); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_9 = ___rootGO0; NullCheck(L_9); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_10; L_10 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_9, /*hidden argument*/NULL); NullCheck(L_8); Transform_SetParent_mA6A651EDE81F139E1D6C7BA894834AD71D07227A(L_8, L_10, (bool)0, /*hidden argument*/NULL); // Line = BoneGO.AddComponent(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_11 = __this->get_BoneGO_0(); NullCheck(L_11); LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_12; L_12 = GameObject_AddComponent_TisLineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967_mDBF1085005984D110DBAB1A2051888DC0AAC10B0(L_11, /*hidden argument*/GameObject_AddComponent_TisLineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967_mDBF1085005984D110DBAB1A2051888DC0AAC10B0_RuntimeMethod_var); __this->set_Line_3(L_12); // Line.sharedMaterial = RenderMaterial; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_13 = __this->get_Line_3(); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_14 = __this->get_RenderMaterial_4(); NullCheck(L_13); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_13, L_14, /*hidden argument*/NULL); // Line.useWorldSpace = true; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_15 = __this->get_Line_3(); NullCheck(L_15); LineRenderer_set_useWorldSpace_m53AA0FE659EFB041647DB6A29826D20D52CBE148(L_15, (bool)1, /*hidden argument*/NULL); // Line.positionCount = 2; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_16 = __this->get_Line_3(); NullCheck(L_16); LineRenderer_set_positionCount_mA8B73AC2B9151473E94F3713E1041AA34D758AE5(L_16, 2, /*hidden argument*/NULL); // Line.SetPosition(0, BoneBegin.position); LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_17 = __this->get_Line_3(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_18 = __this->get_BoneBegin_1(); NullCheck(L_18); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_19; L_19 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_18, /*hidden argument*/NULL); NullCheck(L_17); LineRenderer_SetPosition_mD37DBE4B3E13A838FFD09289BC77DEDB423D620F(L_17, 0, L_19, /*hidden argument*/NULL); // Line.SetPosition(1, BoneEnd.position); LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_20 = __this->get_Line_3(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_21 = __this->get_BoneEnd_2(); NullCheck(L_21); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_22; L_22 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_21, /*hidden argument*/NULL); NullCheck(L_20); LineRenderer_SetPosition_mD37DBE4B3E13A838FFD09289BC77DEDB423D620F(L_20, 1, L_22, /*hidden argument*/NULL); // Line.startWidth = LINE_RENDERER_WIDTH * scale; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_23 = __this->get_Line_3(); float L_24 = ___scale3; NullCheck(L_23); LineRenderer_set_startWidth_mD88B562DD413EE9861FB254963C7EDCB5199C1DF(L_23, ((float)il2cpp_codegen_multiply((float)(0.00499999989f), (float)L_24)), /*hidden argument*/NULL); // Line.endWidth = LINE_RENDERER_WIDTH * scale; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_25 = __this->get_Line_3(); float L_26 = ___scale3; NullCheck(L_25); LineRenderer_set_endWidth_m3DCD4FFCC3944DD6DC0737C8AF8C7EDB5A6CF59A(L_25, ((float)il2cpp_codegen_multiply((float)(0.00499999989f), (float)L_26)), /*hidden argument*/NULL); // } return; } } // System.Void OVRSkeletonRenderer/BoneVisualization::Update(System.Single,System.Boolean,System.Boolean,OVRSkeletonRenderer/ConfidenceBehavior,OVRSkeletonRenderer/SystemGestureBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void BoneVisualization_Update_mCC72AB3F8206316D980B86F5E90D907FAA9CD0D1 (BoneVisualization_tE5772FD950EB31352828C001515A03837DF80B8E * __this, float ___scale0, bool ___shouldRender1, bool ___shouldUseSystemGestureMaterial2, int32_t ___confidenceBehavior3, int32_t ___systemGestureBehavior4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // Line.SetPosition(0, BoneBegin.position); LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_0 = __this->get_Line_3(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_1 = __this->get_BoneBegin_1(); NullCheck(L_1); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2; L_2 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_1, /*hidden argument*/NULL); NullCheck(L_0); LineRenderer_SetPosition_mD37DBE4B3E13A838FFD09289BC77DEDB423D620F(L_0, 0, L_2, /*hidden argument*/NULL); // Line.SetPosition(1, BoneEnd.position); LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_3 = __this->get_Line_3(); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_4 = __this->get_BoneEnd_2(); NullCheck(L_4); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_5; L_5 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_4, /*hidden argument*/NULL); NullCheck(L_3); LineRenderer_SetPosition_mD37DBE4B3E13A838FFD09289BC77DEDB423D620F(L_3, 1, L_5, /*hidden argument*/NULL); // Line.startWidth = LINE_RENDERER_WIDTH * scale; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_6 = __this->get_Line_3(); float L_7 = ___scale0; NullCheck(L_6); LineRenderer_set_startWidth_mD88B562DD413EE9861FB254963C7EDCB5199C1DF(L_6, ((float)il2cpp_codegen_multiply((float)(0.00499999989f), (float)L_7)), /*hidden argument*/NULL); // Line.endWidth = LINE_RENDERER_WIDTH * scale; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_8 = __this->get_Line_3(); float L_9 = ___scale0; NullCheck(L_8); LineRenderer_set_endWidth_m3DCD4FFCC3944DD6DC0737C8AF8C7EDB5A6CF59A(L_8, ((float)il2cpp_codegen_multiply((float)(0.00499999989f), (float)L_9)), /*hidden argument*/NULL); // if (confidenceBehavior == ConfidenceBehavior.ToggleRenderer) int32_t L_10 = ___confidenceBehavior3; if ((!(((uint32_t)L_10) == ((uint32_t)1)))) { goto IL_0063; } } { // Line.enabled = shouldRender; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_11 = __this->get_Line_3(); bool L_12 = ___shouldRender1; NullCheck(L_11); Renderer_set_enabled_mFFBA418C428C1B2B151C77B879DD10C393D9D95B(L_11, L_12, /*hidden argument*/NULL); } IL_0063: { // if (systemGestureBehavior == SystemGestureBehavior.SwapMaterial) int32_t L_13 = ___systemGestureBehavior4; if ((!(((uint32_t)L_13) == ((uint32_t)1)))) { goto IL_00c1; } } { // if (shouldUseSystemGestureMaterial && Line.sharedMaterial != SystemGestureMaterial) bool L_14 = ___shouldUseSystemGestureMaterial2; if (!L_14) { goto IL_0095; } } { LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_15 = __this->get_Line_3(); NullCheck(L_15); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_16; L_16 = Renderer_get_sharedMaterial_m42DF538F0C6EA249B1FB626485D45D083BA74FCC(L_15, /*hidden argument*/NULL); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_17 = __this->get_SystemGestureMaterial_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_18; L_18 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_16, L_17, /*hidden argument*/NULL); if (!L_18) { goto IL_0095; } } { // Line.sharedMaterial = SystemGestureMaterial; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_19 = __this->get_Line_3(); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_20 = __this->get_SystemGestureMaterial_5(); NullCheck(L_19); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_19, L_20, /*hidden argument*/NULL); // } return; } IL_0095: { // else if (!shouldUseSystemGestureMaterial && Line.sharedMaterial != RenderMaterial) bool L_21 = ___shouldUseSystemGestureMaterial2; if (L_21) { goto IL_00c1; } } { LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_22 = __this->get_Line_3(); NullCheck(L_22); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_23; L_23 = Renderer_get_sharedMaterial_m42DF538F0C6EA249B1FB626485D45D083BA74FCC(L_22, /*hidden argument*/NULL); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_24 = __this->get_RenderMaterial_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_25; L_25 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_23, L_24, /*hidden argument*/NULL); if (!L_25) { goto IL_00c1; } } { // Line.sharedMaterial = RenderMaterial; LineRenderer_t237E878F3E77C127A540DE7AC4681B3706727967 * L_26 = __this->get_Line_3(); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_27 = __this->get_RenderMaterial_4(); NullCheck(L_26); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_26, L_27, /*hidden argument*/NULL); } IL_00c1: { // } 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 OVRSkeletonRenderer/CapsuleVisualization::.ctor(UnityEngine.GameObject,UnityEngine.Material,UnityEngine.Material,System.Single,OVRBoneCapsule) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CapsuleVisualization__ctor_mBF9BADDD36507982EC76CDAA7B23A09E704207C6 (CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28 * __this, GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * ___rootGO0, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___renderMat1, Material_t8927C00353A72755313F046D0CE85178AE8218EE * ___systemGestureMat2, float ___scale3, OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * ___boneCapsule4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m6EBBC2FEDBA32E3404BD034FD75FB37DFDFF0C95_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_GetComponent_TisMeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B_m4E244CD0EBBF9E0A3A73AF14F6EC434CA82E6F4B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public CapsuleVisualization(GameObject rootGO, // Material renderMat, // Material systemGestureMat, // float scale, // OVRBoneCapsule boneCapsule) Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); // RenderMaterial = renderMat; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_0 = ___renderMat1; __this->set_RenderMaterial_4(L_0); // SystemGestureMaterial = systemGestureMat; Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_1 = ___systemGestureMat2; __this->set_SystemGestureMaterial_5(L_1); // BoneCapsule = boneCapsule; OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * L_2 = ___boneCapsule4; __this->set_BoneCapsule_1(L_2); // CapsuleGO = GameObject.CreatePrimitive(PrimitiveType.Capsule); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3; L_3 = GameObject_CreatePrimitive_m3F797A3D7CBF364F6581F6C800AB9F9BAF5000C6(1, /*hidden argument*/NULL); __this->set_CapsuleGO_0(L_3); // CapsuleCollider collider = CapsuleGO.GetComponent(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_4 = __this->get_CapsuleGO_0(); NullCheck(L_4); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_5; L_5 = GameObject_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m6EBBC2FEDBA32E3404BD034FD75FB37DFDFF0C95(L_4, /*hidden argument*/GameObject_GetComponent_TisCapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635_m6EBBC2FEDBA32E3404BD034FD75FB37DFDFF0C95_RuntimeMethod_var); // Destroy(collider); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); Object_Destroy_mBDC17991A372E11E2E485EFC5C72F58972CBEC0F(L_5, /*hidden argument*/NULL); // Renderer = CapsuleGO.GetComponent(); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = __this->get_CapsuleGO_0(); NullCheck(L_6); MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * L_7; L_7 = GameObject_GetComponent_TisMeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B_m4E244CD0EBBF9E0A3A73AF14F6EC434CA82E6F4B(L_6, /*hidden argument*/GameObject_GetComponent_TisMeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B_m4E244CD0EBBF9E0A3A73AF14F6EC434CA82E6F4B_RuntimeMethod_var); __this->set_Renderer_3(L_7); // Renderer.sharedMaterial = RenderMaterial; MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * L_8 = __this->get_Renderer_3(); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_9 = __this->get_RenderMaterial_4(); NullCheck(L_8); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_8, L_9, /*hidden argument*/NULL); // capsuleScale = Vector3.one; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10; L_10 = Vector3_get_one_mFA8E564BB81364E4E65551816F3631176E7F58E7(/*hidden argument*/NULL); __this->set_capsuleScale_2(L_10); // capsuleScale.y = boneCapsule.CapsuleCollider.height / 2; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_11 = __this->get_address_of_capsuleScale_2(); OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * L_12 = ___boneCapsule4; NullCheck(L_12); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_13; L_13 = OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline(L_12, /*hidden argument*/NULL); NullCheck(L_13); float L_14; L_14 = CapsuleCollider_get_height_mD6CF93CB2C222F8E5B77D65B0356F8FD8005B526(L_13, /*hidden argument*/NULL); L_11->set_y_3(((float)((float)L_14/(float)(2.0f)))); // capsuleScale.x = boneCapsule.CapsuleCollider.radius * 2; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_15 = __this->get_address_of_capsuleScale_2(); OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * L_16 = ___boneCapsule4; NullCheck(L_16); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_17; L_17 = OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline(L_16, /*hidden argument*/NULL); NullCheck(L_17); float L_18; L_18 = CapsuleCollider_get_radius_m5746DDE5E6A099269FC9DAD253887C58E8A064D0(L_17, /*hidden argument*/NULL); L_15->set_x_2(((float)il2cpp_codegen_multiply((float)L_18, (float)(2.0f)))); // capsuleScale.z = boneCapsule.CapsuleCollider.radius * 2; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * L_19 = __this->get_address_of_capsuleScale_2(); OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * L_20 = ___boneCapsule4; NullCheck(L_20); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_21; L_21 = OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline(L_20, /*hidden argument*/NULL); NullCheck(L_21); float L_22; L_22 = CapsuleCollider_get_radius_m5746DDE5E6A099269FC9DAD253887C58E8A064D0(L_21, /*hidden argument*/NULL); L_19->set_z_4(((float)il2cpp_codegen_multiply((float)L_22, (float)(2.0f)))); // CapsuleGO.transform.localScale = capsuleScale * scale; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_23 = __this->get_CapsuleGO_0(); NullCheck(L_23); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_24; L_24 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_23, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_25 = __this->get_capsuleScale_2(); float L_26 = ___scale3; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27; L_27 = Vector3_op_Multiply_m06DD6079C6317F9A4D889EE4D22C4AED1E438E3B_inline(L_25, L_26, /*hidden argument*/NULL); NullCheck(L_24); Transform_set_localScale_mF4D1611E48D1BA7566A1E166DC2DACF3ADD8BA3A(L_24, L_27, /*hidden argument*/NULL); // } return; } } // System.Void OVRSkeletonRenderer/CapsuleVisualization::Update(System.Single,System.Boolean,System.Boolean,OVRSkeletonRenderer/ConfidenceBehavior,OVRSkeletonRenderer/SystemGestureBehavior) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void CapsuleVisualization_Update_m31FB340C8AC0B8B671D1339A157C5E2D132D3912 (CapsuleVisualization_t8D09C9F85028AD11633ABF87D6D8DAD26FC1DD28 * __this, float ___scale0, bool ___shouldRender1, bool ___shouldUseSystemGestureMaterial2, int32_t ___confidenceBehavior3, int32_t ___systemGestureBehavior4, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // if (confidenceBehavior == ConfidenceBehavior.ToggleRenderer) int32_t L_0 = ___confidenceBehavior3; if ((!(((uint32_t)L_0) == ((uint32_t)1)))) { goto IL_001f; } } { // if (CapsuleGO.activeSelf != shouldRender) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_1 = __this->get_CapsuleGO_0(); NullCheck(L_1); bool L_2; L_2 = GameObject_get_activeSelf_m4865097C24FB29F3C31F5C30619AF242297F23EE(L_1, /*hidden argument*/NULL); bool L_3 = ___shouldRender1; if ((((int32_t)L_2) == ((int32_t)L_3))) { goto IL_001f; } } { // CapsuleGO.SetActive(shouldRender); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_4 = __this->get_CapsuleGO_0(); bool L_5 = ___shouldRender1; NullCheck(L_4); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_4, L_5, /*hidden argument*/NULL); } IL_001f: { // CapsuleGO.transform.rotation = BoneCapsule.CapsuleCollider.transform.rotation * _capsuleRotationOffset; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_6 = __this->get_CapsuleGO_0(); NullCheck(L_6); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_7; L_7 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_6, /*hidden argument*/NULL); OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * L_8 = __this->get_BoneCapsule_1(); NullCheck(L_8); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_9; L_9 = OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline(L_8, /*hidden argument*/NULL); NullCheck(L_9); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_10; L_10 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_9, /*hidden argument*/NULL); NullCheck(L_10); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_11; L_11 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3_il2cpp_TypeInfo_var); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_12 = ((OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3_StaticFields*)il2cpp_codegen_static_fields_for(OVRSkeletonRenderer_t7A93F115BAB39ED6A747366145753C4341DB68C3_il2cpp_TypeInfo_var))->get__capsuleRotationOffset_20(); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_13; L_13 = Quaternion_op_Multiply_mA5FD288B815D9C1B59C7B26AA1942A85ACE94153(L_11, L_12, /*hidden argument*/NULL); NullCheck(L_7); Transform_set_rotation_m1B5F3D4CE984AB31254615C9C71B0E54978583B4(L_7, L_13, /*hidden argument*/NULL); // CapsuleGO.transform.position = BoneCapsule.CapsuleCollider.transform.TransformPoint(BoneCapsule.CapsuleCollider.center); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_14 = __this->get_CapsuleGO_0(); NullCheck(L_14); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_15; L_15 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_14, /*hidden argument*/NULL); OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * L_16 = __this->get_BoneCapsule_1(); NullCheck(L_16); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_17; L_17 = OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline(L_16, /*hidden argument*/NULL); NullCheck(L_17); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_18; L_18 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_17, /*hidden argument*/NULL); OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * L_19 = __this->get_BoneCapsule_1(); NullCheck(L_19); CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_20; L_20 = OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline(L_19, /*hidden argument*/NULL); NullCheck(L_20); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_21; L_21 = CapsuleCollider_get_center_m6374F7457A9450CAFFAD2DF0C9D1419BF9E304CB(L_20, /*hidden argument*/NULL); NullCheck(L_18); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_22; L_22 = Transform_TransformPoint_m68AF95765A9279192E601208A9C5170027A5F0D2(L_18, L_21, /*hidden argument*/NULL); NullCheck(L_15); Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91(L_15, L_22, /*hidden argument*/NULL); // CapsuleGO.transform.localScale = capsuleScale * scale; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_23 = __this->get_CapsuleGO_0(); NullCheck(L_23); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_24; L_24 = GameObject_get_transform_m16A80BB92B6C8C5AB696E447014D45EDF1E4DE34(L_23, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_25 = __this->get_capsuleScale_2(); float L_26 = ___scale0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_27; L_27 = Vector3_op_Multiply_m06DD6079C6317F9A4D889EE4D22C4AED1E438E3B_inline(L_25, L_26, /*hidden argument*/NULL); NullCheck(L_24); Transform_set_localScale_mF4D1611E48D1BA7566A1E166DC2DACF3ADD8BA3A(L_24, L_27, /*hidden argument*/NULL); // if (systemGestureBehavior == SystemGestureBehavior.SwapMaterial) int32_t L_28 = ___systemGestureBehavior4; if ((!(((uint32_t)L_28) == ((uint32_t)1)))) { goto IL_00fd; } } { // if (shouldUseSystemGestureMaterial && Renderer.sharedMaterial != SystemGestureMaterial) bool L_29 = ___shouldUseSystemGestureMaterial2; if (!L_29) { goto IL_00d1; } } { MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * L_30 = __this->get_Renderer_3(); NullCheck(L_30); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_31; L_31 = Renderer_get_sharedMaterial_m42DF538F0C6EA249B1FB626485D45D083BA74FCC(L_30, /*hidden argument*/NULL); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_32 = __this->get_SystemGestureMaterial_5(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_33; L_33 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_31, L_32, /*hidden argument*/NULL); if (!L_33) { goto IL_00d1; } } { // Renderer.sharedMaterial = SystemGestureMaterial; MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * L_34 = __this->get_Renderer_3(); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_35 = __this->get_SystemGestureMaterial_5(); NullCheck(L_34); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_34, L_35, /*hidden argument*/NULL); // } return; } IL_00d1: { // else if (!shouldUseSystemGestureMaterial && Renderer.sharedMaterial != RenderMaterial) bool L_36 = ___shouldUseSystemGestureMaterial2; if (L_36) { goto IL_00fd; } } { MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * L_37 = __this->get_Renderer_3(); NullCheck(L_37); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_38; L_38 = Renderer_get_sharedMaterial_m42DF538F0C6EA249B1FB626485D45D083BA74FCC(L_37, /*hidden argument*/NULL); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_39 = __this->get_RenderMaterial_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_40; L_40 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_38, L_39, /*hidden argument*/NULL); if (!L_40) { goto IL_00fd; } } { // Renderer.sharedMaterial = RenderMaterial; MeshRenderer_tCD983A2F635E12BCB0BAA2E635D96A318757908B * L_41 = __this->get_Renderer_3(); Material_t8927C00353A72755313F046D0CE85178AE8218EE * L_42 = __this->get_RenderMaterial_4(); NullCheck(L_41); Renderer_set_sharedMaterial_m1E66766F93E95F692C3C9C2C09AFD795B156678B(L_41, L_42, /*hidden argument*/NULL); } IL_00fd: { // } 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: OVRSkeletonRenderer/SkeletonRendererData IL2CPP_EXTERN_C void SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshal_pinvoke(const SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE& unmarshaled, SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_pinvoke& marshaled) { marshaled.___U3CRootScaleU3Ek__BackingField_0 = unmarshaled.get_U3CRootScaleU3Ek__BackingField_0(); marshaled.___U3CIsDataValidU3Ek__BackingField_1 = static_cast(unmarshaled.get_U3CIsDataValidU3Ek__BackingField_1()); marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_2 = static_cast(unmarshaled.get_U3CIsDataHighConfidenceU3Ek__BackingField_2()); marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3 = static_cast(unmarshaled.get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3()); } IL2CPP_EXTERN_C void SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshal_pinvoke_back(const SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_pinvoke& marshaled, SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE& unmarshaled) { float unmarshaled_U3CRootScaleU3Ek__BackingField_temp_0 = 0.0f; unmarshaled_U3CRootScaleU3Ek__BackingField_temp_0 = marshaled.___U3CRootScaleU3Ek__BackingField_0; unmarshaled.set_U3CRootScaleU3Ek__BackingField_0(unmarshaled_U3CRootScaleU3Ek__BackingField_temp_0); bool unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_1 = false; unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_1 = static_cast(marshaled.___U3CIsDataValidU3Ek__BackingField_1); unmarshaled.set_U3CIsDataValidU3Ek__BackingField_1(unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_1); bool unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_2 = false; unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_2 = static_cast(marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_2); unmarshaled.set_U3CIsDataHighConfidenceU3Ek__BackingField_2(unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_2); bool unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_3 = false; unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_3 = static_cast(marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3); unmarshaled.set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3(unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_3); } // Conversion method for clean up from marshalling of: OVRSkeletonRenderer/SkeletonRendererData IL2CPP_EXTERN_C void SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshal_pinvoke_cleanup(SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_pinvoke& marshaled) { } // Conversion methods for marshalling of: OVRSkeletonRenderer/SkeletonRendererData IL2CPP_EXTERN_C void SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshal_com(const SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE& unmarshaled, SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_com& marshaled) { marshaled.___U3CRootScaleU3Ek__BackingField_0 = unmarshaled.get_U3CRootScaleU3Ek__BackingField_0(); marshaled.___U3CIsDataValidU3Ek__BackingField_1 = static_cast(unmarshaled.get_U3CIsDataValidU3Ek__BackingField_1()); marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_2 = static_cast(unmarshaled.get_U3CIsDataHighConfidenceU3Ek__BackingField_2()); marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3 = static_cast(unmarshaled.get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3()); } IL2CPP_EXTERN_C void SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshal_com_back(const SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_com& marshaled, SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE& unmarshaled) { float unmarshaled_U3CRootScaleU3Ek__BackingField_temp_0 = 0.0f; unmarshaled_U3CRootScaleU3Ek__BackingField_temp_0 = marshaled.___U3CRootScaleU3Ek__BackingField_0; unmarshaled.set_U3CRootScaleU3Ek__BackingField_0(unmarshaled_U3CRootScaleU3Ek__BackingField_temp_0); bool unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_1 = false; unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_1 = static_cast(marshaled.___U3CIsDataValidU3Ek__BackingField_1); unmarshaled.set_U3CIsDataValidU3Ek__BackingField_1(unmarshaled_U3CIsDataValidU3Ek__BackingField_temp_1); bool unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_2 = false; unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_2 = static_cast(marshaled.___U3CIsDataHighConfidenceU3Ek__BackingField_2); unmarshaled.set_U3CIsDataHighConfidenceU3Ek__BackingField_2(unmarshaled_U3CIsDataHighConfidenceU3Ek__BackingField_temp_2); bool unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_3 = false; unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_3 = static_cast(marshaled.___U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3); unmarshaled.set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3(unmarshaled_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_temp_3); } // Conversion method for clean up from marshalling of: OVRSkeletonRenderer/SkeletonRendererData IL2CPP_EXTERN_C void SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshal_com_cleanup(SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE_marshaled_com& marshaled) { } // System.Single OVRSkeletonRenderer/SkeletonRendererData::get_RootScale() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR float SkeletonRendererData_get_RootScale_mDA6B300BD2DDB4642D4B8DCA8BE12736B0C87079 (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = __this->get_U3CRootScaleU3Ek__BackingField_0(); return L_0; } } IL2CPP_EXTERN_C float SkeletonRendererData_get_RootScale_mDA6B300BD2DDB4642D4B8DCA8BE12736B0C87079_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); float _returnValue; _returnValue = SkeletonRendererData_get_RootScale_mDA6B300BD2DDB4642D4B8DCA8BE12736B0C87079_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_RootScale(System.Single) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonRendererData_set_RootScale_m390D0F58A1D46D4DC90F61E0FD029D81B276041B (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, float ___value0, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = ___value0; __this->set_U3CRootScaleU3Ek__BackingField_0(L_0); return; } } IL2CPP_EXTERN_C void SkeletonRendererData_set_RootScale_m390D0F58A1D46D4DC90F61E0FD029D81B276041B_AdjustorThunk (RuntimeObject * __this, float ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonRendererData_set_RootScale_m390D0F58A1D46D4DC90F61E0FD029D81B276041B_inline(_thisAdjusted, ___value0, method); } // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::get_IsDataValid() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_IsDataValid_m73AB319ABF88E8EA0FD4805B250E58AC45411FB0 (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = __this->get_U3CIsDataValidU3Ek__BackingField_1(); return L_0; } } IL2CPP_EXTERN_C bool SkeletonRendererData_get_IsDataValid_m73AB319ABF88E8EA0FD4805B250E58AC45411FB0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = SkeletonRendererData_get_IsDataValid_m73AB319ABF88E8EA0FD4805B250E58AC45411FB0_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_IsDataValid(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonRendererData_set_IsDataValid_mC96D90E90D94CA29CDC482B4D4F47320D1D08B9A (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataValidU3Ek__BackingField_1(L_0); return; } } IL2CPP_EXTERN_C void SkeletonRendererData_set_IsDataValid_mC96D90E90D94CA29CDC482B4D4F47320D1D08B9A_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonRendererData_set_IsDataValid_mC96D90E90D94CA29CDC482B4D4F47320D1D08B9A_inline(_thisAdjusted, ___value0, method); } // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::get_IsDataHighConfidence() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_IsDataHighConfidence_m4C34B2783AC78757C81A215204FF6452876955E0 (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = __this->get_U3CIsDataHighConfidenceU3Ek__BackingField_2(); return L_0; } } IL2CPP_EXTERN_C bool SkeletonRendererData_get_IsDataHighConfidence_m4C34B2783AC78757C81A215204FF6452876955E0_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = SkeletonRendererData_get_IsDataHighConfidence_m4C34B2783AC78757C81A215204FF6452876955E0_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_IsDataHighConfidence(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonRendererData_set_IsDataHighConfidence_m345B5BFFF74B0F9B55D9A35BCA05C81ED8086842 (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataHighConfidenceU3Ek__BackingField_2(L_0); return; } } IL2CPP_EXTERN_C void SkeletonRendererData_set_IsDataHighConfidence_m345B5BFFF74B0F9B55D9A35BCA05C81ED8086842_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonRendererData_set_IsDataHighConfidence_m345B5BFFF74B0F9B55D9A35BCA05C81ED8086842_inline(_thisAdjusted, ___value0, method); } // System.Boolean OVRSkeletonRenderer/SkeletonRendererData::get_ShouldUseSystemGestureMaterial() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_ShouldUseSystemGestureMaterial_m1C09A046EB4D5DD42476BA1480D9866E17B0EBE9 (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = __this->get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3(); return L_0; } } IL2CPP_EXTERN_C bool SkeletonRendererData_get_ShouldUseSystemGestureMaterial_m1C09A046EB4D5DD42476BA1480D9866E17B0EBE9_AdjustorThunk (RuntimeObject * __this, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); bool _returnValue; _returnValue = SkeletonRendererData_get_ShouldUseSystemGestureMaterial_m1C09A046EB4D5DD42476BA1480D9866E17B0EBE9_inline(_thisAdjusted, method); return _returnValue; } // System.Void OVRSkeletonRenderer/SkeletonRendererData::set_ShouldUseSystemGestureMaterial(System.Boolean) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void SkeletonRendererData_set_ShouldUseSystemGestureMaterial_m55ED4E183CE0EDFB4A6366C2F5C9B63A74C5AC00 (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = ___value0; __this->set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3(L_0); return; } } IL2CPP_EXTERN_C void SkeletonRendererData_set_ShouldUseSystemGestureMaterial_m55ED4E183CE0EDFB4A6366C2F5C9B63A74C5AC00_AdjustorThunk (RuntimeObject * __this, bool ___value0, const RuntimeMethod* method) { int32_t _offset = 1; SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * _thisAdjusted = reinterpret_cast(__this + _offset); SkeletonRendererData_set_ShouldUseSystemGestureMaterial_m55ED4E183CE0EDFB4A6366C2F5C9B63A74C5AC00_inline(_thisAdjusted, ___value0, method); } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif #ifdef __clang__ #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 OVRSpectatorModeDomeTest/d__11::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CTimerCoroutineU3Ed__11__ctor_m25185020128F6317FBB7D4E215070BF5CA8D972D (U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRSpectatorModeDomeTest/d__11::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CTimerCoroutineU3Ed__11_System_IDisposable_Dispose_mB0418930949F2BEE88CB6F7DE5FA104BD5E506DD (U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRSpectatorModeDomeTest/d__11::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CTimerCoroutineU3Ed__11_MoveNext_mBD6C362E60F47B4F63ACFD2FD9DB22FA5E1300CD (U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; int32_t L_1 = V_0; if (!L_1) { goto IL_0010; } } { int32_t L_2 = V_0; if ((((int32_t)L_2) == ((int32_t)1))) { goto IL_0030; } } { return (bool)0; } IL_0010: { __this->set_U3CU3E1__state_0((-1)); // yield return new WaitForSeconds(2); WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 * L_3 = (WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013 *)il2cpp_codegen_object_new(WaitForSeconds_t8F9189BE6E467C98C99177038881F8982E0E4013_il2cpp_TypeInfo_var); WaitForSeconds__ctor_mD298C4CB9532BBBDE172FC40F3397E30504038D4(L_3, (2.0f), /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_3); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0030: { __this->set_U3CU3E1__state_0((-1)); // } return (bool)0; } } // System.Object OVRSpectatorModeDomeTest/d__11::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CTimerCoroutineU3Ed__11_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mCB2223C88EC0B73E079438E9337C8CA298BB5CFE (U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRSpectatorModeDomeTest/d__11::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CTimerCoroutineU3Ed__11_System_Collections_IEnumerator_Reset_mC3783CA2260EC67826E0D9EC22E0434B4F9A1961 (U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CTimerCoroutineU3Ed__11_System_Collections_IEnumerator_Reset_mC3783CA2260EC67826E0D9EC22E0434B4F9A1961_RuntimeMethod_var))); } } // System.Object OVRSpectatorModeDomeTest/d__11::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CTimerCoroutineU3Ed__11_System_Collections_IEnumerator_get_Current_m60C4D1C38333815FD2AD15F594CFC62958F6F5D6 (U3CTimerCoroutineU3Ed__11_t49AA0CEEF64B3FE8D3D83BFD39D55F0BFF62A425 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::OnEnable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRSystemPerfMetricsTcpServer_OnEnable_m4BDF2DD32250D1622CB3A4B8E2707271408F06AF (OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE8672FE7717B02C7A2C854939FD920F54D2C8501); s_Il2CppMethodInitialized = true; } { // if (singleton != null) IL2CPP_RUNTIME_CLASS_INIT(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var); OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * L_0 = ((OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_StaticFields*)il2cpp_codegen_static_fields_for(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var))->get_singleton_4(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_1; L_1 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_0, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_1) { goto IL_0018; } } { // Debug.LogError("Mutiple OVRSystemPerfMetricsTcpServer exists"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteralE8672FE7717B02C7A2C854939FD920F54D2C8501, /*hidden argument*/NULL); // return; return; } IL_0018: { // singleton = this; IL2CPP_RUNTIME_CLASS_INIT(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var); ((OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_StaticFields*)il2cpp_codegen_static_fields_for(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var))->set_singleton_4(__this); // if (Application.isEditor) bool L_2; L_2 = Application_get_isEditor_m7BA0984E1359E7A656CB9110DBB539A4F2810CB1(/*hidden argument*/NULL); if (!L_2) { goto IL_002b; } } { // Application.runInBackground = true; Application_set_runInBackground_mB5FED4F526FB43697CAE456DFEC7FCD6C2A8E088((bool)1, /*hidden argument*/NULL); } IL_002b: { // tcpServer.StartListening(listeningPort); OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * L_3 = __this->get_tcpServer_5(); int32_t L_4 = __this->get_listeningPort_6(); NullCheck(L_3); OVRNetworkTcpServer_StartListening_mAB815C06C715674E7F81DDC2C346F9EF5A14DB55(L_3, L_4, /*hidden argument*/NULL); // } return; } } // System.Void OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::OnDisable() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRSystemPerfMetricsTcpServer_OnDisable_m2F9295F73FAB8916D0C89A0D5150C090523FD354 (OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral834C24914A794818188788A7179F9DE88ED5B4F1); s_Il2CppMethodInitialized = true; } { // tcpServer.StopListening(); OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * L_0 = __this->get_tcpServer_5(); NullCheck(L_0); OVRNetworkTcpServer_StopListening_mD7626F4649211403BE352F5EDC40F627B7D9192A(L_0, /*hidden argument*/NULL); // singleton = null; IL2CPP_RUNTIME_CLASS_INIT(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var); ((OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_StaticFields*)il2cpp_codegen_static_fields_for(OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7_il2cpp_TypeInfo_var))->set_singleton_4((OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 *)NULL); // Debug.Log("[OVRSystemPerfMetricsTcpServer] server destroyed"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(_stringLiteral834C24914A794818188788A7179F9DE88ED5B4F1, /*hidden argument*/NULL); // } return; } } // System.Void OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::Update() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRSystemPerfMetricsTcpServer_Update_m489CD40E20DDD3019A325D9E959329919C3FA125 (OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * __this, const RuntimeMethod* method) { String_t* V_0 = NULL; ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* V_1 = NULL; { // if (tcpServer.HasConnectedClient()) OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * L_0 = __this->get_tcpServer_5(); NullCheck(L_0); bool L_1; L_1 = OVRNetworkTcpServer_HasConnectedClient_m675644DD51D2F57248496CFA6A8C21F828161378(L_0, /*hidden argument*/NULL); if (!L_1) { goto IL_0033; } } { // PerfMetrics metrics = GatherPerfMetrics(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_2; L_2 = OVRSystemPerfMetricsTcpServer_GatherPerfMetrics_m330A940EA6310E647D6D248F2F150844DB56855D(__this, /*hidden argument*/NULL); // string json = metrics.ToJSON(); NullCheck(L_2); String_t* L_3; L_3 = PerfMetrics_ToJSON_mACF67AD0A6FB86BDCC7D351FEB6FD1C8714E098E(L_2, /*hidden argument*/NULL); V_0 = L_3; // byte[] bytes = Encoding.UTF8.GetBytes(json); Encoding_tE901442411E2E70039D2A4AE77FB81C3D6064827 * L_4; L_4 = Encoding_get_UTF8_mA1F9F8EACB3EEA1583247AA10DCE51C3A0A13469(/*hidden argument*/NULL); String_t* L_5 = V_0; NullCheck(L_4); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_6; L_6 = VirtFuncInvoker1< ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726*, String_t* >::Invoke(16 /* System.Byte[] System.Text.Encoding::GetBytes(System.String) */, L_4, L_5); V_1 = L_6; // tcpServer.Broadcast(OVRSystemPerfMetrics.PayloadTypeMetrics, bytes); OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * L_7 = __this->get_tcpServer_5(); ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_8 = V_1; NullCheck(L_7); OVRNetworkTcpServer_Broadcast_m275C9EBE5A710C20109CB24D15FC7A18B7D0F172(L_7, ((int32_t)100), L_8, /*hidden argument*/NULL); } IL_0033: { // } return; } } // OVRSystemPerfMetrics/PerfMetrics OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::GatherPerfMetrics() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * OVRSystemPerfMetricsTcpServer_GatherPerfMetrics_m330A940EA6310E647D6D248F2F150844DB56855D (OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A V_0; memset((&V_0), 0, sizeof(V_0)); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 V_1; memset((&V_1), 0, sizeof(V_1)); { // PerfMetrics metrics = new PerfMetrics(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_0 = (PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B *)il2cpp_codegen_object_new(PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B_il2cpp_TypeInfo_var); PerfMetrics__ctor_mB6F452902A131D8C874D72E2F6E2524BE2DEEC73(L_0, /*hidden argument*/NULL); // metrics.frameCount = Time.frameCount; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_1 = L_0; int32_t L_2; L_2 = Time_get_frameCount_m9CEBDC44BB970B7F8DA5C7AA695F9652B459C139(/*hidden argument*/NULL); NullCheck(L_1); L_1->set_frameCount_0(L_2); // metrics.frameTime = Time.unscaledTime; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_3 = L_1; float L_4; L_4 = Time_get_unscaledTime_mDBF04FC47709E0C1BBBB4BA4BDA5405D8EF632A1(/*hidden argument*/NULL); NullCheck(L_3); L_3->set_frameTime_1(L_4); // metrics.deltaFrameTime = Time.unscaledDeltaTime; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_5 = L_3; float L_6; L_6 = Time_get_unscaledDeltaTime_mAC1F2C20477335AD7D36AB7E6BE420C10C2B6419(/*hidden argument*/NULL); NullCheck(L_5); L_5->set_deltaFrameTime_2(L_6); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.App_CpuTime_Float); IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_7; L_7 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(0, /*hidden argument*/NULL); V_0 = L_7; // metrics.appCpuTime_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_8 = L_5; bool L_9; L_9 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_8); L_8->set_appCpuTime_IsValid_3(L_9); // metrics.appCpuTime = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_10 = L_8; float L_11; L_11 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_10); L_10->set_appCpuTime_4(L_11); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.App_GpuTime_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_12; L_12 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(1, /*hidden argument*/NULL); V_0 = L_12; // metrics.appGpuTime_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_13 = L_10; bool L_14; L_14 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_13); L_13->set_appGpuTime_IsValid_5(L_14); // metrics.appGpuTime = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_15 = L_13; float L_16; L_16 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_15); L_15->set_appGpuTime_6(L_16); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.Compositor_CpuTime_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_17; L_17 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(3, /*hidden argument*/NULL); V_0 = L_17; // metrics.compositorCpuTime_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_18 = L_15; bool L_19; L_19 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_18); L_18->set_compositorCpuTime_IsValid_7(L_19); // metrics.compositorCpuTime = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_20 = L_18; float L_21; L_21 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_20); L_20->set_compositorCpuTime_8(L_21); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.Compositor_GpuTime_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_22; L_22 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(4, /*hidden argument*/NULL); V_0 = L_22; // metrics.compositorGpuTime_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_23 = L_20; bool L_24; L_24 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_23); L_23->set_compositorGpuTime_IsValid_9(L_24); // metrics.compositorGpuTime = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_25 = L_23; float L_26; L_26 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_25); L_25->set_compositorGpuTime_10(L_26); // intValue = OVRPlugin.GetPerfMetricsInt(OVRPlugin.PerfMetrics.Compositor_DroppedFrameCount_Int); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_27; L_27 = OVRPlugin_GetPerfMetricsInt_mCC2A1AAD43F5EED5376A510FF9B166742BE5DE11(5, /*hidden argument*/NULL); V_1 = L_27; // metrics.compositorDroppedFrameCount_IsValid = intValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_28 = L_25; bool L_29; L_29 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var); NullCheck(L_28); L_28->set_compositorDroppedFrameCount_IsValid_11(L_29); // metrics.compositorDroppedFrameCount = intValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_30 = L_28; int32_t L_31; L_31 = Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_RuntimeMethod_var); NullCheck(L_30); L_30->set_compositorDroppedFrameCount_12(L_31); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.System_GpuUtilPercentage_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_32; L_32 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(7, /*hidden argument*/NULL); V_0 = L_32; // metrics.systemGpuUtilPercentage_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_33 = L_30; bool L_34; L_34 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_33); L_33->set_systemGpuUtilPercentage_IsValid_13(L_34); // metrics.systemGpuUtilPercentage = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_35 = L_33; float L_36; L_36 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_35); L_35->set_systemGpuUtilPercentage_14(L_36); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.System_CpuUtilAveragePercentage_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_37; L_37 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(8, /*hidden argument*/NULL); V_0 = L_37; // metrics.systemCpuUtilAveragePercentage_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_38 = L_35; bool L_39; L_39 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_38); L_38->set_systemCpuUtilAveragePercentage_IsValid_15(L_39); // metrics.systemCpuUtilAveragePercentage = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_40 = L_38; float L_41; L_41 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_40); L_40->set_systemCpuUtilAveragePercentage_16(L_41); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.System_CpuUtilWorstPercentage_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_42; L_42 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(((int32_t)9), /*hidden argument*/NULL); V_0 = L_42; // metrics.systemCpuUtilWorstPercentage_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_43 = L_40; bool L_44; L_44 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_43); L_43->set_systemCpuUtilWorstPercentage_IsValid_17(L_44); // metrics.systemCpuUtilWorstPercentage = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_45 = L_43; float L_46; L_46 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_45); L_45->set_systemCpuUtilWorstPercentage_18(L_46); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.Device_CpuClockFrequencyInMHz_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_47; L_47 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(((int32_t)10), /*hidden argument*/NULL); V_0 = L_47; // metrics.deviceCpuClockFrequencyInMHz_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_48 = L_45; bool L_49; L_49 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_48); L_48->set_deviceCpuClockFrequencyInMHz_IsValid_19(L_49); // metrics.deviceCpuClockFrequencyInMHz = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_50 = L_48; float L_51; L_51 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_50); L_50->set_deviceCpuClockFrequencyInMHz_20(L_51); // floatValue = OVRPlugin.GetPerfMetricsFloat(OVRPlugin.PerfMetrics.Device_GpuClockFrequencyInMHz_Float); Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A L_52; L_52 = OVRPlugin_GetPerfMetricsFloat_m01825DC7D96D19048501E611AD86F0E54C39CF2C(((int32_t)11), /*hidden argument*/NULL); V_0 = L_52; // metrics.deviceGpuClockFrequencyInMHz_IsValid = floatValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_53 = L_50; bool L_54; L_54 = Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_RuntimeMethod_var); NullCheck(L_53); L_53->set_deviceGpuClockFrequencyInMHz_IsValid_21(L_54); // metrics.deviceGpuClockFrequencyInMHz = floatValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_55 = L_53; float L_56; L_56 = Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_inline((Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A *)(&V_0), /*hidden argument*/Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_RuntimeMethod_var); NullCheck(L_55); L_55->set_deviceGpuClockFrequencyInMHz_22(L_56); // intValue = OVRPlugin.GetPerfMetricsInt(OVRPlugin.PerfMetrics.Device_CpuClockLevel_Int); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_57; L_57 = OVRPlugin_GetPerfMetricsInt_mCC2A1AAD43F5EED5376A510FF9B166742BE5DE11(((int32_t)12), /*hidden argument*/NULL); V_1 = L_57; // metrics.deviceCpuClockLevel_IsValid = intValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_58 = L_55; bool L_59; L_59 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var); NullCheck(L_58); L_58->set_deviceCpuClockLevel_IsValid_23(L_59); // metrics.deviceCpuClockLevel = intValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_60 = L_58; int32_t L_61; L_61 = Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_RuntimeMethod_var); NullCheck(L_60); L_60->set_deviceCpuClockLevel_24(L_61); // intValue = OVRPlugin.GetPerfMetricsInt(OVRPlugin.PerfMetrics.Device_GpuClockLevel_Int); Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 L_62; L_62 = OVRPlugin_GetPerfMetricsInt_mCC2A1AAD43F5EED5376A510FF9B166742BE5DE11(((int32_t)13), /*hidden argument*/NULL); V_1 = L_62; // metrics.deviceGpuClockLevel_IsValid = intValue.HasValue; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_63 = L_60; bool L_64; L_64 = Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_RuntimeMethod_var); NullCheck(L_63); L_63->set_deviceGpuClockLevel_IsValid_25(L_64); // metrics.deviceGpuClockLevel = intValue.GetValueOrDefault(); PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * L_65 = L_63; int32_t L_66; L_66 = Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_inline((Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 *)(&V_1), /*hidden argument*/Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_RuntimeMethod_var); NullCheck(L_65); L_65->set_deviceGpuClockLevel_26(L_66); // return metrics; return L_65; } } // System.Void OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRSystemPerfMetricsTcpServer__ctor_m8BB25365E55363C5DB8C6BF05729C3633364EEDD (OVRSystemPerfMetricsTcpServer_t13B60CF64E309336B9B9C4E3CEBC9092DFF622A7 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // private OVRNetwork.OVRNetworkTcpServer tcpServer = new OVRNetwork.OVRNetworkTcpServer(); OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA * L_0 = (OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA *)il2cpp_codegen_object_new(OVRNetworkTcpServer_tEEB8CDFE6644AD739727B690FAE7DD66492415BA_il2cpp_TypeInfo_var); OVRNetworkTcpServer__ctor_m4ABCF8E5F4ACE160E9D21D6C3712F7CFA3AB6369(L_0, /*hidden argument*/NULL); __this->set_tcpServer_5(L_0); // public int listeningPort = OVRSystemPerfMetrics.TcpListeningPort; __this->set_listeningPort_6(((int32_t)32419)); MonoBehaviour__ctor_mC0995D847F6A95B1A553652636C38A2AA8B13BED(__this, /*hidden argument*/NULL); return; } } // System.Void OVRSystemPerfMetrics/OVRSystemPerfMetricsTcpServer::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void OVRSystemPerfMetricsTcpServer__cctor_mBA85CBA4DAA6A9DF3B5269793662BB82B59B0F6A (const RuntimeMethod* method) { { return; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.String OVRSystemPerfMetrics/PerfMetrics::ToJSON() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR String_t* PerfMetrics_ToJSON_mACF67AD0A6FB86BDCC7D351FEB6FD1C8714E098E (PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral034E95B764C7F04918E4232C4F532EE7FEBD39EA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E11DDEEB724AD3406E3728566428721728F1A62); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral283D953D5A718826052D7CABF29ED6100F4B0FE5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CD508BB561A1E08FD169CFDC251B28531A431E8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral66B70291F72C704C47764C440901AB4CD0D5D9DA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6740FFC755394B7CA81B6421DE962654C7155A81); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D8A8131613224718E750F99069C304A6816CBE3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9BF37059A69719214A60091BC5C2FCFD346916EA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE59BC44B8A9FCADA788D5D8E4B7A0107CF0B5ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAEEAFA4FE16A0FB39EE9F63CE8B336131780BBDE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC542CC9C93D445E88AB42B279F37DA5557472745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8B15F26A03EBCABFBFF3878227491BDBE10183C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD898A9B1C2512E3891CC67EAA5F03B0ACF5ADDB3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDAACE09E1233CE71A1ADAD97FA1AC137EC6E52C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEEA7284E6E16304D68AF729475EEBA3479A59D32); s_Il2CppMethodInitialized = true; } JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * V_0 = NULL; { // OVRSimpleJSON.JSONObject jsonNode = new OVRSimpleJSON.JSONObject(); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_0 = (JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 *)il2cpp_codegen_object_new(JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4_il2cpp_TypeInfo_var); JSONObject__ctor_mB48A96B84212AC75D55E6339498A4B5843CCAF75(L_0, /*hidden argument*/NULL); V_0 = L_0; // jsonNode.Add("frameCount", new OVRSimpleJSON.JSONNumber(frameCount)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_1 = V_0; int32_t L_2 = __this->get_frameCount_0(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_3 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_3, ((double)((double)L_2)), /*hidden argument*/NULL); NullCheck(L_1); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_1, _stringLiteralC8B15F26A03EBCABFBFF3878227491BDBE10183C, L_3); // jsonNode.Add("frameTime", new OVRSimpleJSON.JSONNumber(frameTime)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_4 = V_0; float L_5 = __this->get_frameTime_1(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_6 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_6, ((double)((double)L_5)), /*hidden argument*/NULL); NullCheck(L_4); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_4, _stringLiteral6D8A8131613224718E750F99069C304A6816CBE3, L_6); // jsonNode.Add("deltaFrameTime", new OVRSimpleJSON.JSONNumber(deltaFrameTime)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_7 = V_0; float L_8 = __this->get_deltaFrameTime_2(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_9 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_9, ((double)((double)L_8)), /*hidden argument*/NULL); NullCheck(L_7); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_7, _stringLiteral5CD508BB561A1E08FD169CFDC251B28531A431E8, L_9); // if (appCpuTime_IsValid) bool L_10 = __this->get_appCpuTime_IsValid_3(); if (!L_10) { goto IL_006a; } } { // jsonNode.Add("appCpuTime", new OVRSimpleJSON.JSONNumber(appCpuTime)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_11 = V_0; float L_12 = __this->get_appCpuTime_4(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_13 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_13, ((double)((double)L_12)), /*hidden argument*/NULL); NullCheck(L_11); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_11, _stringLiteral66B70291F72C704C47764C440901AB4CD0D5D9DA, L_13); } IL_006a: { // if (appGpuTime_IsValid) bool L_14 = __this->get_appGpuTime_IsValid_5(); if (!L_14) { goto IL_0089; } } { // jsonNode.Add("appGpuTime", new OVRSimpleJSON.JSONNumber(appGpuTime)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_15 = V_0; float L_16 = __this->get_appGpuTime_6(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_17 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_17, ((double)((double)L_16)), /*hidden argument*/NULL); NullCheck(L_15); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_15, _stringLiteralEEA7284E6E16304D68AF729475EEBA3479A59D32, L_17); } IL_0089: { // if (compositorCpuTime_IsValid) bool L_18 = __this->get_compositorCpuTime_IsValid_7(); if (!L_18) { goto IL_00a8; } } { // jsonNode.Add("compositorCpuTime", new OVRSimpleJSON.JSONNumber(compositorCpuTime)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_19 = V_0; float L_20 = __this->get_compositorCpuTime_8(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_21 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_21, ((double)((double)L_20)), /*hidden argument*/NULL); NullCheck(L_19); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_19, _stringLiteralAE59BC44B8A9FCADA788D5D8E4B7A0107CF0B5ED, L_21); } IL_00a8: { // if (compositorGpuTime_IsValid) bool L_22 = __this->get_compositorGpuTime_IsValid_9(); if (!L_22) { goto IL_00c7; } } { // jsonNode.Add("compositorGpuTime", new OVRSimpleJSON.JSONNumber(compositorGpuTime)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_23 = V_0; float L_24 = __this->get_compositorGpuTime_10(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_25 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_25, ((double)((double)L_24)), /*hidden argument*/NULL); NullCheck(L_23); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_23, _stringLiteral283D953D5A718826052D7CABF29ED6100F4B0FE5, L_25); } IL_00c7: { // if (compositorDroppedFrameCount_IsValid) bool L_26 = __this->get_compositorDroppedFrameCount_IsValid_11(); if (!L_26) { goto IL_00e6; } } { // jsonNode.Add("compositorDroppedFrameCount", new OVRSimpleJSON.JSONNumber(compositorDroppedFrameCount)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_27 = V_0; int32_t L_28 = __this->get_compositorDroppedFrameCount_12(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_29 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_29, ((double)((double)L_28)), /*hidden argument*/NULL); NullCheck(L_27); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_27, _stringLiteral6740FFC755394B7CA81B6421DE962654C7155A81, L_29); } IL_00e6: { // if (systemGpuUtilPercentage_IsValid) bool L_30 = __this->get_systemGpuUtilPercentage_IsValid_13(); if (!L_30) { goto IL_0105; } } { // jsonNode.Add("systemGpuUtilPercentage", new OVRSimpleJSON.JSONNumber(systemGpuUtilPercentage)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_31 = V_0; float L_32 = __this->get_systemGpuUtilPercentage_14(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_33 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_33, ((double)((double)L_32)), /*hidden argument*/NULL); NullCheck(L_31); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_31, _stringLiteralDAACE09E1233CE71A1ADAD97FA1AC137EC6E52C9, L_33); } IL_0105: { // if (systemCpuUtilAveragePercentage_IsValid) bool L_34 = __this->get_systemCpuUtilAveragePercentage_IsValid_15(); if (!L_34) { goto IL_0124; } } { // jsonNode.Add("systemCpuUtilAveragePercentage", new OVRSimpleJSON.JSONNumber(systemCpuUtilAveragePercentage)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_35 = V_0; float L_36 = __this->get_systemCpuUtilAveragePercentage_16(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_37 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_37, ((double)((double)L_36)), /*hidden argument*/NULL); NullCheck(L_35); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_35, _stringLiteralAEEAFA4FE16A0FB39EE9F63CE8B336131780BBDE, L_37); } IL_0124: { // if (systemCpuUtilWorstPercentage_IsValid) bool L_38 = __this->get_systemCpuUtilWorstPercentage_IsValid_17(); if (!L_38) { goto IL_0143; } } { // jsonNode.Add("systemCpuUtilWorstPercentage", new OVRSimpleJSON.JSONNumber(systemCpuUtilWorstPercentage)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_39 = V_0; float L_40 = __this->get_systemCpuUtilWorstPercentage_18(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_41 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_41, ((double)((double)L_40)), /*hidden argument*/NULL); NullCheck(L_39); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_39, _stringLiteral1E11DDEEB724AD3406E3728566428721728F1A62, L_41); } IL_0143: { // if (deviceCpuClockFrequencyInMHz_IsValid) bool L_42 = __this->get_deviceCpuClockFrequencyInMHz_IsValid_19(); if (!L_42) { goto IL_0162; } } { // jsonNode.Add("deviceCpuClockFrequencyInMHz", new OVRSimpleJSON.JSONNumber(deviceCpuClockFrequencyInMHz)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_43 = V_0; float L_44 = __this->get_deviceCpuClockFrequencyInMHz_20(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_45 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_45, ((double)((double)L_44)), /*hidden argument*/NULL); NullCheck(L_43); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_43, _stringLiteral9BF37059A69719214A60091BC5C2FCFD346916EA, L_45); } IL_0162: { // if (deviceGpuClockFrequencyInMHz_IsValid) bool L_46 = __this->get_deviceGpuClockFrequencyInMHz_IsValid_21(); if (!L_46) { goto IL_0181; } } { // jsonNode.Add("deviceGpuClockFrequencyInMHz", new OVRSimpleJSON.JSONNumber(deviceGpuClockFrequencyInMHz)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_47 = V_0; float L_48 = __this->get_deviceGpuClockFrequencyInMHz_22(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_49 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_49, ((double)((double)L_48)), /*hidden argument*/NULL); NullCheck(L_47); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_47, _stringLiteralC542CC9C93D445E88AB42B279F37DA5557472745, L_49); } IL_0181: { // if (deviceCpuClockLevel_IsValid) bool L_50 = __this->get_deviceCpuClockLevel_IsValid_23(); if (!L_50) { goto IL_01a0; } } { // jsonNode.Add("deviceCpuClockLevel", new OVRSimpleJSON.JSONNumber(deviceCpuClockLevel)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_51 = V_0; int32_t L_52 = __this->get_deviceCpuClockLevel_24(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_53 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_53, ((double)((double)L_52)), /*hidden argument*/NULL); NullCheck(L_51); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_51, _stringLiteral034E95B764C7F04918E4232C4F532EE7FEBD39EA, L_53); } IL_01a0: { // if (deviceGpuClockLevel_IsValid) bool L_54 = __this->get_deviceGpuClockLevel_IsValid_25(); if (!L_54) { goto IL_01bf; } } { // jsonNode.Add("deviceGpuClockLevel", new OVRSimpleJSON.JSONNumber(deviceGpuClockLevel)); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_55 = V_0; int32_t L_56 = __this->get_deviceGpuClockLevel_26(); JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F * L_57 = (JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F *)il2cpp_codegen_object_new(JSONNumber_tD7A7C099CB55C0F1FEFBCD91839B927CA775C15F_il2cpp_TypeInfo_var); JSONNumber__ctor_m67DB5AC9F9639B97BF6BEDEC22196B80F9C5AF03(L_57, ((double)((double)L_56)), /*hidden argument*/NULL); NullCheck(L_55); VirtActionInvoker2< String_t*, JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * >::Invoke(20 /* System.Void OVRSimpleJSON.JSONNode::Add(System.String,OVRSimpleJSON.JSONNode) */, L_55, _stringLiteralD898A9B1C2512E3891CC67EAA5F03B0ACF5ADDB3, L_57); } IL_01bf: { // string str = jsonNode.ToString(); JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_58 = V_0; NullCheck(L_58); String_t* L_59; L_59 = VirtFuncInvoker0< String_t* >::Invoke(3 /* System.String System.Object::ToString() */, L_58); // return str; return L_59; } } // System.Boolean OVRSystemPerfMetrics/PerfMetrics::LoadFromJSON(System.String) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool PerfMetrics_LoadFromJSON_m7D139BF9E4780160E960EECC6DDC990304FC83BC (PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * __this, String_t* ___json0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral034E95B764C7F04918E4232C4F532EE7FEBD39EA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1E11DDEEB724AD3406E3728566428721728F1A62); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral283D953D5A718826052D7CABF29ED6100F4B0FE5); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral5CD508BB561A1E08FD169CFDC251B28531A431E8); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral66B70291F72C704C47764C440901AB4CD0D5D9DA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6740FFC755394B7CA81B6421DE962654C7155A81); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral6D8A8131613224718E750F99069C304A6816CBE3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral9BF37059A69719214A60091BC5C2FCFD346916EA); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAE59BC44B8A9FCADA788D5D8E4B7A0107CF0B5ED); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralAEEAFA4FE16A0FB39EE9F63CE8B336131780BBDE); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC542CC9C93D445E88AB42B279F37DA5557472745); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralC8B15F26A03EBCABFBFF3878227491BDBE10183C); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralD898A9B1C2512E3891CC67EAA5F03B0ACF5ADDB3); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralDAACE09E1233CE71A1ADAD97FA1AC137EC6E52C9); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralE42D6F85C35A4D2B14F7579409F3B191CBA8C3E2); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralEEA7284E6E16304D68AF729475EEBA3479A59D32); s_Il2CppMethodInitialized = true; } JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * V_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B4_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B3_0 = NULL; int32_t G_B5_0 = 0; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B5_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B7_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B6_0 = NULL; float G_B8_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B8_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B10_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B9_0 = NULL; float G_B11_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B11_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B13_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B12_0 = NULL; float G_B14_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B14_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B16_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B15_0 = NULL; float G_B17_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B17_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B19_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B18_0 = NULL; float G_B20_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B20_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B22_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B21_0 = NULL; float G_B23_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B23_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B25_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B24_0 = NULL; int32_t G_B26_0 = 0; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B26_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B28_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B27_0 = NULL; float G_B29_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B29_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B31_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B30_0 = NULL; float G_B32_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B32_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B34_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B33_0 = NULL; float G_B35_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B35_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B37_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B36_0 = NULL; float G_B38_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B38_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B40_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B39_0 = NULL; float G_B41_0 = 0.0f; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B41_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B43_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B42_0 = NULL; int32_t G_B44_0 = 0; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B44_1 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B46_0 = NULL; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B45_0 = NULL; int32_t G_B47_0 = 0; PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * G_B47_1 = NULL; { // OVRSimpleJSON.JSONObject jsonNode = OVRSimpleJSON.JSONObject.Parse(json) as OVRSimpleJSON.JSONObject; String_t* L_0 = ___json0; IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_1; L_1 = JSONNode_Parse_m34ACAB3223B18EE88A5B484D3DD9E026AB7D15BF(L_0, /*hidden argument*/NULL); V_0 = ((JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 *)IsInstClass((RuntimeObject*)L_1, JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4_il2cpp_TypeInfo_var)); // if (jsonNode == null) JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_2 = V_0; bool L_3; L_3 = JSONNode_op_Equality_m01C4F0AA716D0CABA5FFD8B839CD08D5EFED5D95(L_2, NULL, /*hidden argument*/NULL); if (!L_3) { goto IL_0017; } } { // return false; return (bool)0; } IL_0017: { // frameCount = jsonNode["frameCount"] != null ? jsonNode["frameCount"].AsInt : 0; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_4 = V_0; NullCheck(L_4); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_5; L_5 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_4, _stringLiteralC8B15F26A03EBCABFBFF3878227491BDBE10183C); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_6; L_6 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_5, NULL, /*hidden argument*/NULL); G_B3_0 = __this; if (L_6) { G_B4_0 = __this; goto IL_002e; } } { G_B5_0 = 0; G_B5_1 = G_B3_0; goto IL_003e; } IL_002e: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_7 = V_0; NullCheck(L_7); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_8; L_8 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_7, _stringLiteralC8B15F26A03EBCABFBFF3878227491BDBE10183C); NullCheck(L_8); int32_t L_9; L_9 = VirtFuncInvoker0< int32_t >::Invoke(31 /* System.Int32 OVRSimpleJSON.JSONNode::get_AsInt() */, L_8); G_B5_0 = L_9; G_B5_1 = G_B4_0; } IL_003e: { NullCheck(G_B5_1); G_B5_1->set_frameCount_0(G_B5_0); // frameTime = jsonNode["frameTime"] != null ? jsonNode["frameTime"].AsFloat : 0; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_10 = V_0; NullCheck(L_10); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_11; L_11 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_10, _stringLiteral6D8A8131613224718E750F99069C304A6816CBE3); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_12; L_12 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_11, NULL, /*hidden argument*/NULL); G_B6_0 = __this; if (L_12) { G_B7_0 = __this; goto IL_005e; } } { G_B8_0 = (0.0f); G_B8_1 = G_B6_0; goto IL_006e; } IL_005e: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_13 = V_0; NullCheck(L_13); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_14; L_14 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_13, _stringLiteral6D8A8131613224718E750F99069C304A6816CBE3); NullCheck(L_14); float L_15; L_15 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_14); G_B8_0 = L_15; G_B8_1 = G_B7_0; } IL_006e: { NullCheck(G_B8_1); G_B8_1->set_frameTime_1(G_B8_0); // deltaFrameTime = jsonNode["deltaFrameTime"] != null ? jsonNode["deltaFrameTime"].AsFloat : 0; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_16 = V_0; NullCheck(L_16); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_17; L_17 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_16, _stringLiteral5CD508BB561A1E08FD169CFDC251B28531A431E8); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_18; L_18 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_17, NULL, /*hidden argument*/NULL); G_B9_0 = __this; if (L_18) { G_B10_0 = __this; goto IL_008e; } } { G_B11_0 = (0.0f); G_B11_1 = G_B9_0; goto IL_009e; } IL_008e: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_19 = V_0; NullCheck(L_19); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_20; L_20 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_19, _stringLiteral5CD508BB561A1E08FD169CFDC251B28531A431E8); NullCheck(L_20); float L_21; L_21 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_20); G_B11_0 = L_21; G_B11_1 = G_B10_0; } IL_009e: { NullCheck(G_B11_1); G_B11_1->set_deltaFrameTime_2(G_B11_0); // appCpuTime_IsValid = jsonNode["appCpuTime"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_22 = V_0; NullCheck(L_22); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_23; L_23 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_22, _stringLiteral66B70291F72C704C47764C440901AB4CD0D5D9DA); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_24; L_24 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_23, NULL, /*hidden argument*/NULL); __this->set_appCpuTime_IsValid_3(L_24); // appCpuTime = appCpuTime_IsValid ? jsonNode["appCpuTime"].AsFloat : 0; bool L_25 = __this->get_appCpuTime_IsValid_3(); G_B12_0 = __this; if (L_25) { G_B13_0 = __this; goto IL_00ca; } } { G_B14_0 = (0.0f); G_B14_1 = G_B12_0; goto IL_00da; } IL_00ca: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_26 = V_0; NullCheck(L_26); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_27; L_27 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_26, _stringLiteral66B70291F72C704C47764C440901AB4CD0D5D9DA); NullCheck(L_27); float L_28; L_28 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_27); G_B14_0 = L_28; G_B14_1 = G_B13_0; } IL_00da: { NullCheck(G_B14_1); G_B14_1->set_appCpuTime_4(G_B14_0); // appGpuTime_IsValid = jsonNode["appGpuTime"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_29 = V_0; NullCheck(L_29); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_30; L_30 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_29, _stringLiteralEEA7284E6E16304D68AF729475EEBA3479A59D32); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_31; L_31 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_30, NULL, /*hidden argument*/NULL); __this->set_appGpuTime_IsValid_5(L_31); // appGpuTime = appGpuTime_IsValid ? jsonNode["appGpuTime"].AsFloat : 0; bool L_32 = __this->get_appGpuTime_IsValid_5(); G_B15_0 = __this; if (L_32) { G_B16_0 = __this; goto IL_0106; } } { G_B17_0 = (0.0f); G_B17_1 = G_B15_0; goto IL_0116; } IL_0106: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_33 = V_0; NullCheck(L_33); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_34; L_34 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_33, _stringLiteralEEA7284E6E16304D68AF729475EEBA3479A59D32); NullCheck(L_34); float L_35; L_35 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_34); G_B17_0 = L_35; G_B17_1 = G_B16_0; } IL_0116: { NullCheck(G_B17_1); G_B17_1->set_appGpuTime_6(G_B17_0); // compositorCpuTime_IsValid = jsonNode["compositorCpuTime"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_36 = V_0; NullCheck(L_36); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_37; L_37 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_36, _stringLiteralAE59BC44B8A9FCADA788D5D8E4B7A0107CF0B5ED); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_38; L_38 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_37, NULL, /*hidden argument*/NULL); __this->set_compositorCpuTime_IsValid_7(L_38); // compositorCpuTime = compositorCpuTime_IsValid ? jsonNode["compositorCpuTime"].AsFloat : 0; bool L_39 = __this->get_compositorCpuTime_IsValid_7(); G_B18_0 = __this; if (L_39) { G_B19_0 = __this; goto IL_0142; } } { G_B20_0 = (0.0f); G_B20_1 = G_B18_0; goto IL_0152; } IL_0142: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_40 = V_0; NullCheck(L_40); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_41; L_41 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_40, _stringLiteralAE59BC44B8A9FCADA788D5D8E4B7A0107CF0B5ED); NullCheck(L_41); float L_42; L_42 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_41); G_B20_0 = L_42; G_B20_1 = G_B19_0; } IL_0152: { NullCheck(G_B20_1); G_B20_1->set_compositorCpuTime_8(G_B20_0); // compositorGpuTime_IsValid = jsonNode["compositorGpuTime"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_43 = V_0; NullCheck(L_43); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_44; L_44 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_43, _stringLiteral283D953D5A718826052D7CABF29ED6100F4B0FE5); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_45; L_45 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_44, NULL, /*hidden argument*/NULL); __this->set_compositorGpuTime_IsValid_9(L_45); // compositorGpuTime = compositorGpuTime_IsValid ? jsonNode["compositorGpuTime"].AsFloat : 0; bool L_46 = __this->get_compositorGpuTime_IsValid_9(); G_B21_0 = __this; if (L_46) { G_B22_0 = __this; goto IL_017e; } } { G_B23_0 = (0.0f); G_B23_1 = G_B21_0; goto IL_018e; } IL_017e: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_47 = V_0; NullCheck(L_47); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_48; L_48 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_47, _stringLiteral283D953D5A718826052D7CABF29ED6100F4B0FE5); NullCheck(L_48); float L_49; L_49 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_48); G_B23_0 = L_49; G_B23_1 = G_B22_0; } IL_018e: { NullCheck(G_B23_1); G_B23_1->set_compositorGpuTime_10(G_B23_0); // compositorDroppedFrameCount_IsValid = jsonNode["compositorDroppedFrameCount"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_50 = V_0; NullCheck(L_50); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_51; L_51 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_50, _stringLiteral6740FFC755394B7CA81B6421DE962654C7155A81); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_52; L_52 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_51, NULL, /*hidden argument*/NULL); __this->set_compositorDroppedFrameCount_IsValid_11(L_52); // compositorDroppedFrameCount = compositorDroppedFrameCount_IsValid ? jsonNode["ompositorDroppedFrameCount"].AsInt : 0; bool L_53 = __this->get_compositorDroppedFrameCount_IsValid_11(); G_B24_0 = __this; if (L_53) { G_B25_0 = __this; goto IL_01b6; } } { G_B26_0 = 0; G_B26_1 = G_B24_0; goto IL_01c6; } IL_01b6: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_54 = V_0; NullCheck(L_54); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_55; L_55 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_54, _stringLiteralE42D6F85C35A4D2B14F7579409F3B191CBA8C3E2); NullCheck(L_55); int32_t L_56; L_56 = VirtFuncInvoker0< int32_t >::Invoke(31 /* System.Int32 OVRSimpleJSON.JSONNode::get_AsInt() */, L_55); G_B26_0 = L_56; G_B26_1 = G_B25_0; } IL_01c6: { NullCheck(G_B26_1); G_B26_1->set_compositorDroppedFrameCount_12(G_B26_0); // systemGpuUtilPercentage_IsValid = jsonNode["systemGpuUtilPercentage"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_57 = V_0; NullCheck(L_57); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_58; L_58 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_57, _stringLiteralDAACE09E1233CE71A1ADAD97FA1AC137EC6E52C9); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_59; L_59 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_58, NULL, /*hidden argument*/NULL); __this->set_systemGpuUtilPercentage_IsValid_13(L_59); // systemGpuUtilPercentage = systemGpuUtilPercentage_IsValid ? jsonNode["systemGpuUtilPercentage"].AsFloat : 0; bool L_60 = __this->get_systemGpuUtilPercentage_IsValid_13(); G_B27_0 = __this; if (L_60) { G_B28_0 = __this; goto IL_01f2; } } { G_B29_0 = (0.0f); G_B29_1 = G_B27_0; goto IL_0202; } IL_01f2: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_61 = V_0; NullCheck(L_61); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_62; L_62 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_61, _stringLiteralDAACE09E1233CE71A1ADAD97FA1AC137EC6E52C9); NullCheck(L_62); float L_63; L_63 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_62); G_B29_0 = L_63; G_B29_1 = G_B28_0; } IL_0202: { NullCheck(G_B29_1); G_B29_1->set_systemGpuUtilPercentage_14(G_B29_0); // systemCpuUtilAveragePercentage_IsValid = jsonNode["systemCpuUtilAveragePercentage"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_64 = V_0; NullCheck(L_64); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_65; L_65 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_64, _stringLiteralAEEAFA4FE16A0FB39EE9F63CE8B336131780BBDE); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_66; L_66 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_65, NULL, /*hidden argument*/NULL); __this->set_systemCpuUtilAveragePercentage_IsValid_15(L_66); // systemCpuUtilAveragePercentage = systemCpuUtilAveragePercentage_IsValid ? jsonNode["systemCpuUtilAveragePercentage"].AsFloat : 0; bool L_67 = __this->get_systemCpuUtilAveragePercentage_IsValid_15(); G_B30_0 = __this; if (L_67) { G_B31_0 = __this; goto IL_022e; } } { G_B32_0 = (0.0f); G_B32_1 = G_B30_0; goto IL_023e; } IL_022e: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_68 = V_0; NullCheck(L_68); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_69; L_69 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_68, _stringLiteralAEEAFA4FE16A0FB39EE9F63CE8B336131780BBDE); NullCheck(L_69); float L_70; L_70 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_69); G_B32_0 = L_70; G_B32_1 = G_B31_0; } IL_023e: { NullCheck(G_B32_1); G_B32_1->set_systemCpuUtilAveragePercentage_16(G_B32_0); // systemCpuUtilWorstPercentage_IsValid = jsonNode["systemCpuUtilWorstPercentage"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_71 = V_0; NullCheck(L_71); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_72; L_72 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_71, _stringLiteral1E11DDEEB724AD3406E3728566428721728F1A62); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_73; L_73 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_72, NULL, /*hidden argument*/NULL); __this->set_systemCpuUtilWorstPercentage_IsValid_17(L_73); // systemCpuUtilWorstPercentage = systemCpuUtilWorstPercentage_IsValid ? jsonNode["systemCpuUtilWorstPercentage"].AsFloat : 0; bool L_74 = __this->get_systemCpuUtilWorstPercentage_IsValid_17(); G_B33_0 = __this; if (L_74) { G_B34_0 = __this; goto IL_026a; } } { G_B35_0 = (0.0f); G_B35_1 = G_B33_0; goto IL_027a; } IL_026a: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_75 = V_0; NullCheck(L_75); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_76; L_76 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_75, _stringLiteral1E11DDEEB724AD3406E3728566428721728F1A62); NullCheck(L_76); float L_77; L_77 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_76); G_B35_0 = L_77; G_B35_1 = G_B34_0; } IL_027a: { NullCheck(G_B35_1); G_B35_1->set_systemCpuUtilWorstPercentage_18(G_B35_0); // deviceCpuClockFrequencyInMHz_IsValid = jsonNode["deviceCpuClockFrequencyInMHz"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_78 = V_0; NullCheck(L_78); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_79; L_79 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_78, _stringLiteral9BF37059A69719214A60091BC5C2FCFD346916EA); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_80; L_80 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_79, NULL, /*hidden argument*/NULL); __this->set_deviceCpuClockFrequencyInMHz_IsValid_19(L_80); // deviceCpuClockFrequencyInMHz = deviceCpuClockFrequencyInMHz_IsValid ? jsonNode["deviceCpuClockFrequencyInMHz"].AsFloat : 0; bool L_81 = __this->get_deviceCpuClockFrequencyInMHz_IsValid_19(); G_B36_0 = __this; if (L_81) { G_B37_0 = __this; goto IL_02a6; } } { G_B38_0 = (0.0f); G_B38_1 = G_B36_0; goto IL_02b6; } IL_02a6: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_82 = V_0; NullCheck(L_82); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_83; L_83 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_82, _stringLiteral9BF37059A69719214A60091BC5C2FCFD346916EA); NullCheck(L_83); float L_84; L_84 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_83); G_B38_0 = L_84; G_B38_1 = G_B37_0; } IL_02b6: { NullCheck(G_B38_1); G_B38_1->set_deviceCpuClockFrequencyInMHz_20(G_B38_0); // deviceGpuClockFrequencyInMHz_IsValid = jsonNode["deviceGpuClockFrequencyInMHz"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_85 = V_0; NullCheck(L_85); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_86; L_86 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_85, _stringLiteralC542CC9C93D445E88AB42B279F37DA5557472745); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_87; L_87 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_86, NULL, /*hidden argument*/NULL); __this->set_deviceGpuClockFrequencyInMHz_IsValid_21(L_87); // deviceGpuClockFrequencyInMHz = deviceGpuClockFrequencyInMHz_IsValid ? jsonNode["deviceGpuClockFrequencyInMHz"].AsFloat : 0; bool L_88 = __this->get_deviceGpuClockFrequencyInMHz_IsValid_21(); G_B39_0 = __this; if (L_88) { G_B40_0 = __this; goto IL_02e2; } } { G_B41_0 = (0.0f); G_B41_1 = G_B39_0; goto IL_02f2; } IL_02e2: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_89 = V_0; NullCheck(L_89); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_90; L_90 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_89, _stringLiteralC542CC9C93D445E88AB42B279F37DA5557472745); NullCheck(L_90); float L_91; L_91 = VirtFuncInvoker0< float >::Invoke(33 /* System.Single OVRSimpleJSON.JSONNode::get_AsFloat() */, L_90); G_B41_0 = L_91; G_B41_1 = G_B40_0; } IL_02f2: { NullCheck(G_B41_1); G_B41_1->set_deviceGpuClockFrequencyInMHz_22(G_B41_0); // deviceCpuClockLevel_IsValid = jsonNode["deviceCpuClockLevel"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_92 = V_0; NullCheck(L_92); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_93; L_93 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_92, _stringLiteral034E95B764C7F04918E4232C4F532EE7FEBD39EA); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_94; L_94 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_93, NULL, /*hidden argument*/NULL); __this->set_deviceCpuClockLevel_IsValid_23(L_94); // deviceCpuClockLevel = deviceCpuClockLevel_IsValid ? jsonNode["deviceCpuClockLevel"].AsInt : 0; bool L_95 = __this->get_deviceCpuClockLevel_IsValid_23(); G_B42_0 = __this; if (L_95) { G_B43_0 = __this; goto IL_031a; } } { G_B44_0 = 0; G_B44_1 = G_B42_0; goto IL_032a; } IL_031a: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_96 = V_0; NullCheck(L_96); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_97; L_97 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_96, _stringLiteral034E95B764C7F04918E4232C4F532EE7FEBD39EA); NullCheck(L_97); int32_t L_98; L_98 = VirtFuncInvoker0< int32_t >::Invoke(31 /* System.Int32 OVRSimpleJSON.JSONNode::get_AsInt() */, L_97); G_B44_0 = L_98; G_B44_1 = G_B43_0; } IL_032a: { NullCheck(G_B44_1); G_B44_1->set_deviceCpuClockLevel_24(G_B44_0); // deviceGpuClockLevel_IsValid = jsonNode["deviceGpuClockLevel"] != null; JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_99 = V_0; NullCheck(L_99); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_100; L_100 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_99, _stringLiteralD898A9B1C2512E3891CC67EAA5F03B0ACF5ADDB3); IL2CPP_RUNTIME_CLASS_INIT(JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B_il2cpp_TypeInfo_var); bool L_101; L_101 = JSONNode_op_Inequality_mCF36A9AB11230F0F0AF2B3ECB040850CF1BAFC3E(L_100, NULL, /*hidden argument*/NULL); __this->set_deviceGpuClockLevel_IsValid_25(L_101); // deviceGpuClockLevel = deviceGpuClockLevel_IsValid ? jsonNode["deviceGpuClockLevel"].AsInt : 0; bool L_102 = __this->get_deviceGpuClockLevel_IsValid_25(); G_B45_0 = __this; if (L_102) { G_B46_0 = __this; goto IL_0352; } } { G_B47_0 = 0; G_B47_1 = G_B45_0; goto IL_0362; } IL_0352: { JSONObject_t0BA65DEF85EEBE478BCC7D2EDD7F25DD88B106E4 * L_103 = V_0; NullCheck(L_103); JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B * L_104; L_104 = VirtFuncInvoker1< JSONNode_tAE7C74940CE54C0AFC86B0F0500CAAC34807E51B *, String_t* >::Invoke(7 /* OVRSimpleJSON.JSONNode OVRSimpleJSON.JSONNode::get_Item(System.String) */, L_103, _stringLiteralD898A9B1C2512E3891CC67EAA5F03B0ACF5ADDB3); NullCheck(L_104); int32_t L_105; L_105 = VirtFuncInvoker0< int32_t >::Invoke(31 /* System.Int32 OVRSimpleJSON.JSONNode::get_AsInt() */, L_104); G_B47_0 = L_105; G_B47_1 = G_B46_0; } IL_0362: { NullCheck(G_B47_1); G_B47_1->set_deviceGpuClockLevel_26(G_B47_0); // return true; return (bool)1; } } // System.Void OVRSystemPerfMetrics/PerfMetrics::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void PerfMetrics__ctor_mB6F452902A131D8C874D72E2F6E2524BE2DEEC73 (PerfMetrics_tBE65E5DBAA3C4112142E602057292B6B2786C92B * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/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 OVRTrackedKeyboard/<>c::.cctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__cctor_m75F2D57B193094C9F9B9EF572D09FC44EF71AD44 (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * L_0 = (U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B *)il2cpp_codegen_object_new(U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_il2cpp_TypeInfo_var); U3CU3Ec__ctor_m78EAE80C241A5F2D2411D37A9B93F3DEC2714DB1(L_0, /*hidden argument*/NULL); ((U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_StaticFields*)il2cpp_codegen_static_fields_for(U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B_il2cpp_TypeInfo_var))->set_U3CU3E9_0(L_0); return; } } // System.Void OVRTrackedKeyboard/<>c::.ctor() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec__ctor_m78EAE80C241A5F2D2411D37A9B93F3DEC2714DB1 (U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * __this, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); return; } } // System.Void OVRTrackedKeyboard/<>c::<.ctor>b__97_0(OVRTrackedKeyboard/TrackedKeyboardSetActiveEvent) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_ctorU3Eb__97_0_mEEE8BAEE7A7D751D22BA336FA2C58A01FF97ACFD (U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * __this, TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A ___U3Cp0U3E0, const RuntimeMethod* method) { { // public Action TrackedKeyboardActiveChanged = delegate { }; return; } } // System.Void OVRTrackedKeyboard/<>c::<.ctor>b__97_1(OVRTrackedKeyboard/TrackedKeyboardVisibilityChangedEvent) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CU3Ec_U3C_ctorU3Eb__97_1_m1953897AA7E6A41F29390EED19443A13A097843B (U3CU3Ec_t7129E30508F808745CAD1C8D5FEDD7D141AD245B * __this, TrackedKeyboardVisibilityChangedEvent_t33B59D3F8C22172347ADC07C6FDFB42622F7D729 ___U3Cp0U3E0, const RuntimeMethod* method) { { // public Action TrackedKeyboardVisibilityChanged = delegate { }; 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 OVRTrackedKeyboard/d__74::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInitializeHandPresenceDataU3Ed__74__ctor_m74ED87E550BC2C4DA58E1CF3240EFAF4CE4D1227 (U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRTrackedKeyboard/d__74::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInitializeHandPresenceDataU3Ed__74_System_IDisposable_Dispose_m4999154AAB2BF01519B66BA29F99D99AA6EF46D3 (U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRTrackedKeyboard/d__74::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CInitializeHandPresenceDataU3Ed__74_MoveNext_mA9C56A513367F3118FFACE1DF34B1299207FB22F (U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&GameObject_AddComponent_TisOVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_m55344729170268134539249661AC0A1FB6D9BDDC_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral7E0D888AD2B37768070F720A6324E0D300832EFB); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteralA83365DE47F10CF708EE1858733DE1AA5560C7D5); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * V_1 = NULL; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * V_2 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0013; } } { return (bool)0; } IL_0013: { __this->set_U3CU3E1__state_0((-1)); // GameObject ovrCameraRig = GameObject.Find("OVRCameraRig"); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_3; L_3 = GameObject_Find_m59E8F1E50866B94ABDD65B229D8B1B3A58FA7879(_stringLiteralA83365DE47F10CF708EE1858733DE1AA5560C7D5, /*hidden argument*/NULL); V_2 = L_3; // if (ovrCameraRig == null) GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_4 = V_2; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_5; L_5 = Object_op_Equality_m6D7EBC0E6D7E0CE1E9671D21DE14C9158AFB88B2(L_4, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_5) { goto IL_003a; } } { // Debug.LogError("Scene does not contain an OVRCameraRig"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogError_m5952BCE5DC0EF798B31FA983B9CE42A5A1F82DE1(_stringLiteral7E0D888AD2B37768070F720A6324E0D300832EFB, /*hidden argument*/NULL); // yield break; return (bool)0; } IL_003a: { // projectedPassthroughOpaque_ = ovrCameraRig.AddComponent(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_6 = V_1; GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_7 = V_2; NullCheck(L_7); OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * L_8; L_8 = GameObject_AddComponent_TisOVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_m55344729170268134539249661AC0A1FB6D9BDDC(L_7, /*hidden argument*/GameObject_AddComponent_TisOVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7_m55344729170268134539249661AC0A1FB6D9BDDC_RuntimeMethod_var); NullCheck(L_6); L_6->set_projectedPassthroughOpaque__20(L_8); // projectedPassthroughOpaque_.currentOverlayShape = OVROverlay.OverlayShape.KeyboardHandsPassthrough; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_9 = V_1; NullCheck(L_9); OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * L_10 = L_9->get_projectedPassthroughOpaque__20(); NullCheck(L_10); L_10->set_currentOverlayShape_26(((int32_t)10)); // projectedPassthroughOpaque_.hidden = true; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_11 = V_1; NullCheck(L_11); OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * L_12 = L_11->get_projectedPassthroughOpaque__20(); NullCheck(L_12); L_12->set_hidden_18((bool)1); // projectedPassthroughOpaque_.gameObject.SetActive(true); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_13 = V_1; NullCheck(L_13); OVROverlay_t38325187DABEB39EACE0C5FA1102F149CB9B3BF7 * L_14 = L_13->get_projectedPassthroughOpaque__20(); NullCheck(L_14); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_15; L_15 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_14, /*hidden argument*/NULL); NullCheck(L_15); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_15, (bool)1, /*hidden argument*/NULL); // ProjectedPassthroughKeyLabel.hidden = true; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_16 = V_1; NullCheck(L_16); OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB * L_17 = L_16->get_ProjectedPassthroughKeyLabel_30(); NullCheck(L_17); L_17->set_hidden_7((bool)1); // ProjectedPassthroughKeyLabel.gameObject.SetActive(true); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_18 = V_1; NullCheck(L_18); OVRPassthroughLayer_t5E9DB341891664EC179D63B778948C649620EBCB * L_19 = L_18->get_ProjectedPassthroughKeyLabel_30(); NullCheck(L_19); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_20; L_20 = Component_get_gameObject_m55DC35B149AFB9157582755383BA954655FE0C5B(L_19, /*hidden argument*/NULL); NullCheck(L_20); GameObject_SetActive_mCF1EEF2A314F3AE85DA581FF52EB06ACEF2FFF86(L_20, (bool)1, /*hidden argument*/NULL); // } return (bool)0; } } // System.Object OVRTrackedKeyboard/d__74::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CInitializeHandPresenceDataU3Ed__74_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mF2D9D6F9B561E8F4837F965671D65EC9E4117872 (U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRTrackedKeyboard/d__74::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CInitializeHandPresenceDataU3Ed__74_System_Collections_IEnumerator_Reset_mCC69431436602D9F88CD7740A380AB25BB6753D9 (U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CInitializeHandPresenceDataU3Ed__74_System_Collections_IEnumerator_Reset_mCC69431436602D9F88CD7740A380AB25BB6753D9_RuntimeMethod_var))); } } // System.Object OVRTrackedKeyboard/d__74::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CInitializeHandPresenceDataU3Ed__74_System_Collections_IEnumerator_get_Current_m190D5DE91EB07FF8FDCED4043BFD946B67899EB5 (U3CInitializeHandPresenceDataU3Ed__74_tAFE2B8192CAC5FC6E3003564D8B6255F700D6474 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRTrackedKeyboard/d__73::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartU3Ed__73__ctor_m33163A95D4B194CA3CD5A2392BA58F666E299D24 (U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRTrackedKeyboard/d__73::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartU3Ed__73_System_IDisposable_Dispose_m3FAFBF7F5C7D6FD6B14D319FA4E833E85AA1A99B (U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRTrackedKeyboard/d__73::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CStartU3Ed__73_MoveNext_m02DDB2BC1E158012C2E15570B43E1D1AA1B627C9 (U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_FindObjectOfType_TisOVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517_mB862EB6825CF928615C882DD6A4AC5AD8AFEE0E7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * V_1 = NULL; TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 V_2; memset((&V_2), 0, sizeof(V_2)); { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; switch (L_2) { case 0: { goto IL_0022; } case 1: { goto IL_0088; } case 2: { goto IL_00a4; } } } { return (bool)0; } IL_0022: { __this->set_U3CU3E1__state_0((-1)); // cameraRig_ = FindObjectOfType(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_3 = V_1; IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * L_4; L_4 = Object_FindObjectOfType_TisOVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517_mB862EB6825CF928615C882DD6A4AC5AD8AFEE0E7(/*hidden argument*/Object_FindObjectOfType_TisOVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517_mB862EB6825CF928615C882DD6A4AC5AD8AFEE0E7_RuntimeMethod_var); NullCheck(L_3); L_3->set_cameraRig__35(L_4); // SystemKeyboardInfo = new OVRKeyboard.TrackedKeyboardInfo // { // Name = "None", // Dimensions = new Vector3(0f, 0f, 0f), // Identifier = uint.MaxValue // }; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_5 = V_1; il2cpp_codegen_initobj((&V_2), sizeof(TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 )); (&V_2)->set_Name_0(_stringLiteral548D93DDB2AC6B24373148B19D9A625571AB2318); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6; memset((&L_6), 0, sizeof(L_6)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_6), (0.0f), (0.0f), (0.0f), /*hidden argument*/NULL); (&V_2)->set_Dimensions_2(L_6); (&V_2)->set_Identifier_1(((int64_t)((uint64_t)((uint32_t)((uint32_t)(-1)))))); TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_7 = V_2; NullCheck(L_5); OVRTrackedKeyboard_set_SystemKeyboardInfo_mC00D967238B6AF490A1E516F25BC2D03903A3389_inline(L_5, L_7, /*hidden argument*/NULL); // yield return InitializeHandPresenceData(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_8 = V_1; NullCheck(L_8); RuntimeObject* L_9; L_9 = OVRTrackedKeyboard_InitializeHandPresenceData_mF27C52AAED289D46EEEADCAE424B8FD225D9A140(L_8, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_9); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0088: { __this->set_U3CU3E1__state_0((-1)); // yield return UpdateTrackingStateCoroutine(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_10 = V_1; NullCheck(L_10); RuntimeObject* L_11; L_11 = OVRTrackedKeyboard_UpdateTrackingStateCoroutine_m74C51A0B4E6B278A1115CC63F2844047507A0787(L_10, /*hidden argument*/NULL); __this->set_U3CU3E2__current_1(L_11); __this->set_U3CU3E1__state_0(2); return (bool)1; } IL_00a4: { __this->set_U3CU3E1__state_0((-1)); // } return (bool)0; } } // System.Object OVRTrackedKeyboard/d__73::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CStartU3Ed__73_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_m33836A71A88E96D80B56AA87560EB08203A2BE5C (U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRTrackedKeyboard/d__73::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartU3Ed__73_System_Collections_IEnumerator_Reset_mCB21E568EBD016BB3F3185EAAA74BCDA5D6202A7 (U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartU3Ed__73_System_Collections_IEnumerator_Reset_mCB21E568EBD016BB3F3185EAAA74BCDA5D6202A7_RuntimeMethod_var))); } } // System.Object OVRTrackedKeyboard/d__73::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CStartU3Ed__73_System_Collections_IEnumerator_get_Current_mBC2BF798DFACEC86E87A35DFF2513CFA315B5BC0 (U3CStartU3Ed__73_t6D9461C6CD10038DEAC5504B4368CA36FB0A4599 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRTrackedKeyboard/d__81::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartKeyboardTrackingCoroutineU3Ed__81__ctor_mEEA3FDC7A417FABE0CE59137EE0A73CC2D2CB115 (U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRTrackedKeyboard/d__81::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartKeyboardTrackingCoroutineU3Ed__81_System_IDisposable_Dispose_mE48737D239EB1424F3F933AABB3CC672ACFD8E50 (U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRTrackedKeyboard/d__81::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CStartKeyboardTrackingCoroutineU3Ed__81_MoveNext_mCA5C5D3A0C7CF2D7EBA27252F73AD8C62ED64441 (U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Action_1_Invoke_mDE80C4E19F1DA60EC4FB7F2A5FDDE660C50C4D0B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral1187D2B39B7DDEAF8FE68782177C91FF0E0B98D0); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral83F7325406C26EABB74F53C853EF630635DDEF8E); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&_stringLiteral958C9E2CB4146338612393E0D365F7C51BA96DDF); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * V_1 = NULL; TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 V_2; memset((&V_2), 0, sizeof(V_2)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_3; memset((&V_3), 0, sizeof(V_3)); Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * G_B8_0 = NULL; Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * G_B7_0 = NULL; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_0013; } } { return (bool)0; } IL_0013: { __this->set_U3CU3E1__state_0((-1)); // if (KeyboardTrackerIsRunning()) OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_3 = V_1; NullCheck(L_3); bool L_4; L_4 = OVRTrackedKeyboard_KeyboardTrackerIsRunning_m41BE49B25E909E4F54D8882FB29CF422C1AA4BA4(L_3, /*hidden argument*/NULL); if (!L_4) { goto IL_002e; } } { // Debug.Log("StartKeyboardTracking(): Keyboard already being tracked"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(_stringLiteral1187D2B39B7DDEAF8FE68782177C91FF0E0B98D0, /*hidden argument*/NULL); // yield break; return (bool)0; } IL_002e: { // InitializeKeyboardInfo(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_5 = V_1; NullCheck(L_5); OVRTrackedKeyboard_InitializeKeyboardInfo_mC5DED6C9CD2F8DB9ACF76AA9D115380DC75D8B83(L_5, /*hidden argument*/NULL); // RegisterPassthroughMeshToSDK(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_6 = V_1; NullCheck(L_6); OVRTrackedKeyboard_RegisterPassthroughMeshToSDK_m0576F47674747CA65E482420FB48309A4D77A6E5(L_6, /*hidden argument*/NULL); // Debug.Log("Calling StartKeyboardTracking with id " + SystemKeyboardInfo.Identifier); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_7 = V_1; NullCheck(L_7); TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_8; L_8 = OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline(L_7, /*hidden argument*/NULL); V_2 = L_8; uint64_t* L_9 = (&V_2)->get_address_of_Identifier_1(); String_t* L_10; L_10 = UInt64_ToString_m3644686F0A0E32CB94D300CF891DBD7920396F37((uint64_t*)L_9, /*hidden argument*/NULL); String_t* L_11; L_11 = String_Concat_m10758B01687A2181C8727AD9FD9CCF5325C61C2A(_stringLiteral958C9E2CB4146338612393E0D365F7C51BA96DDF, L_10, /*hidden argument*/NULL); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_Log_mF2A2ACB1738BA264EF07744AAF260BC5DDD2A11A(L_11, /*hidden argument*/NULL); // if (!OVRPlugin.StartKeyboardTracking(SystemKeyboardInfo.Identifier)) OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_12 = V_1; NullCheck(L_12); TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_13; L_13 = OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline(L_12, /*hidden argument*/NULL); uint64_t L_14 = L_13.get_Identifier_1(); IL2CPP_RUNTIME_CLASS_INIT(OVRPlugin_t33529050E1318B8BC645C7451E1A3C8C4E500DCF_il2cpp_TypeInfo_var); bool L_15; L_15 = OVRPlugin_StartKeyboardTracking_m5904BE2748D7A4BDD52B1CB07EC4B52AE61E14EB(L_14, /*hidden argument*/NULL); if (L_15) { goto IL_007a; } } { // Debug.LogWarning("OVRKeyboard.StartKeyboardTracking Failed"); IL2CPP_RUNTIME_CLASS_INIT(Debug_tEB68BCBEB8EFD60F8043C67146DC05E7F50F374B_il2cpp_TypeInfo_var); Debug_LogWarning_mA477FDA9C0B96C627C085E9EB431EB394B2EBBE0(_stringLiteral83F7325406C26EABB74F53C853EF630635DDEF8E, /*hidden argument*/NULL); // yield break; return (bool)0; } IL_007a: { // projectedPassthroughRoot.localScale = new Vector3 { x = SystemKeyboardInfo.Dimensions.x * underlayScaleMultX_, y = underlayScaleConstY_, z = SystemKeyboardInfo.Dimensions.z * underlayScaleMultZ_ }; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_16 = V_1; NullCheck(L_16); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_17 = L_16->get_projectedPassthroughRoot_28(); il2cpp_codegen_initobj((&V_3), sizeof(Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_18 = V_1; NullCheck(L_18); TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_19; L_19 = OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline(L_18, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_20 = L_19.get_Dimensions_2(); float L_21 = L_20.get_x_2(); IL2CPP_RUNTIME_CLASS_INIT(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var); float L_22 = ((OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields*)il2cpp_codegen_static_fields_for(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var))->get_underlayScaleMultX__4(); (&V_3)->set_x_2(((float)il2cpp_codegen_multiply((float)L_21, (float)L_22))); float L_23 = ((OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields*)il2cpp_codegen_static_fields_for(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var))->get_underlayScaleConstY__5(); (&V_3)->set_y_3(L_23); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_24 = V_1; NullCheck(L_24); TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_25; L_25 = OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline(L_24, /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_26 = L_25.get_Dimensions_2(); float L_27 = L_26.get_z_4(); float L_28 = ((OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields*)il2cpp_codegen_static_fields_for(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var))->get_underlayScaleMultZ__6(); (&V_3)->set_z_4(((float)il2cpp_codegen_multiply((float)L_27, (float)L_28))); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_29 = V_3; NullCheck(L_17); Transform_set_localScale_mF4D1611E48D1BA7566A1E166DC2DACF3ADD8BA3A(L_17, L_29, /*hidden argument*/NULL); // currentKeyboardPresentationStyles = SystemKeyboardInfo.SupportedPresentationStyles; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_30 = V_1; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_31 = V_1; NullCheck(L_31); TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_32; L_32 = OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline(L_31, /*hidden argument*/NULL); int32_t L_33 = L_32.get_SupportedPresentationStyles_4(); NullCheck(L_30); L_30->set_currentKeyboardPresentationStyles_19(L_33); // ActiveKeyboardInfo = SystemKeyboardInfo; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_34 = V_1; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_35 = V_1; NullCheck(L_35); TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_36; L_36 = OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline(L_35, /*hidden argument*/NULL); NullCheck(L_34); OVRTrackedKeyboard_set_ActiveKeyboardInfo_mC92B2FB7102A869D60E790CF1D2EDF013E899A91_inline(L_34, L_36, /*hidden argument*/NULL); // LoadKeyboardMesh(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_37 = V_1; NullCheck(L_37); OVRTrackedKeyboard_LoadKeyboardMesh_m746191B9E25E0DE8D11F4C291473D38F88609E9E(L_37, /*hidden argument*/NULL); // updateKeyboardRoutine_ = StartCoroutine(UpdateKeyboardPose()); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_38 = V_1; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_39 = V_1; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_40 = V_1; NullCheck(L_40); RuntimeObject* L_41; L_41 = OVRTrackedKeyboard_UpdateKeyboardPose_mF44EFFC241B2B439C0D02D7117551AC2B3610F3C(L_40, /*hidden argument*/NULL); NullCheck(L_39); Coroutine_t899D5232EF542CB8BA70AF9ECEECA494FAA9CCB7 * L_42; L_42 = MonoBehaviour_StartCoroutine_m3E33706D38B23CDD179E99BAD61E32303E9CC719(L_39, L_41, /*hidden argument*/NULL); NullCheck(L_38); L_38->set_updateKeyboardRoutine__36(L_42); // EWAPosition = null; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_43 = V_1; NullCheck(L_43); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * L_44 = L_43->get_address_of_EWAPosition_44(); il2cpp_codegen_initobj(L_44, sizeof(Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 )); // EWARotation = null; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_45 = V_1; NullCheck(L_45); Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * L_46 = L_45->get_address_of_EWARotation_45(); il2cpp_codegen_initobj(L_46, sizeof(Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 )); // TrackedKeyboardActiveChanged?.Invoke(new TrackedKeyboardSetActiveEvent(isEnabled: true)); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_47 = V_1; NullCheck(L_47); Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * L_48 = L_47->get_TrackedKeyboardActiveChanged_31(); Action_1_tCB851C0471D28E4890D4CD6463F0FE9F69CDB455 * L_49 = L_48; G_B7_0 = L_49; if (L_49) { G_B8_0 = L_49; goto IL_012d; } } { goto IL_0138; } IL_012d: { TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A L_50; memset((&L_50), 0, sizeof(L_50)); TrackedKeyboardSetActiveEvent__ctor_m3D02DA6E649D73CFF5E513453B31D8BA5D05850B_inline((&L_50), (bool)1, /*hidden argument*/NULL); NullCheck(G_B8_0); Action_1_Invoke_mDE80C4E19F1DA60EC4FB7F2A5FDDE660C50C4D0B(G_B8_0, L_50, /*hidden argument*/Action_1_Invoke_mDE80C4E19F1DA60EC4FB7F2A5FDDE660C50C4D0B_RuntimeMethod_var); } IL_0138: { // SetKeyboardState(TrackedKeyboardState.StartedNotTracked); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_51 = V_1; NullCheck(L_51); OVRTrackedKeyboard_SetKeyboardState_m13F366FDD788EB7F873325E2E51B13ADCBBA09F6(L_51, 3, /*hidden argument*/NULL); // } return (bool)0; } } // System.Object OVRTrackedKeyboard/d__81::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CStartKeyboardTrackingCoroutineU3Ed__81_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mB55D348C1D41D538BCAA424CB311C1B5D1199727 (U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRTrackedKeyboard/d__81::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CStartKeyboardTrackingCoroutineU3Ed__81_System_Collections_IEnumerator_Reset_mDDD433B764D415F22C30B88C5EF10C4629E0CA86 (U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CStartKeyboardTrackingCoroutineU3Ed__81_System_Collections_IEnumerator_Reset_mDDD433B764D415F22C30B88C5EF10C4629E0CA86_RuntimeMethod_var))); } } // System.Object OVRTrackedKeyboard/d__81::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CStartKeyboardTrackingCoroutineU3Ed__81_System_Collections_IEnumerator_get_Current_m07C7CB09DAC990C57EC820C011A28E3DFF3821AB (U3CStartKeyboardTrackingCoroutineU3Ed__81_t4C6108FE036F8C2AE0CC8E971C136EC2D75ED16D * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif #ifdef __clang__ #pragma clang diagnostic push #pragma clang diagnostic ignored "-Winvalid-offsetof" #pragma clang diagnostic ignored "-Wunused-variable" #endif // System.Void OVRTrackedKeyboard/d__83::.ctor(System.Int32) IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUpdateKeyboardPoseU3Ed__83__ctor_mA184ADC2D0BD273DD6F1C5128879089E1A14C2A6 (U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500 * __this, int32_t ___U3CU3E1__state0, const RuntimeMethod* method) { { Object__ctor_m88880E0413421D13FD95325EDCE231707CE1F405(__this, /*hidden argument*/NULL); int32_t L_0 = ___U3CU3E1__state0; __this->set_U3CU3E1__state_0(L_0); return; } } // System.Void OVRTrackedKeyboard/d__83::System.IDisposable.Dispose() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUpdateKeyboardPoseU3Ed__83_System_IDisposable_Dispose_mCEA7809D843496C629F3590D54A710CC47BC7F6E (U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500 * __this, const RuntimeMethod* method) { { return; } } // System.Boolean OVRTrackedKeyboard/d__83::MoveNext() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR bool U3CUpdateKeyboardPoseU3Ed__83_MoveNext_mADBC52B4B171123F2112B5F40CC1D8387DB64F3D (U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500 * __this, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B_RuntimeMethod_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var); il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } int32_t V_0 = 0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * V_1 = NULL; TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC V_2; memset((&V_2), 0, sizeof(V_2)); int32_t V_3 = 0; float V_4 = 0.0f; float V_5 = 0.0f; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_6; memset((&V_6), 0, sizeof(V_6)); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 V_7; memset((&V_7), 0, sizeof(V_7)); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_8; memset((&V_8), 0, sizeof(V_8)); float V_9 = 0.0f; Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 V_10; memset((&V_10), 0, sizeof(V_10)); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 V_11; memset((&V_11), 0, sizeof(V_11)); float G_B10_0 = 0.0f; float G_B13_0 = 0.0f; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * G_B18_0 = NULL; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * G_B17_0 = NULL; Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 G_B19_0; memset((&G_B19_0), 0, sizeof(G_B19_0)); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * G_B19_1 = NULL; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * G_B21_0 = NULL; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * G_B20_0 = NULL; Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 G_B22_0; memset((&G_B22_0), 0, sizeof(G_B22_0)); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * G_B22_1 = NULL; int32_t G_B31_0 = 0; { int32_t L_0 = __this->get_U3CU3E1__state_0(); V_0 = L_0; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_1 = __this->get_U3CU3E4__this_2(); V_1 = L_1; int32_t L_2 = V_0; if (!L_2) { goto IL_001a; } } { int32_t L_3 = V_0; if ((((int32_t)L_3) == ((int32_t)1))) { goto IL_0295; } } { return (bool)0; } IL_001a: { __this->set_U3CU3E1__state_0((-1)); } IL_0021: { // transform.position = cameraRig_.trackingSpace.transform.position; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_4 = V_1; NullCheck(L_4); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_5; L_5 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_4, /*hidden argument*/NULL); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_6 = V_1; NullCheck(L_6); OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * L_7 = L_6->get_cameraRig__35(); NullCheck(L_7); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_8; L_8 = OVRCameraRig_get_trackingSpace_mB0190AF5A79E489DB09B4C61D4E3BE8FA9AD8D9E_inline(L_7, /*hidden argument*/NULL); NullCheck(L_8); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_9; L_9 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_8, /*hidden argument*/NULL); NullCheck(L_9); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10; L_10 = Transform_get_position_m40A8A9895568D56FFC687B57F30E8D53CB5EA341(L_9, /*hidden argument*/NULL); NullCheck(L_5); Transform_set_position_mB169E52D57EEAC1E3F22C5395968714E4F00AC91(L_5, L_10, /*hidden argument*/NULL); // transform.rotation = cameraRig_.trackingSpace.transform.rotation; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_11 = V_1; NullCheck(L_11); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_12; L_12 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_11, /*hidden argument*/NULL); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_13 = V_1; NullCheck(L_13); OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * L_14 = L_13->get_cameraRig__35(); NullCheck(L_14); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_15; L_15 = OVRCameraRig_get_trackingSpace_mB0190AF5A79E489DB09B4C61D4E3BE8FA9AD8D9E_inline(L_14, /*hidden argument*/NULL); NullCheck(L_15); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_16; L_16 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_15, /*hidden argument*/NULL); NullCheck(L_16); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_17; L_17 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_16, /*hidden argument*/NULL); NullCheck(L_12); Transform_set_rotation_m1B5F3D4CE984AB31254615C9C71B0E54978583B4(L_12, L_17, /*hidden argument*/NULL); // var poseState = OVRKeyboard.GetKeyboardState(); TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_18; L_18 = OVRKeyboard_GetKeyboardState_m776A35C1FC0D531DE05CD7192D951648147E3BD3(/*hidden argument*/NULL); V_2 = L_18; // TrackedKeyboardState keyboardState = TrackedKeyboardState.StartedNotTracked; V_3 = 3; // if (poseState.isPositionValid) TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_19 = V_2; bool L_20 = L_19.get_isPositionValid_0(); if (!L_20) { goto IL_0278; } } { // if (poseState.isPositionTracked && activeKeyboardMesh_ != null) TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_21 = V_2; bool L_22 = L_21.get_isPositionTracked_1(); if (!L_22) { goto IL_026b; } } { OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_23 = V_1; NullCheck(L_23); GameObject_tC000A2E1A7CF1E10FD7BA08863287C072207C319 * L_24 = L_23->get_activeKeyboardMesh__22(); IL2CPP_RUNTIME_CLASS_INIT(Object_tF2F3778131EFF286AF62B7B013A170F95A91571A_il2cpp_TypeInfo_var); bool L_25; L_25 = Object_op_Inequality_mDCB4E958808E725D0612CCABF340B284085F03D6(L_24, (Object_tF2F3778131EFF286AF62B7B013A170F95A91571A *)NULL, /*hidden argument*/NULL); if (!L_25) { goto IL_026b; } } { // float keyboardAngleFilter = UseHeuristicRollback ? 360f : 20f; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_26 = V_1; NullCheck(L_26); bool L_27 = L_26->get_UseHeuristicRollback_47(); if (L_27) { goto IL_009f; } } { G_B10_0 = (20.0f); goto IL_00a4; } IL_009f: { G_B10_0 = (360.0f); } IL_00a4: { V_4 = G_B10_0; // float ewaAlpha = UseHeuristicRollback ? 0f : 0.65f; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_28 = V_1; NullCheck(L_28); bool L_29 = L_28->get_UseHeuristicRollback_47(); if (L_29) { goto IL_00b5; } } { G_B13_0 = (0.649999976f); goto IL_00ba; } IL_00b5: { G_B13_0 = (0.0f); } IL_00ba: { V_5 = G_B13_0; // var worldRotation = transform.rotation * poseState.rotation; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_30 = V_1; NullCheck(L_30); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_31; L_31 = Component_get_transform_mE8496EBC45BEB1BADB5F314960F1DF1C952FA11F(L_30, /*hidden argument*/NULL); NullCheck(L_31); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_32; L_32 = Transform_get_rotation_m4AA3858C00DF4C9614B80352558C4C37D08D2200(L_31, /*hidden argument*/NULL); TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_33 = V_2; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_34 = L_33.get_rotation_5(); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_35; L_35 = Quaternion_op_Multiply_mA5FD288B815D9C1B59C7B26AA1942A85ACE94153(L_32, L_34, /*hidden argument*/NULL); // var upRotated = worldRotation * Vector3.up; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_36; L_36 = Vector3_get_up_mD84FDFCD32FC48C865A89FD4251232E2A9D7015A(/*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_37; L_37 = Quaternion_op_Multiply_mDEAB1A882C07A9520D77EB35473F71AAE74452BC(L_35, L_36, /*hidden argument*/NULL); V_6 = L_37; // CurrentKeyboardAngleFromUp = Vector3.Angle(upRotated, Vector3.up); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_38 = V_1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_39 = V_6; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_40; L_40 = Vector3_get_up_mD84FDFCD32FC48C865A89FD4251232E2A9D7015A(/*hidden argument*/NULL); float L_41; L_41 = Vector3_Angle_mFE4B9D0E5EBD02D0684598D486833321336732B3(L_39, L_40, /*hidden argument*/NULL); NullCheck(L_38); OVRTrackedKeyboard_set_CurrentKeyboardAngleFromUp_mFFD5E90079B121144696162F3627F54340217AE8_inline(L_38, L_41, /*hidden argument*/NULL); // if (CurrentKeyboardAngleFromUp < keyboardAngleFilter) OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_42 = V_1; NullCheck(L_42); float L_43; L_43 = OVRTrackedKeyboard_get_CurrentKeyboardAngleFromUp_m45AAB8FFF758121FBC6669A5A81C0B7A3B8E25C5_inline(L_42, /*hidden argument*/NULL); float L_44 = V_4; if ((!(((float)L_43) < ((float)L_44)))) { goto IL_025d; } } { // if (!EWAPosition.HasValue) OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_45 = V_1; NullCheck(L_45); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * L_46 = L_45->get_address_of_EWAPosition_44(); bool L_47; L_47 = Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_inline((Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *)L_46, /*hidden argument*/Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_RuntimeMethod_var); if (L_47) { goto IL_011d; } } { // EWAPosition = poseState.position; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_48 = V_1; TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_49 = V_2; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_50 = L_49.get_position_4(); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 L_51; memset((&L_51), 0, sizeof(L_51)); Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830((&L_51), L_50, /*hidden argument*/Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830_RuntimeMethod_var); NullCheck(L_48); L_48->set_EWAPosition_44(L_51); // } goto IL_0196; } IL_011d: { // EWAPosition = ewaAlpha * EWAPosition + (1f - ewaAlpha) * poseState.position; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_52 = V_1; float L_53 = V_5; V_9 = L_53; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_54 = V_1; NullCheck(L_54); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 L_55 = L_54->get_EWAPosition_44(); V_10 = L_55; bool L_56; L_56 = Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_inline((Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *)(&V_10), /*hidden argument*/Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_RuntimeMethod_var); G_B17_0 = L_52; if (L_56) { G_B18_0 = L_52; goto IL_013f; } } { il2cpp_codegen_initobj((&V_11), sizeof(Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 )); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 L_57 = V_11; G_B19_0 = L_57; G_B19_1 = G_B17_0; goto IL_0152; } IL_013f: { float L_58 = V_9; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_59; L_59 = Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_inline((Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *)(&V_10), /*hidden argument*/Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_RuntimeMethod_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_60; L_60 = Vector3_op_Multiply_m92CBF5B97ECB34A9B802EDD5C4A8187463278560_inline(L_58, L_59, /*hidden argument*/NULL); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 L_61; memset((&L_61), 0, sizeof(L_61)); Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830((&L_61), L_60, /*hidden argument*/Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830_RuntimeMethod_var); G_B19_0 = L_61; G_B19_1 = G_B18_0; } IL_0152: { V_7 = G_B19_0; float L_62 = V_5; TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_63 = V_2; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_64 = L_63.get_position_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_65; L_65 = Vector3_op_Multiply_m92CBF5B97ECB34A9B802EDD5C4A8187463278560_inline(((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_62)), L_64, /*hidden argument*/NULL); V_8 = L_65; bool L_66; L_66 = Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_inline((Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *)(&V_7), /*hidden argument*/Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_RuntimeMethod_var); G_B20_0 = G_B19_1; if (L_66) { G_B21_0 = G_B19_1; goto IL_017e; } } { il2cpp_codegen_initobj((&V_10), sizeof(Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 )); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 L_67 = V_10; G_B22_0 = L_67; G_B22_1 = G_B20_0; goto IL_0191; } IL_017e: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_68; L_68 = Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_inline((Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *)(&V_7), /*hidden argument*/Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_RuntimeMethod_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_69 = V_8; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_70; L_70 = Vector3_op_Addition_m2E3CBC2DA8F97FF21F4F845D857746EF6BC83A01_inline(L_68, L_69, /*hidden argument*/NULL); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 L_71; memset((&L_71), 0, sizeof(L_71)); Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830((&L_71), L_70, /*hidden argument*/Nullable_1__ctor_m6F1238037ACD87D7DC2C911C35EEC7D1B73F5830_RuntimeMethod_var); G_B22_0 = L_71; G_B22_1 = G_B21_0; } IL_0191: { NullCheck(G_B22_1); G_B22_1->set_EWAPosition_44(G_B22_0); } IL_0196: { // if (!EWARotation.HasValue) OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_72 = V_1; NullCheck(L_72); Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * L_73 = L_72->get_address_of_EWARotation_45(); bool L_74; L_74 = Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_inline((Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 *)L_73, /*hidden argument*/Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_RuntimeMethod_var); if (L_74) { goto IL_01b6; } } { // EWARotation = poseState.rotation; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_75 = V_1; TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_76 = V_2; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_77 = L_76.get_rotation_5(); Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 L_78; memset((&L_78), 0, sizeof(L_78)); Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D((&L_78), L_77, /*hidden argument*/Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D_RuntimeMethod_var); NullCheck(L_75); L_75->set_EWARotation_45(L_78); // } goto IL_01df; } IL_01b6: { // EWARotation = Quaternion.Slerp(EWARotation.Value, poseState.rotation, 1f - ewaAlpha); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_79 = V_1; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_80 = V_1; NullCheck(L_80); Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * L_81 = L_80->get_address_of_EWARotation_45(); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_82; L_82 = Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8((Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 *)L_81, /*hidden argument*/Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8_RuntimeMethod_var); TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_83 = V_2; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_84 = L_83.get_rotation_5(); float L_85 = V_5; Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_86; L_86 = Quaternion_Slerp_m248F79C5788A4A059F1394DEC120F23B67EFE541(L_82, L_84, ((float)il2cpp_codegen_subtract((float)(1.0f), (float)L_85)), /*hidden argument*/NULL); Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 L_87; memset((&L_87), 0, sizeof(L_87)); Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D((&L_87), L_86, /*hidden argument*/Nullable_1__ctor_mE732995EF14954D1EAC0F4968A668BFA448E078D_RuntimeMethod_var); NullCheck(L_79); L_79->set_EWARotation_45(L_87); } IL_01df: { // ActiveKeyboardTransform.localPosition = EWAPosition.Value; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_88 = V_1; NullCheck(L_88); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_89 = L_88->get_ActiveKeyboardTransform_33(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_90 = V_1; NullCheck(L_90); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * L_91 = L_90->get_address_of_EWAPosition_44(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_92; L_92 = Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B((Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *)L_91, /*hidden argument*/Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B_RuntimeMethod_var); NullCheck(L_89); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_89, L_92, /*hidden argument*/NULL); // ActiveKeyboardTransform.localRotation = EWARotation.Value; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_93 = V_1; NullCheck(L_93); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_94 = L_93->get_ActiveKeyboardTransform_33(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_95 = V_1; NullCheck(L_95); Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * L_96 = L_95->get_address_of_EWARotation_45(); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_97; L_97 = Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8((Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 *)L_96, /*hidden argument*/Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8_RuntimeMethod_var); NullCheck(L_94); Transform_set_localRotation_m1A9101457EC4653AFC93FCC4065A29F2C78FA62C(L_94, L_97, /*hidden argument*/NULL); // projectedPassthroughRoot.localPosition = EWAPosition.Value + underlayOffset_ + new Vector3(0f, HAND_HEIGHT_TUNING, 0f); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_98 = V_1; NullCheck(L_98); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_99 = L_98->get_projectedPassthroughRoot_28(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_100 = V_1; NullCheck(L_100); Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * L_101 = L_100->get_address_of_EWAPosition_44(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_102; L_102 = Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B((Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 *)L_101, /*hidden argument*/Nullable_1_get_Value_mB540D7D195D223057F4CCA57AC0982EEE816F79B_RuntimeMethod_var); IL2CPP_RUNTIME_CLASS_INIT(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_103 = ((OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_StaticFields*)il2cpp_codegen_static_fields_for(OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4_il2cpp_TypeInfo_var))->get_underlayOffset__7(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_104; L_104 = Vector3_op_Addition_m2E3CBC2DA8F97FF21F4F845D857746EF6BC83A01_inline(L_102, L_103, /*hidden argument*/NULL); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_105 = V_1; NullCheck(L_105); float L_106 = L_105->get_HAND_HEIGHT_TUNING_46(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_107; memset((&L_107), 0, sizeof(L_107)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_107), (0.0f), L_106, (0.0f), /*hidden argument*/NULL); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_108; L_108 = Vector3_op_Addition_m2E3CBC2DA8F97FF21F4F845D857746EF6BC83A01_inline(L_104, L_107, /*hidden argument*/NULL); NullCheck(L_99); Transform_set_localPosition_m2A2B0033EF079077FAE7C65196078EAF5D041AFC(L_99, L_108, /*hidden argument*/NULL); // projectedPassthroughRoot.localRotation = EWARotation.Value; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_109 = V_1; NullCheck(L_109); Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_110 = L_109->get_projectedPassthroughRoot_28(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_111 = V_1; NullCheck(L_111); Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * L_112 = L_111->get_address_of_EWARotation_45(); Quaternion_t6D28618CF65156D4A0AD747370DDFD0C514A31B4 L_113; L_113 = Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8((Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 *)L_112, /*hidden argument*/Nullable_1_get_Value_m3E52E50BDF7EE831043EA6B69B3FF455EDDEF2C8_RuntimeMethod_var); NullCheck(L_110); Transform_set_localRotation_m1A9101457EC4653AFC93FCC4065A29F2C78FA62C(L_110, L_113, /*hidden argument*/NULL); // } goto IL_026b; } IL_025d: { // skippedPoseCount_++; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_114 = V_1; OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_115 = V_1; NullCheck(L_115); int32_t L_116 = L_115->get_skippedPoseCount__42(); NullCheck(L_114); L_114->set_skippedPoseCount__42(((int32_t)il2cpp_codegen_add((int32_t)L_116, (int32_t)1))); } IL_026b: { // keyboardState = poseState.isPositionTracked // ? TrackedKeyboardState.Valid // : TrackedKeyboardState.Stale; TrackedKeyboardState_tD939FB0517312A142D71964749A9600C79760CFC L_117 = V_2; bool L_118 = L_117.get_isPositionTracked_1(); if (L_118) { goto IL_0276; } } { G_B31_0 = 4; goto IL_0277; } IL_0276: { G_B31_0 = 5; } IL_0277: { V_3 = G_B31_0; } IL_0278: { // SetKeyboardState(keyboardState); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_119 = V_1; int32_t L_120 = V_3; NullCheck(L_119); OVRTrackedKeyboard_SetKeyboardState_m13F366FDD788EB7F873325E2E51B13ADCBBA09F6(L_119, L_120, /*hidden argument*/NULL); // UpdateSkippedPoseTimer(); OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * L_121 = V_1; NullCheck(L_121); OVRTrackedKeyboard_UpdateSkippedPoseTimer_m1EF68F968024B4DE3DC3F4275482D9AAFA277B35(L_121, /*hidden argument*/NULL); // yield return null; __this->set_U3CU3E2__current_1(NULL); __this->set_U3CU3E1__state_0(1); return (bool)1; } IL_0295: { __this->set_U3CU3E1__state_0((-1)); // while (true) goto IL_0021; } } // System.Object OVRTrackedKeyboard/d__83::System.Collections.Generic.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUpdateKeyboardPoseU3Ed__83_System_Collections_Generic_IEnumeratorU3CSystem_ObjectU3E_get_Current_mD5147DC7229A9FF8D1B9BF9E7EB5BE7357AACF76 (U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } // System.Void OVRTrackedKeyboard/d__83::System.Collections.IEnumerator.Reset() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR void U3CUpdateKeyboardPoseU3Ed__83_System_Collections_IEnumerator_Reset_mE929904DABD9EFEC4484F101D4934097E61EBB7C (U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500 * __this, const RuntimeMethod* method) { { NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 * L_0 = (NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339 *)il2cpp_codegen_object_new(((RuntimeClass*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&NotSupportedException_tB9D89F0E9470A2C423D239D7C68EE0CFD77F9339_il2cpp_TypeInfo_var))); NotSupportedException__ctor_m3EA81A5B209A87C3ADA47443F2AFFF735E5256EE(L_0, /*hidden argument*/NULL); IL2CPP_RAISE_MANAGED_EXCEPTION(L_0, ((RuntimeMethod*)il2cpp_codegen_initialize_runtime_metadata_inline((uintptr_t*)&U3CUpdateKeyboardPoseU3Ed__83_System_Collections_IEnumerator_Reset_mE929904DABD9EFEC4484F101D4934097E61EBB7C_RuntimeMethod_var))); } } // System.Object OVRTrackedKeyboard/d__83::System.Collections.IEnumerator.get_Current() IL2CPP_EXTERN_C IL2CPP_METHOD_ATTR RuntimeObject * U3CUpdateKeyboardPoseU3Ed__83_System_Collections_IEnumerator_get_Current_m03AF8172B5224C468F934781B74D8D5834ACE788 (U3CUpdateKeyboardPoseU3Ed__83_t40D8089347ECEB5F08267C96367539C174696500 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = __this->get_U3CU3E2__current_1(); return L_0; } } #ifdef __clang__ #pragma clang diagnostic pop #endif IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OVRInput_GetConnectedControllers_mE69D0392FF67E9784E5116130E895E57E8C81FD1_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // return connectedControllerTypes; IL2CPP_RUNTIME_CLASS_INIT(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var); int32_t L_0 = ((OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_StaticFields*)il2cpp_codegen_static_fields_for(OVRInput_t3C43263053F2510BDF75588657A71B87702767FB_il2cpp_TypeInfo_var))->get_connectedControllerTypes_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_SampleRateHz_m48E7FC722F2D42F5D46AD48199E7D773317250B4_inline (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleRateHz { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CSampleRateHzU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_SampleSizeInBytes_mCCC67F96D962BF8D0E61CAEC128C784A53D3E907_inline (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleSizeInBytes { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CSampleSizeInBytesU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_MinimumSafeSamplesQueued_m2EADCEE20E46F8C2B355824A12AD22507A38EF4E_inline (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumSafeSamplesQueued { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_MinimumBufferSamplesCount_m44166FE4957A9B042D3AD3BEB89AFF0EFD852BAD_inline (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumBufferSamplesCount { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CMinimumBufferSamplesCountU3Ek__BackingField_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_OptimalBufferSamplesCount_m149557E874B4853790BE300488395114EC1E77F9_inline (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int OptimalBufferSamplesCount { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3COptimalBufferSamplesCountU3Ek__BackingField_4(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Config_set_MaximumBufferSamplesCount_mC7FFDDE148F49BE1B1AA6DC5647799EAE485D16D_inline (int32_t ___value0, const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MaximumBufferSamplesCount { get; private set; } int32_t L_0 = ___value0; IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->set_U3CMaximumBufferSamplesCountU3Ek__BackingField_5(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_MaximumBufferSamplesCount_mCF860AA8971C6A238861BB6BC29C4F7B75E106D7_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MaximumBufferSamplesCount { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CMaximumBufferSamplesCountU3Ek__BackingField_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_SampleSizeInBytes_m5F636BF2166898CD564FA372B1573CCA966405F5_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleSizeInBytes { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CSampleSizeInBytesU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_SampleRateHz_m45E819F80B37F4AC7C331CD39034A8D7D4C5EAD7_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int SampleRateHz { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CSampleRateHzU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_OptimalBufferSamplesCount_m51A44D4296DCE12443B1681CC4D957B36D7601DB_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int OptimalBufferSamplesCount { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3COptimalBufferSamplesCountU3Ek__BackingField_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_MinimumSafeSamplesQueued_mCEBAF0B38B5AD27F8DD0DB8C3AA530548387C8C1_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumSafeSamplesQueued { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CMinimumSafeSamplesQueuedU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * ClipPlaybackTracker_get_Clip_m406D857D7C0335FF2F7A3A08B48B5A113E20B274_inline (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * __this, const RuntimeMethod* method) { { // public OVRHapticsClip Clip { get; set; } OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * L_0 = __this->get_U3CClipU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t OVRHapticsClip_get_Count_m6E120C17F35E64BB70473A87B34C5C05D1C6061E_inline (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * __this, const RuntimeMethod* method) { { // public int Count { get; private set; } int32_t L_0 = __this->get_U3CCountU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t ClipPlaybackTracker_get_ReadCount_m60338D1DFDEE1D57F462515FEC59792A8817FC28_inline (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * __this, const RuntimeMethod* method) { { // public int ReadCount { get; set; } int32_t L_0 = __this->get_U3CReadCountU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* OVRHapticsClip_get_Samples_mDB261524D217F8DF99540C6BA720E462F2A0C0A6_inline (OVRHapticsClip_t212861601F92515E05F9190C6E3894CF9D3F0619 * __this, const RuntimeMethod* method) { { // public byte[] Samples { get; private set; } ByteU5BU5D_tDBBEB0E8362242FA7223000D978B0DD19D4B0726* L_0 = __this->get_U3CSamplesU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void ClipPlaybackTracker_set_ReadCount_mE3F84455BAF5189B02E436401E30EAF6CD65364B_inline (ClipPlaybackTracker_tE7D0C732CEEC92559D15AB30701C6116F159024D * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int ReadCount { get; set; } int32_t L_0 = ___value0; __this->set_U3CReadCountU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Config_get_MinimumBufferSamplesCount_mE72E1FD6B3B23880513288DD0CB5F0A448AF351A_inline (const RuntimeMethod* method) { static bool s_Il2CppMethodInitialized; if (!s_Il2CppMethodInitialized) { il2cpp_codegen_initialize_runtime_metadata((uintptr_t*)&Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); s_Il2CppMethodInitialized = true; } { // public static int MinimumBufferSamplesCount { get; private set; } IL2CPP_RUNTIME_CLASS_INIT(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var); int32_t L_0 = ((Config_t9013183A0F27B3C6B9D150A51347092354F928EA_StaticFields*)il2cpp_codegen_static_fields_for(Config_t9013183A0F27B3C6B9D150A51347092354F928EA_il2cpp_TypeInfo_var))->get_U3CMinimumBufferSamplesCountU3Ek__BackingField_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MeshRendererData_get_IsDataValid_mB974CD2712654A42CB8CD495A72AAEDBF72C91FF_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = __this->get_U3CIsDataValidU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MeshRendererData_set_IsDataValid_m6D88886E007DBD80C8C6CF14AAF49E7B78443F3B_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataValidU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MeshRendererData_get_IsDataHighConfidence_m20ED7F4AFF6DA9839F2ED2719AAA9C5C6B26C5DE_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = __this->get_U3CIsDataHighConfidenceU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MeshRendererData_set_IsDataHighConfidence_m9A91DF4184CEBD074F03BECD3363998803393F8B_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataHighConfidenceU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool MeshRendererData_get_ShouldUseSystemGestureMaterial_mC1E86564FC2CBF332C788CBE83222ABC1F6C70B7_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = __this->get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void MeshRendererData_set_ShouldUseSystemGestureMaterial_m339E2B712F05A1503A8CBB40A63232D74019B4B2_inline (MeshRendererData_tA9462CC7A10B9DB77EC1C4A6379687292D8F086D * __this, bool ___value0, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = ___value0; __this->set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 SkeletonPoseData_get_RootPose_mAA0A04E5A718E769B26814793CE990CABF396012_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public OVRPlugin.Posef RootPose { get; set; } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_0 = __this->get_U3CRootPoseU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_RootPose_mA62FF0D3757B42B1A1E72E9CDB16B951492657D2_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 ___value0, const RuntimeMethod* method) { { // public OVRPlugin.Posef RootPose { get; set; } Posef_tAB560ABDD92D837B4DF63F6FAEE32A1E1144B952 L_0 = ___value0; __this->set_U3CRootPoseU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SkeletonPoseData_get_RootScale_mD56A6408966BC4EDC53A52FAB6A45E34034AF5E8_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = __this->get_U3CRootScaleU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_RootScale_mA7B8162C2BD89864FFFBD836D0F8FDDBD58A2031_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, float ___value0, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = ___value0; __this->set_U3CRootScaleU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* SkeletonPoseData_get_BoneRotations_m9E7CDA3AC0C7EDC90E0B00112E4C357C30A83AB1_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public OVRPlugin.Quatf[] BoneRotations { get; set; } QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* L_0 = __this->get_U3CBoneRotationsU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_BoneRotations_m50EE7D6F0085AC6A67A071DD0F1CE76470E08A9E_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* ___value0, const RuntimeMethod* method) { { // public OVRPlugin.Quatf[] BoneRotations { get; set; } QuatfU5BU5D_t652B5A0EAB7922962EBF168B1FC099D8873D11D5* L_0 = ___value0; __this->set_U3CBoneRotationsU3Ek__BackingField_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonPoseData_get_IsDataValid_mF4C881E642F2937199E42505D8768B5CC3F0682D_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = __this->get_U3CIsDataValidU3Ek__BackingField_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_IsDataValid_m0DDB1E4DB75026F96B6470E4678302C6DC47968A_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataValidU3Ek__BackingField_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonPoseData_get_IsDataHighConfidence_m999D793F7315E6132C014E731A81254F828409D1_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = __this->get_U3CIsDataHighConfidenceU3Ek__BackingField_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_IsDataHighConfidence_m14C298CB21B846A17493988BA23A5F12D3EE3E4B_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataHighConfidenceU3Ek__BackingField_4(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t SkeletonPoseData_get_SkeletonChangedCount_m79AA087D6B7CB6482EF5D82A2F516CDBBCCCA404_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, const RuntimeMethod* method) { { // public int SkeletonChangedCount { get; set; } int32_t L_0 = __this->get_U3CSkeletonChangedCountU3Ek__BackingField_5(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonPoseData_set_SkeletonChangedCount_m9B9A69456003D5A62521BEA3403471087292068C_inline (SkeletonPoseData_t59D9BF0F4126D1439B0071D482B6134E5215509E * __this, int32_t ___value0, const RuntimeMethod* method) { { // public int SkeletonChangedCount { get; set; } int32_t L_0 = ___value0; __this->set_U3CSkeletonChangedCountU3Ek__BackingField_5(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * OVRBoneCapsule_get_CapsuleCollider_mF43640B2B3F2BD91C9F7AB12027C2408C998099E_inline (OVRBoneCapsule_t24BA5715C1D8D002A82023305192CBF04B45CE9F * __this, const RuntimeMethod* method) { { // public CapsuleCollider CapsuleCollider { get; set; } CapsuleCollider_t89745329298279F4827FE29C54CC2F8A28654635 * L_0 = __this->get_U3CCapsuleColliderU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m06DD6079C6317F9A4D889EE4D22C4AED1E438E3B_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, float ___d1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a0; float L_1 = L_0.get_x_2(); float L_2 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3 = ___a0; float L_4 = L_3.get_y_3(); float L_5 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___a0; float L_7 = L_6.get_z_4(); float L_8 = ___d1; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9; memset((&L_9), 0, sizeof(L_9)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_9), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), ((float)il2cpp_codegen_multiply((float)L_7, (float)L_8)), /*hidden argument*/NULL); V_0 = L_9; goto IL_0021; } IL_0021: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = V_0; return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float SkeletonRendererData_get_RootScale_mDA6B300BD2DDB4642D4B8DCA8BE12736B0C87079_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = __this->get_U3CRootScaleU3Ek__BackingField_0(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_RootScale_m390D0F58A1D46D4DC90F61E0FD029D81B276041B_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, float ___value0, const RuntimeMethod* method) { { // public float RootScale { get; set; } float L_0 = ___value0; __this->set_U3CRootScaleU3Ek__BackingField_0(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_IsDataValid_m73AB319ABF88E8EA0FD4805B250E58AC45411FB0_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = __this->get_U3CIsDataValidU3Ek__BackingField_1(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_IsDataValid_mC96D90E90D94CA29CDC482B4D4F47320D1D08B9A_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataValid { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataValidU3Ek__BackingField_1(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_IsDataHighConfidence_m4C34B2783AC78757C81A215204FF6452876955E0_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = __this->get_U3CIsDataHighConfidenceU3Ek__BackingField_2(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_IsDataHighConfidence_m345B5BFFF74B0F9B55D9A35BCA05C81ED8086842_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method) { { // public bool IsDataHighConfidence { get; set; } bool L_0 = ___value0; __this->set_U3CIsDataHighConfidenceU3Ek__BackingField_2(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool SkeletonRendererData_get_ShouldUseSystemGestureMaterial_m1C09A046EB4D5DD42476BA1480D9866E17B0EBE9_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = __this->get_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void SkeletonRendererData_set_ShouldUseSystemGestureMaterial_m55ED4E183CE0EDFB4A6366C2F5C9B63A74C5AC00_inline (SkeletonRendererData_tAD36716DA885C2A9B5ECB202D000E3559344B9CE * __this, bool ___value0, const RuntimeMethod* method) { { // public bool ShouldUseSystemGestureMaterial { get; set; } bool L_0 = ___value0; __this->set_U3CShouldUseSystemGestureMaterialU3Ek__BackingField_3(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E * __this, float ___x0, float ___y1, float ___z2, const RuntimeMethod* method) { { float L_0 = ___x0; __this->set_x_2(L_0); float L_1 = ___y1; __this->set_y_3(L_1); float L_2 = ___z2; __this->set_z_4(L_2); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_set_SystemKeyboardInfo_mC00D967238B6AF490A1E516F25BC2D03903A3389_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 ___value0, const RuntimeMethod* method) { { // public OVRKeyboard.TrackedKeyboardInfo SystemKeyboardInfo { get; private set; } TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_0 = ___value0; __this->set_U3CSystemKeyboardInfoU3Ek__BackingField_12(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 OVRTrackedKeyboard_get_SystemKeyboardInfo_m869B879B0E9BF2BEC7086CBF737D1E00E8999D48_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method) { { // public OVRKeyboard.TrackedKeyboardInfo SystemKeyboardInfo { get; private set; } TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_0 = __this->get_U3CSystemKeyboardInfoU3Ek__BackingField_12(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_set_ActiveKeyboardInfo_mC92B2FB7102A869D60E790CF1D2EDF013E899A91_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 ___value0, const RuntimeMethod* method) { { // public OVRKeyboard.TrackedKeyboardInfo ActiveKeyboardInfo { get; private set; } TrackedKeyboardInfo_t9C589825B2C1E4CB845C1E276C71014114880BB9 L_0 = ___value0; __this->set_U3CActiveKeyboardInfoU3Ek__BackingField_11(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void TrackedKeyboardSetActiveEvent__ctor_m3D02DA6E649D73CFF5E513453B31D8BA5D05850B_inline (TrackedKeyboardSetActiveEvent_tB3BDB5B32E4E464EDBB2962E1F125EB029134F0A * __this, bool ___isEnabled0, const RuntimeMethod* method) { { // IsEnabled = isEnabled; bool L_0 = ___isEnabled0; __this->set_IsEnabled_0(L_0); // } return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * OVRCameraRig_get_trackingSpace_mB0190AF5A79E489DB09B4C61D4E3BE8FA9AD8D9E_inline (OVRCameraRig_t743037A817D9B163CBAAA707F8B74E095D77A517 * __this, const RuntimeMethod* method) { { // public Transform trackingSpace { get; private set; } Transform_tA8193BB29D4D2C7EC04918F3ED1816345186C3F1 * L_0 = __this->get_U3CtrackingSpaceU3Ek__BackingField_4(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR void OVRTrackedKeyboard_set_CurrentKeyboardAngleFromUp_mFFD5E90079B121144696162F3627F54340217AE8_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, float ___value0, const RuntimeMethod* method) { { // public float CurrentKeyboardAngleFromUp { get; private set; } = 0f; float L_0 = ___value0; __this->set_U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9(L_0); return; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float OVRTrackedKeyboard_get_CurrentKeyboardAngleFromUp_m45AAB8FFF758121FBC6669A5A81C0B7A3B8E25C5_inline (OVRTrackedKeyboard_t77E603E4F449E728E71F97E0BC1CBE74B491A2D4 * __this, const RuntimeMethod* method) { { // public float CurrentKeyboardAngleFromUp { get; private set; } = 0f; float L_0 = __this->get_U3CCurrentKeyboardAngleFromUpU3Ek__BackingField_9(); return L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Multiply_m92CBF5B97ECB34A9B802EDD5C4A8187463278560_inline (float ___d0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a1; float L_1 = L_0.get_x_2(); float L_2 = ___d0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_3 = ___a1; float L_4 = L_3.get_y_3(); float L_5 = ___d0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___a1; float L_7 = L_6.get_z_4(); float L_8 = ___d0; Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_9; memset((&L_9), 0, sizeof(L_9)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_9), ((float)il2cpp_codegen_multiply((float)L_1, (float)L_2)), ((float)il2cpp_codegen_multiply((float)L_4, (float)L_5)), ((float)il2cpp_codegen_multiply((float)L_7, (float)L_8)), /*hidden argument*/NULL); V_0 = L_9; goto IL_0021; } IL_0021: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = V_0; return L_10; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Vector3_op_Addition_m2E3CBC2DA8F97FF21F4F845D857746EF6BC83A01_inline (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___a0, Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E ___b1, const RuntimeMethod* method) { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E V_0; memset((&V_0), 0, sizeof(V_0)); { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = ___a0; float L_1 = L_0.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_2 = ___b1; float L_3 = L_2.get_x_2(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_4 = ___a0; float L_5 = L_4.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_6 = ___b1; float L_7 = L_6.get_y_3(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_8 = ___a0; float L_9 = L_8.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_10 = ___b1; float L_11 = L_10.get_z_4(); Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_12; memset((&L_12), 0, sizeof(L_12)); Vector3__ctor_m57495F692C6CE1CEF278CAD9A98221165D37E636_inline((&L_12), ((float)il2cpp_codegen_add((float)L_1, (float)L_3)), ((float)il2cpp_codegen_add((float)L_5, (float)L_7)), ((float)il2cpp_codegen_add((float)L_9, (float)L_11)), /*hidden argument*/NULL); V_0 = L_12; goto IL_0030; } IL_0030: { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_13 = V_0; return L_13; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * List_1_get_Item_mF00B574E58FB078BB753B05A3B86DD0A7A266B63_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, int32_t ___index0, const RuntimeMethod* method) { { int32_t L_0 = ___index0; int32_t L_1 = (int32_t)__this->get__size_2(); if ((!(((uint32_t)L_0) >= ((uint32_t)L_1)))) { goto IL_000e; } } { ThrowHelper_ThrowArgumentOutOfRangeException_mBCBF2D9FD1B5F0D8D8595B15B7460889D60C8070(/*hidden argument*/NULL); } IL_000e: { ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE* L_2 = (ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)__this->get__items_1(); int32_t L_3 = ___index0; RuntimeObject * L_4; L_4 = IL2CPP_ARRAY_UNSAFE_LOAD((ObjectU5BU5D_tC1F4EE0DB0B7300255F5FD4AF64FE4C585CF5ADE*)L_2, (int32_t)L_3); return (RuntimeObject *)L_4; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t List_1_get_Count_m5D847939ABB9A78203B062CAFFE975792174D00F_gshared_inline (List_1_t3F94120C77410A62EAE48421CF166B83AB95A2F5 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get__size_2(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR RuntimeObject * Enumerator_get_Current_m9C4EBBD2108B51885E750F927D7936290C8E20EE_gshared_inline (Enumerator_tB6009981BD4E3881E3EC83627255A24198F902D6 * __this, const RuntimeMethod* method) { { RuntimeObject * L_0 = (RuntimeObject *)__this->get_current_3(); return (RuntimeObject *)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7897F8E6F5E7968B14AEE7B3B5719B6B3CE4292C_gshared_inline (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR float Nullable_1_GetValueOrDefault_mD05253A5EFE2AA2575CC36BD681FFB5638B9F560_gshared_inline (Nullable_1_t0C4AC2E457C437FA106160547FD9BA5B50B1888A * __this, const RuntimeMethod* method) { { float L_0 = (float)__this->get_value_0(); return (float)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_m7455E879CFAAE682AE3786D4D2B1F65C8AA23921_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR int32_t Nullable_1_GetValueOrDefault_mB4CE6E77EC85DD762FDA6C24F96EBC2A75E28546_gshared_inline (Nullable_1_t864FD0051A05D37F91C857AB496BFCB3FE756103 * __this, const RuntimeMethod* method) { { int32_t L_0 = (int32_t)__this->get_value_0(); return (int32_t)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mB9EAE3168E00BA12AA7E1233A4A0007FD12BB9E7_gshared_inline (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E Nullable_1_GetValueOrDefault_m22A9A70B032220FAB99C944188FE4D0259EC886A_gshared_inline (Nullable_1_t1829213F3538788DF79B4659AFC9D6A9C90C3258 * __this, const RuntimeMethod* method) { { Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E L_0 = (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )__this->get_value_0(); return (Vector3_t65B972D6A585A0A5B63153CF1177A90D3C90D65E )L_0; } } IL2CPP_MANAGED_FORCE_INLINE IL2CPP_METHOD_ATTR bool Nullable_1_get_HasValue_mDAA5F84DAA9409FD895729634F77999D90EC9A4C_gshared_inline (Nullable_1_tD696E865843136E8D2141FD179BA7F088A4D8BA1 * __this, const RuntimeMethod* method) { { bool L_0 = (bool)__this->get_has_value_1(); return (bool)L_0; } }