#if USE_ARFOUNDATION using System; using System.Collections.Generic; using System.Reflection; using System.Runtime.InteropServices; using UnityFusion.CLR.TypeSystem; using UnityFusion.CLR.Method; using UnityFusion.Runtime.Enviorment; using UnityFusion.Runtime.Intepreter; using UnityFusion.Runtime.Stack; using UnityFusion.Reflection; using UnityFusion.CLR.Utils; #if DEBUG && !DISABLE_UNITYFUSION_DEBUG using AutoList = System.Collections.Generic.List; #else using AutoList = UnityFusion.Other.UncheckedList; #endif namespace UnityFusion.Runtime.Generated { unsafe class UnityEngine_XR_ARFoundation_ARMeshManager_Binding { public static void Register(UnityFusion.Runtime.Enviorment.AppDomain app) { BindingFlags flag = BindingFlags.Public | BindingFlags.Instance | BindingFlags.Static | BindingFlags.DeclaredOnly; MethodBase method; Type[] args; Type type = typeof(UnityEngine.XR.ARFoundation.ARMeshManager); args = new Type[]{}; method = type.GetMethod("get_meshPrefab", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_meshPrefab_0); args = new Type[]{typeof(UnityEngine.MeshFilter)}; method = type.GetMethod("set_meshPrefab", flag, null, args, null); app.RegisterCLRMethodRedirection(method, set_meshPrefab_1); args = new Type[]{}; method = type.GetMethod("get_density", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_density_2); args = new Type[]{typeof(System.Single)}; method = type.GetMethod("set_density", flag, null, args, null); app.RegisterCLRMethodRedirection(method, set_density_3); args = new Type[]{}; method = type.GetMethod("get_normals", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_normals_4); args = new Type[]{typeof(System.Boolean)}; method = type.GetMethod("set_normals", flag, null, args, null); app.RegisterCLRMethodRedirection(method, set_normals_5); args = new Type[]{}; method = type.GetMethod("get_tangents", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_tangents_6); args = new Type[]{typeof(System.Boolean)}; method = type.GetMethod("set_tangents", flag, null, args, null); app.RegisterCLRMethodRedirection(method, set_tangents_7); args = new Type[]{}; method = type.GetMethod("get_textureCoordinates", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_textureCoordinates_8); args = new Type[]{typeof(System.Boolean)}; method = type.GetMethod("set_textureCoordinates", flag, null, args, null); app.RegisterCLRMethodRedirection(method, set_textureCoordinates_9); args = new Type[]{}; method = type.GetMethod("get_colors", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_colors_10); args = new Type[]{typeof(System.Boolean)}; method = type.GetMethod("set_colors", flag, null, args, null); app.RegisterCLRMethodRedirection(method, set_colors_11); args = new Type[]{}; method = type.GetMethod("get_concurrentQueueSize", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_concurrentQueueSize_12); args = new Type[]{typeof(System.Int32)}; method = type.GetMethod("set_concurrentQueueSize", flag, null, args, null); app.RegisterCLRMethodRedirection(method, set_concurrentQueueSize_13); args = new Type[]{typeof(System.Action)}; method = type.GetMethod("add_meshesChanged", flag, null, args, null); app.RegisterCLRMethodRedirection(method, add_meshesChanged_14); args = new Type[]{typeof(System.Action)}; method = type.GetMethod("remove_meshesChanged", flag, null, args, null); app.RegisterCLRMethodRedirection(method, remove_meshesChanged_15); args = new Type[]{}; method = type.GetMethod("get_subsystem", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_subsystem_16); args = new Type[]{}; method = type.GetMethod("get_meshes", flag, null, args, null); app.RegisterCLRMethodRedirection(method, get_meshes_17); args = new Type[]{}; method = type.GetMethod("DestroyAllMeshes", flag, null, args, null); app.RegisterCLRMethodRedirection(method, DestroyAllMeshes_18); app.RegisterCLRCreateDefaultInstance(type, () => new UnityEngine.XR.ARFoundation.ARMeshManager()); app.RegisterCLRCreateArrayInstance(type, s => new UnityEngine.XR.ARFoundation.ARMeshManager[s]); args = new Type[]{}; method = type.GetConstructor(flag, null, args, null); app.RegisterCLRMethodRedirection(method, Ctor_0); } static StackObject* get_meshPrefab_0(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.meshPrefab; return ILIntepreter.PushObject(__ret, __mStack, result_of_this_method); } static StackObject* set_meshPrefab_1(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.MeshFilter @value = (UnityEngine.MeshFilter)typeof(UnityEngine.MeshFilter).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.meshPrefab = value; return __ret; } static StackObject* get_density_2(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.density; __ret->ObjectType = ObjectTypes.Float; *(float*)&__ret->Value = result_of_this_method; return __ret + 1; } static StackObject* set_density_3(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Single @value = *(float*)&ptr_of_this_method->Value; ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.density = value; return __ret; } static StackObject* get_normals_4(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.normals; __ret->ObjectType = ObjectTypes.Integer; __ret->Value = result_of_this_method ? 1 : 0; return __ret + 1; } static StackObject* set_normals_5(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Boolean @value = ptr_of_this_method->Value == 1; ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.normals = value; return __ret; } static StackObject* get_tangents_6(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.tangents; __ret->ObjectType = ObjectTypes.Integer; __ret->Value = result_of_this_method ? 1 : 0; return __ret + 1; } static StackObject* set_tangents_7(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Boolean @value = ptr_of_this_method->Value == 1; ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.tangents = value; return __ret; } static StackObject* get_textureCoordinates_8(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.textureCoordinates; __ret->ObjectType = ObjectTypes.Integer; __ret->Value = result_of_this_method ? 1 : 0; return __ret + 1; } static StackObject* set_textureCoordinates_9(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Boolean @value = ptr_of_this_method->Value == 1; ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.textureCoordinates = value; return __ret; } static StackObject* get_colors_10(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.colors; __ret->ObjectType = ObjectTypes.Integer; __ret->Value = result_of_this_method ? 1 : 0; return __ret + 1; } static StackObject* set_colors_11(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Boolean @value = ptr_of_this_method->Value == 1; ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.colors = value; return __ret; } static StackObject* get_concurrentQueueSize_12(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.concurrentQueueSize; __ret->ObjectType = ObjectTypes.Integer; __ret->Value = result_of_this_method; return __ret + 1; } static StackObject* set_concurrentQueueSize_13(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Int32 @value = ptr_of_this_method->Value; ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.concurrentQueueSize = value; return __ret; } static StackObject* add_meshesChanged_14(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Action @value = (System.Action)typeof(System.Action).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)8); __intp.Free(ptr_of_this_method); ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.meshesChanged += value; return __ret; } static StackObject* remove_meshesChanged_15(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 2); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); System.Action @value = (System.Action)typeof(System.Action).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)8); __intp.Free(ptr_of_this_method); ptr_of_this_method = ILIntepreter.Minus(__esp, 2); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.meshesChanged -= value; return __ret; } static StackObject* get_subsystem_16(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.subsystem; object obj_result_of_this_method = result_of_this_method; if(obj_result_of_this_method is CrossBindingAdaptorType) { return ILIntepreter.PushObject(__ret, __mStack, ((CrossBindingAdaptorType)obj_result_of_this_method).ILInstance); } return ILIntepreter.PushObject(__ret, __mStack, result_of_this_method); } static StackObject* get_meshes_17(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); var result_of_this_method = instance_of_this_method.meshes; object obj_result_of_this_method = result_of_this_method; if(obj_result_of_this_method is CrossBindingAdaptorType) { return ILIntepreter.PushObject(__ret, __mStack, ((CrossBindingAdaptorType)obj_result_of_this_method).ILInstance); } return ILIntepreter.PushObject(__ret, __mStack, result_of_this_method); } static StackObject* DestroyAllMeshes_18(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* ptr_of_this_method; StackObject* __ret = ILIntepreter.Minus(__esp, 1); ptr_of_this_method = ILIntepreter.Minus(__esp, 1); UnityEngine.XR.ARFoundation.ARMeshManager instance_of_this_method = (UnityEngine.XR.ARFoundation.ARMeshManager)typeof(UnityEngine.XR.ARFoundation.ARMeshManager).CheckCLRTypes(StackObject.ToObject(ptr_of_this_method, __domain, __mStack), (CLR.Utils.Extensions.TypeFlags)0); __intp.Free(ptr_of_this_method); instance_of_this_method.DestroyAllMeshes(); return __ret; } static StackObject* Ctor_0(ILIntepreter __intp, StackObject* __esp, AutoList __mStack, CLRMethod __method, bool isNewObj) { UnityFusion.Runtime.Enviorment.AppDomain __domain = __intp.AppDomain; StackObject* __ret = ILIntepreter.Minus(__esp, 0); var result_of_this_method = new UnityEngine.XR.ARFoundation.ARMeshManager(); return ILIntepreter.PushObject(__ret, __mStack, result_of_this_method); } } } #endif