12 lines
272 B
C#
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();
|
|
}
|
|
}
|
|
}
|