portal driver clones

This commit is contained in:
2022-10-10 21:14:16 +02:00
parent 36e8538bb9
commit 2d4bd97b8e
11 changed files with 357 additions and 91 deletions

View File

@@ -0,0 +1,11 @@
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();
}
}
}