У меня как то странно работает скрипт он при нажатии кнопки работает через раз или в определёном месте триггера
вот скрипт
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.SceneManagement;
public class TpGGhaus : MonoBehaviour
{
public int levelToLoad;
public Vector3 position;
public VectorValue playerStorage;
void OnTriggerEnter2D(Collider2D other)
{
if (Input.GetKeyUp("e"))
{
playerStorage.initialValue = position;
SceneManager.LoadScene(levelToLoad);
Debug.Log("Yes");
}
Debug.Log("Enter");
}
void OnTriggerExit2D(Collider2D other)
{
Debug.Log("Exit");
}
}