Files
modular-vr/Assets/Escape Room Engine/Portal/Scripts/HandPortalDriver.cs
2022-10-10 21:17:02 +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();
}
}
}