Phillipes_Fablab/Assets/SteamVR/InteractionSystem/Teleport/Scripts/AllowTeleportWhileAttachedToHand.cs
2023-01-10 13:17:49 +01:00

19 lines
597 B
C#

//======= Copyright (c) Valve Corporation, All rights reserved. ===============
//
// Purpose: Adding this component to an object will allow the player to
// initiate teleporting while that object is attached to their hand
//
//=============================================================================
using UnityEngine;
namespace Valve.VR.InteractionSystem
{
//-------------------------------------------------------------------------
public class AllowTeleportWhileAttachedToHand : MonoBehaviour
{
public bool teleportAllowed = true;
public bool overrideHoverLock = true;
}
}