How can I get the camera to follow multiple objects even if some of them are deleted?

Hello!

I want to have the camera follow 3 targets even if some of them get deleted. This is what I’ve written so far and the camera does follow the targets but when one gets deleted, the camera stops following.


I’m not by any means a good programmer, I’m just a designer trying to learn so that I can prototype and I would greatly appreciate if someone could help me work through this! :slight_smile: Is there some way that I can make a list of transforms and have the camera follow the average x value of those?

Well thanks for your time!

coleycaves

public class MoveCamera : MonoBehaviour {
public Transform players;

    private void Update() {
        SetCameraPos();
    }

    void SetCameraPos() {
        Vector3 middle = Vector3.zero;
        int numPlayers = 0;

        for(int i=0; i<players.Length; ++i) {
            if(players *==null){*

continue; //skip, since player is deleted
}
middle += players*.position;*
numPlayers++;
}//end for every player

//take average:
middle /= numPlayers;
}

Camera cam = GetComponent();
cam.transform.position.x = middle.x;
}
PS you are cute
:slight_smile: