mixedreality/com.microsoft.mixedreality..../Runtime/Subsystems/InternalMeshSettings.cs

17 lines
477 B
C#

// Copyright (c) Microsoft Corporation.
// Licensed under the MIT License.
namespace Microsoft.MixedReality.OpenXR
{
internal static class InternalMeshSettings
{
/// <summary>
/// Change the settings for future meshes given by the OpenXR XRMeshSubsystem.
/// </summary>
public static bool TrySetMeshComputeSettings(MeshComputeSettings settings)
{
return NativeLib.SetMeshComputeSettings(settings);
}
}
}