WuhuIslandTesting/Library/PackageCache/com.unity.xr.management@4.2.1/Tests/TestPackage/Runtime/TestSettings.cs
2025-01-07 02:06:59 +01:00

19 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
}
}