Added basic portals

This commit is contained in:
2026-01-15 18:18:59 +00:00
parent 6fb0c358e1
commit 18c19c7c14
15 changed files with 914 additions and 2 deletions

View File

@@ -0,0 +1,14 @@
using UnityEngine;
namespace InterfaceOff.WorldScene
{
public class PlayerController : MonoBehaviour
{
private static PlayerController Instance;
public static void SetPos(Vector3 pos)
{
Instance.transform.position = pos;
}
}
}