VR4RoboticArm2/VR4RoboticArm/Library/PackageCache/com.unity.xr.interaction.toolkit/Runtime/Inputs/Simulation/XRDeviceSimulatorLoader.deprecated.cs
IonutMocanu 48cccc22ad Main2
2025-09-08 11:13:29 +03:00

22 lines
703 B
C#

#if ENABLE_VR || UNITY_GAMECORE || PACKAGE_DOCS_GENERATION
using System;
namespace UnityEngine.XR.Interaction.Toolkit.Inputs.Simulation
{
/// <summary>
/// (Deprecated) This class instantiates the <see cref="XRDeviceSimulator"/> in the scene depending on
/// project settings.
/// </summary>
[Obsolete("XRDeviceSimulatorLoader has been replaced by the XRInteractionSimulatorLoader. ", false)]
public static class XRDeviceSimulatorLoader
{
/// <summary>
/// (Deprecated) This method has been replaced with <see cref="XRInteractionSimulatorLoader.Initialize"/>.
/// </summary>
public static void Initialize()
{
}
}
}
#endif