// Update is called once per frame void Update() { if (Input.GetKeyDown(KeyCode.Space)) { waypoints.Clear(); PathRequestManager.GetInstance().RequestPath(this.transform.position, destination.transform.position, OnPathFinished); } }