This repository has been archived on 2025-04-28. You can view files and clone it, but cannot push or open issues or pull requests.
ARPlusSystem/ARPlusSystem-250418/Library/PackageCache/com.unity.xr.management@4.5.0/Runtime/IXRLoaderPreInit.cs

22 lines
785 B
C#

#if UNITY_EDITOR
using UnityEditor;
namespace UnityEngine.XR.Management
{
/// <summary>
/// XRLoader interface for retrieving the XR PreInit library name from an XRLoader instance
/// </summary>
public interface IXRLoaderPreInit
{
/// <summary>
/// Get the library name, if any, to use for XR PreInit.
/// </summary>
///
/// <param name="buildTarget">An enum specifying which platform this build is for.</param>
/// <param name="buildTargetGroup">An enum specifying which platform group this build is for.</param>
/// <returns>A string specifying the library name used for XR PreInit.</returns>
string GetPreInitLibraryName(BuildTarget buildTarget, BuildTargetGroup buildTargetGroup);
}
}
#endif