Files
modular-vr/Assets/Escape Room Engine/Portal/HandPortalDriver.cs
2022-10-10 21:14:16 +02:00

12 lines
266 B
C#

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