Files
modular-vr/Assets/Portal/Runtime/HandPortalDriver.cs
2022-11-20 12:52:22 +01:00

12 lines
272 B
C#

namespace EscapeRoomEngine.Portal.Runtime
{
public class HandPortalDriver : PortalDriver
{
private new void Start()
{
traveller = transform.parent.parent.parent; // get the hand portal offset
base.Start();
}
}
}