void Awake()
    {
        if (Instance != null)
        {
            Debug.LogError("Duplicate instance of SeedsDeepLinks. New instance will be destroyed.");
            enabled = false;
            DestroyObject(this);
            return;
        }

        DontDestroyOnLoad(this);
        Instance = this;
    }
    void Awake()
    {
        if (Instance != null)
        {
            Debug.LogError("Duplicate instance of SeedsDeepLinks. New instance will be destroyed.");
            enabled = false;
            DestroyObject(this);
            return;
        }

        DontDestroyOnLoad(this);
        Instance = this;
    }