VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.xr.management/Editor/Legacy/XRLegacyStandaloneSubsystem.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

24 lines
465 B
C#

#if !UNITY_2020_2_OR_NEWER
using System;
using System.Collections.Generic;
using System.IO;
using System.Threading;
using UnityEditor;
using UnityEditor.PackageManager;
namespace UnityEditor.XR.Management.Legacy
{
[InitializeOnLoad]
class XRLegacyStandaloneSubsystem
{
static XRLegacyStandaloneSubsystem()
{
PackageManager.Client.Add("com.unity.subsystemregistration");
}
}
}
#endif // !UNITY_2020_2_OR_NEWER