VR4Medical/ICI/Library/PackageCache/com.unity.xr.management@20be87dea580/Tests/TestPackage/Runtime/TestSettings.cs
2025-07-29 13:45:50 +03:00

20 lines
383 B
C#

using UnityEngine;
using UnityEngine.XR.Management;
namespace Unity.XR.Management.TestPackage
{
[XRConfigurationData("Test Settings", Constants.k_SettingsKey)]
public class TestSettings : ScriptableObject
{
#if !UNITY_EDITOR
internal static TestSettings s_Settings;
public void Awake()
{
s_Settings = this;
}
#endif
}
}