mirror of
https://udrimavric.com/MAVRIC/Stratasys-450mc-VR.git
synced 2025-01-23 07:38:33 -05:00
11 lines
367 B
C#
11 lines
367 B
C#
|
namespace UnityEngine.XR.Content.Interaction
|
||
|
{
|
||
|
/// <summary>
|
||
|
/// An asset that represents a key. Used to check if an object can perform some action
|
||
|
/// (<see cref="XRLockSocketInteractor"/> and <see cref="Keychain"/>)
|
||
|
/// </summary>
|
||
|
[CreateAssetMenuAttribute(menuName = "XR/Key Lock System/Key")]
|
||
|
public class Key : ScriptableObject
|
||
|
{ }
|
||
|
}
|