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